diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml new file mode 100644 index 000000000..d9a92aa34 --- /dev/null +++ b/.github/workflows/static.yml @@ -0,0 +1,53 @@ +# 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: | + python3 simple2json.py 2>&1 | tee build-log.txt + + - name: Upload Build Log + uses: actions/upload-artifact@v4 + with: + name: build-log + path: build-log.txt + + - name: Setup Pages + uses: actions/configure-pages@v5 + - name: Upload artifact + uses: actions/upload-pages-artifact@v3 + 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..79aa726fa 100644 --- a/.github/workflows/sync-with-AM.yml +++ b/.github/workflows/sync-with-AM.yml @@ -23,9 +23,6 @@ jobs: - 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 @@ -34,22 +31,14 @@ jobs: 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" + 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.md" "apps/$name.json" "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 +48,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".json; 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 +71,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".json + + echo "Adding apps/$a.json" 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/*.json' categories/ 'icons/*.png' '*.json' am2pla-site + 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/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.html b/am-utils.html new file mode 100644 index 000000000..9be5f0552 --- /dev/null +++ b/am-utils.html @@ -0,0 +1,110 @@ + + + + + + AM UTILS - PORTABLE LINUX APPS + + + + + + + + + + + + + + + +
+ +
+

AM UTILS

+

+ +
+
+ + + + + +
+ + + + 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..aff02fa93 100755 --- a/am2pla-site +++ b/am2pla-site @@ -1,863 +1,89 @@ #!/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 +# This script generates JSON data files from AM application lists. +# Outputs: apps.json (root master list), categories/*.json 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" -} - -# 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="ai am-utils android audio comic command-line communication disk education emulator file-manager finance game gnome graphic internet kde office password steam system-monitor video web-app web-browser wine" 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 + 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 + printf '{"name":"%s","description":"%s"},\n' "$arg" "$description" >> 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 "" -} - -_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 -########################################################################################################################################################## +mkdir -p 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 + case "$category" in + ai) grep -i "AI\|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";; + am-utils) grep -i "\"$category\"" "$arch"-apps > "$arch-$category";; + android) grep -i "$category\|platform-tools" "$arch"-apps > "$arch-$category";; + audio) grep -i "$category\|matroska\|music\|midi\|mp3\|opus\|soundboard" "$arch"-apps > "$arch-$category";; + comic) grep -i "$category\|manga\|anime" "$arch"-apps > "$arch-$category";; + command-line) + 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";; + communication) grep -i "$category\|voip\|messenger\|whatsapp\|mastodon\|skype\|chat client\|social network\|conferencing\|discord\|email\|telegram" "$arch"-apps > "$arch-$category";; + disk) grep -i "$category\|partition\|usb drive" "$arch"-apps > "$arch-$category";; + education) 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";; + emulator) grep -i "$category" "$arch"-apps | grep -vi "terminal emulator" > "$arch-$category";; + file-manager) grep -i "$category\|file manager\|file browse\|browse.*file\|file explore\|explore.*file" "$arch"-apps > "$arch-$category";; + finance) grep -i "$category\|wallet\|money" "$arch"-apps > "$arch-$category";; + game) grep -i "$category\|arcade\|steam\|wine\|strateg\|solitaire\|poker\|chess\|puzzle\|pinball\|adventure\|playstation\|xbox\|nintendo\|minecraft\|doom" "$arch"-apps > "$arch-$category";; + gnome) grep -i "$category" "$arch"-apps > "$arch-$category";; + graphic) 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";; + internet) grep -i "$category\|vpn\|torrent\|p2p" "$arch"-apps > "$arch-$category";; + kde) grep -i "$category" "$arch"-apps > "$arch-$category";; + office) grep -i "$category\|document\|pdf\|docx\|reader\|spreadsheet" "$arch"-apps | grep -vi "manga\|comic" > "$arch-$category";; + password) grep -i "$category" "$arch"-apps > "$arch-$category";; + steam) grep -i "$category" "$arch"-apps > "$arch-$category";; + system-monitor) grep -i "$category\|system monitor\|task manager\|system resource\|system resources\|linux processes" "$arch"-apps > "$arch-$category";; + video) grep -i "$category\|stream\|media player\|film\|movies\|netflix\|iptv" "$arch"-apps > "$arch-$category";; + web-app) grep -i "$category\|webapp\|web app" "$arch"-apps > "$arch-$category";; + web-browser) 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";; + wine) grep -i "$category" "$arch"-apps > "$arch-$category";; + esac - # Category list body - for arg in $ARGS; do - grep "\*\*\*$arg\*\*\*" ./body.txt | head -1 >> "$category".md + LIST=$(sort -u "$arch-$category" | awk -v FS="(◆ | : )" '{print $2}' | uniq) + echo "[" > "categories/$category.json" + for arg in $LIST; do + description=$(grep "◆ $arg :" "$arch"-apps | sed 's/"/\\"/g; s/^.*: //') + printf '{"name":"%s","description":"%s"},\n' "$arg" "$description" >> "categories/$category.json" done - - _footer_categories >> "$category".md - rm -f ./"$arch-$category" + sed -i '$s/,$//' "categories/$category.json" + echo "]" >> "categories/$category.json" + rm -f "$arch-$category" done +# Count apps for stats +APPIMAGES_COUNT=$(sort -u stats-appimages | wc -l) +PORTABLE_COUNT=$(echo "$PORTABLE" | wc -l) -########################################################################################################################################################## -# 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 +# Update stats in index.html +if [ -f index.html ]; then + sed -i "s|[0-9]* unique apps — [0-9]* AppImage packages — [0-9]* standalone/portable programs — [0-9]* items|$APPS_NUMBER unique apps \— $APPIMAGES_COUNT AppImage packages \— $PORTABLE_COUNT standalone/portable programs \— $ITEMS_NUMBER items|" index.html +fi -rm ./"$arch"-apps ./stats-appimages ./stats-portable ./body.txt* -rm -f ./aarch64-apps ./i686-apps +rm -f "$arch"-apps stats-appimages stats-portable diff --git a/android.html b/android.html new file mode 100644 index 000000000..a0350150a --- /dev/null +++ b/android.html @@ -0,0 +1,110 @@ + + + + + + ANDROID - PORTABLE LINUX APPS + + + + + + + + + + + + + + + +
+ +
+

ANDROID

+

+ +
+
+ + + + + +
+ + + + 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.css b/app.css new file mode 100644 index 000000000..65e939c0a --- /dev/null +++ b/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/app.html b/app.html new file mode 100644 index 000000000..37d27a3f6 --- /dev/null +++ b/app.html @@ -0,0 +1,304 @@ + + + + + + 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.html b/appimages.html new file mode 100644 index 000000000..780850ebf --- /dev/null +++ b/appimages.html @@ -0,0 +1,110 @@ + + + + + + APPIMAGES - PORTABLE LINUX APPS + + + + + + + + + + + + + + + +
+ +
+

APPIMAGES

+

+ +
+
+ + + + + +
+ + + + 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..2665f26b2 --- /dev/null +++ b/apps.html @@ -0,0 +1,110 @@ + + + + + + APPLICATIONS - PORTABLE LINUX APPS + + + + + + + + + + + + + + + +
+ +
+

APPLICATIONS

+

+ +
+
+ + + + + +
+ + + + diff --git a/apps.json b/apps.json index c69ab87a7..543105168 100644 --- a/apps.json +++ b/apps.json @@ -1,20228 +1,3374 @@ [ - { - "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"] - } +{"name":"0ad","description":"FOSS historical Real Time Strategy, RTS game of ancient warfare."}, +{"name":"0ad-prerelease","description":"FOSS historical Real Time Strategy, RTS game of ancient warfare (Pre-release)."}, +{"name":"12to11","description":"Unofficial, tool for running Wayland applications on an X server."}, +{"name":"3d-puzzles","description":"3D-Puzzles are Rubik, Dogic and Dogic12."}, +{"name":"432hz-player","description":"Because most music is recorded in 440hz, Audio Player."}, +{"name":"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."}, +{"name":"7z","description":"Archiver with a high compression ratio. This is part of \"am-utils\" suite."}, +{"name":"7zip","description":"7-Zip is a file archiver with a high compression ratio."}, +{"name":"86box","description":"Emulator of x86-based machines based on PCem."}, +{"name":"86box-enhanced","description":"Unofficial, emulator of x86-based machines based on PCem."}, +{"name":"9launcher","description":"An actively maintained and cross platform remake of Touhou Relauncher."}, +{"name":"aaaaxy","description":"A nonlinear puzzle platformer, game."}, +{"name":"ab-download-manager","description":"A Download Manager that speeds up your downloads."}, +{"name":"abaddon","description":"Unofficial, an alternative Discord client with voice support made with C++ and GTK 3."}, +{"name":"abiword","description":"Unofficial. A light and free word processing software."}, +{"name":"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."}, +{"name":"acestream","description":"Створення бінарника AppImage з AceStream Media."}, +{"name":"acreom","description":"Acreom desktop app releases."}, +{"name":"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."}, +{"name":"actual","description":"A super fast privacy-focused app for managing your finances."}, +{"name":"adb","description":"Command-line tool for communicating with Android devices or emulators. This is part of \"platform-tools\"."}, +{"name":"addr2line","description":"Or symbol+offset into file names and. This is part of \"am-utils\" suite."}, +{"name":"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!"}, +{"name":"advanced-passgen","description":"Advanced Password Generator."}, +{"name":"advanced-rest-client","description":"Advanced REST Client and API console, by Mulesoft."}, +{"name":"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."}, +{"name":"aerofoil","description":"Unofficial, multiplatform port of Glider PRO."}, +{"name":"afetch","description":"A CLI system information tool written in Rust."}, +{"name":"affine","description":"Next-gen knowledge base that brings planning, sorting and creating."}, +{"name":"affine-beta","description":"Next-gen knowledge base that brings planning, sorting and creating."}, +{"name":"affine-canary","description":"Next-gen knowledge base that brings planning/sorting/creating."}, +{"name":"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."}, +{"name":"agregore","description":"A minimal browser for the distributed web, Desktop version."}, +{"name":"ahk_x11","description":"AutoHotkey for Linux (X11-based systems)."}, +{"name":"ai-bot-workspace","description":"Electron app including testing workspaces."}, +{"name":"aichat","description":"AIO AI CLI tool integrating 20+ AI platforms, including OpenAI."}, +{"name":"aidm","description":"AppImage Desktop Maker."}, +{"name":"aillio-ts","description":"The desktop application for Aillio Bullet R1."}, +{"name":"aim","description":"A command line download/upload tool with resume."}, +{"name":"air-controller-desktop","description":"Android phone assistant,powered by Flutter."}, +{"name":"airspaces","description":"An online map for your X-Plane flight sessions."}, +{"name":"aisap","description":"Tool to make sandboxing AppImages easy through bwrap/bubblewrap."}, +{"name":"aisleriot","description":"Unofficial. A card game featuring over 80 different solitaire-type card games."}, +{"name":"akasha","description":"AKASHA community client."}, +{"name":"akhenaten","description":"Unofficial, open-source engine for Pharaoh (+Cleopatra) city-building game."}, +{"name":"akuse","description":"Simple and easy to use anime streaming desktop app without ads."}, +{"name":"alacritty","description":"Unofficial. A modern terminal emulator that comes with sensible defaults, but allows for extensive configuration."}, +{"name":"albafetch","description":"CLI, faster neofetch alternative, written in C. Still improving."}, +{"name":"alduin","description":"An Atom and RSS feed aggregator."}, +{"name":"alephium-wallet","description":"The official Alephium wallet for desktop."}, +{"name":"alexandria","description":"eBook reader built with Tauri, Epub.js, and Typescript."}, +{"name":"alien-tec-ui","description":"Alien-Tec Tron Matrix Like Shell Terminal User Interface."}, +{"name":"allusion","description":"A desktop application for managing your visual library."}, +{"name":"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."}, +{"name":"alpine-flatimage","description":"A hybrid of Flatpak sandboxing with AppImage portability."}, +{"name":"alr2appimage","description":"Tool for building an AppImage from an Alire crate."}, +{"name":"alt-sendme","description":"Share files and directories anywhere - Local or Global"}, +{"name":"altair","description":"The best graphQL client you will ever need."}, +{"name":"altersend","description":"Send files directly between devices over the internet - no cloud, no servers, no size limits."}, +{"name":"altitude","description":"The Altitude wallet by Linda Project Inc."}, +{"name":"altrady","description":"Altrady Crypto Trading Terminal."}, +{"name":"altus","description":"Client for WhatsApp Web with themes & multiple account support."}, +{"name":"alvr","description":"Stream VR games from your PC to your headset via Wi-Fi."}, +{"name":"am-gui","description":"AM-GUI is a graphical Front for AM."}, +{"name":"amarok","description":"Unofficial, powerful music player that lets you rediscover your music."}, +{"name":"amazingmarvin","description":"Incorporates principles from behavioral psychology."}, +{"name":"ambermoon.net","description":"Ambermoon rewrite in C#."}, +{"name":"amdgpu_top","description":"Tool to display AMDGPU usage."}, +{"name":"amethyst-mod-manager","description":"A Linux native mod manager for a variety of games."}, +{"name":"amfora","description":"A fancy terminal browser for the Gemini protocol."}, +{"name":"amiberry","description":"Unofficial, optimized Amiga emulator."}, +{"name":"amplitude-soundboard","description":"A sleek, cross-platform soundboard, available."}, +{"name":"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."}, +{"name":"amusiz","description":"Unofficial and unpretentious Amazon Music client."}, +{"name":"anavis","description":"Tool to visualize musical form."}, +{"name":"anchor","description":"An EOSIO Light Wallet with simple and advanced tools."}, +{"name":"android-messages-desktop","description":"Messages for web, as a desktop app."}, +{"name":"android-studio","description":"Unofficial. Android Studio as AppImages, stable."}, +{"name":"android-studio-latest","description":"Unofficial. Android Studio as AppImages, release."}, +{"name":"android-tools","description":"Unofficial AppImage for the Android Platform tools, adb, fastboot, etc."}, +{"name":"android-translation-layer","description":"Unofficial, A translation layer that allows running Android apps on a Linux system."}, +{"name":"ani-cli","description":"A cli tool to browse and play anime."}, +{"name":"animashooter-junior","description":"User-friendly Stop-Motion Animation Software, FREE."}, +{"name":"animashooter-pioneer","description":"User-friendly Stop-Motion Animation Software, PRO."}, +{"name":"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."}, +{"name":"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."}, +{"name":"animos","description":"Anime-streaming desktop application without any ads."}, +{"name":"aniship","description":"Allows for easy viewing of anime on PCs and laptops."}, +{"name":"ankama-launcher","description":"Ankama is an entertainment and digital creation group."}, +{"name":"anki","description":"Unofficial, Anki's shared backend and web components, and the Qt frontend."}, +{"name":"another-redis-desktop-manager","description":"Faster and better redis desktop manager."}, +{"name":"ansel","description":"An open-source photo-editing software for digital artists, designed to help you achieve your own interpretation of raw digital photographs."}, +{"name":"ant-downloader","description":"BitTorrent Client developed by golang, angular, electron."}, +{"name":"antares","description":"An useful SQL client based on Electron.js and Vue.js."}, +{"name":"antidot","description":"Cleans up your $HOME from those pesky dotfiles."}, +{"name":"antigravity","description":"Unofficial AppImage of Google Antigravity."}, +{"name":"antigravity-ide","description":"Unofficial AppImage of Google Antigravity IDE."}, +{"name":"antimicrox","description":"Use a gamepad to control a variety of programs."}, +{"name":"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."}, +{"name":"any-code","description":"Claude Code CLI, OpenAI Codex, and Google Gemini CLI."}, +{"name":"anydesk","description":"Unofficial. Remote desktop application distributed."}, +{"name":"anything-llm","description":"AI business intelligence tool. Any LLM, any document."}, +{"name":"anytype","description":"The everything app for those who celebrate trust & autonomy."}, +{"name":"anzeigenchef","description":"AdsChef manages your classified ads."}, +{"name":"aphelion-wallet","description":"Aphelion desktop wallet application built with Electron."}, +{"name":"aphototoollibre","description":"Photo editing app for GNU/Linux."}, +{"name":"apidog","description":"API design, debugging, testing, and mock tool."}, +{"name":"apiflow","description":"A modern API workspace that works both online and offlinecombining API documentation, testing, mock, and AI-powered automation in one lightweight tool."}, +{"name":"apk-editor-studio","description":"Easy to use APK, Android reverse-engineering tool."}, +{"name":"apla","description":"Project was bootstrapped with Create React App."}, +{"name":"app-outlet","description":"A Universal linux app store for Flatpak/Snap/AppImage."}, +{"name":"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."}, +{"name":"apphub","description":"App that simplifies installation/management of .appImage packages."}, +{"name":"appimage-builder","description":"GNU/Linux packaging solution using the AppImage format."}, +{"name":"appimage-creator","description":"GUI for easily generating AppImage packages on Linux."}, +{"name":"appimagecraft","description":"Powerful build script generator with a focus on AppImages."}, +{"name":"appimagelauncher","description":"CLI helper for running and integrating AppImages."}, +{"name":"appimagelint","description":"Check AppImages for compatibility, best practices etc."}, +{"name":"appimagen","description":"A script that generates a custom AppImage from a PPA."}, +{"name":"appimagepool","description":"A simple, modern AppImageHub Client, powered by flutter."}, +{"name":"appimagetool","description":"Tool to generate an AppImage from an existing AppDir."}, +{"name":"appimageupdate","description":"A Rust implementation of AppImageUpdate, a tool for updating AppImages using efficient delta updates using zsync."}, +{"name":"appimageupdater","description":"AppImage Updater for Humans built with QML/C++ with Qt5."}, +{"name":"appimageupdatetool","description":"Tool to update an AppImage using embedded information."}, +{"name":"appimg","description":"Appimg is a lightweight command-line tool that helps you manage AppImage files on Linux."}, +{"name":"appinstall","description":"AppImage Installer, a tool integrate AppImages to a linux desktop environment."}, +{"name":"appium-inspector","description":"A GUI inspector for mobile apps and more, powered by a (separately installed) Appium server."}, +{"name":"appmanager","description":"MacOS style AppImage installer and management application."}, +{"name":"aptakube","description":"A modern and lightweight Kubernetes desktop client."}, +{"name":"aptly","description":"Debian repository management CLI tool."}, +{"name":"apx-gcs","description":"APX Ground Control."}, +{"name":"ar","description":"Create, modify, and extract from .deb archives. This is part of \"am-utils\" suite."}, +{"name":"aranym","description":"Virtual Machine for Atari 32-bit applications."}, +{"name":"arcade-manager","description":"Manage your rom collection, Games/Retropie & Recalbox."}, +{"name":"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."}, +{"name":"arch","description":"Hardware name (same as uname -m). This is part of \"am-utils\" suite."}, +{"name":"arch-deployer","description":"A script to bulk download an Arch Linux package with all its dependencies to be converted in AppImage."}, +{"name":"arch-flatimage","description":"A hybrid of Flatpak sandboxing with AppImage portability."}, +{"name":"archimage-cli","description":"Build AppImage packages using JuNest, Arch Linux."}, +{"name":"archimede","description":"Unobtrusive directory information fetcher."}, +{"name":"archipel","description":"Decentralized archiving and media library system."}, +{"name":"archipelago","description":"Archipelago Multi-Game Randomizer and Server."}, +{"name":"archisteamfarm","description":"C# application with primary purpose of farming Steam cards from multiple accounts simultaneously."}, +{"name":"archiveweb.page","description":"A High-Fidelity Web Archiving Extension for Chrome and Chromium based browsers."}, +{"name":"arduino-ide","description":"Open-source electronics platform."}, +{"name":"arena-tracker","description":"Deck Tracker for Hearthstone game with arena in focus."}, +{"name":"ares","description":"AppImage for the ares emulator."}, +{"name":"ares-emu","description":"Unofficial AppImage of the ares emulator."}, +{"name":"aretext","description":"Minimalist text editor with vim-compatible key bindings."}, +{"name":"ark","description":"Archiving tool for .zip/.tar/.rar and more. This is part of \"kdeutils\"."}, +{"name":"ark.desktop.wallet","description":"Ark Ecosystem Desktop Wallet."}, +{"name":"arkaway","description":"Another Arkanoid clone and make with Pyxel."}, +{"name":"arma3-unix-launcher","description":"ArmA 3 Unix Launcher, game."}, +{"name":"armagetronad","description":"Multiplayer game in 3d that emulates the movie \"Tron\"."}, +{"name":"armcord","description":"Custom client designed to enhance your Discord experience."}, +{"name":"artisan","description":"Visualizes the coffee roasting process."}, +{"name":"artix","description":"One app. All your favorite Artix games."}, +{"name":"arx-libertatis","description":"Unofficial AppImage of Arx Libertatis."}, +{"name":"as","description":"GNU assembler.. This is part of \"am-utils\" suite."}, +{"name":"asarui","description":"UI for Asar."}, +{"name":"ascendara","description":"Skip extracting files, navigating setup processes, or any unnecessary hassles."}, +{"name":"asgardex","description":"Thorchain wallet desktop app."}, +{"name":"aspect","description":"Photo organization application with support for peer-to-peer based synchronization across devices."}, +{"name":"asphyxia-core","description":"Unofficial AppImage of Asphyxia CORE."}, +{"name":"astroffers","description":"Take offers to watch at given nights by the NGC2000 catalog."}, +{"name":"astrofox","description":"Audio reactive motion graphics program."}, +{"name":"asunder","description":"Unofficial. Audio CD ripper and encoder, WAV, MP3, OGG, FLAC, Opus, AAC...."}, +{"name":"atomicwallet","description":"Atomic vue-electron."}, +{"name":"atuin","description":"Magical shell history."}, +{"name":"audacious","description":"Unofficial. An open source audio and music player, descendant of XMMS."}, +{"name":"audacity","description":"Multiplatform Audio Editor."}, +{"name":"audacity-enhanced","description":"Unofficial, multiplatform Audio Editor."}, +{"name":"audapolis","description":"An editor for spoken-word audio with automatic transcription."}, +{"name":"audio-sharing","description":"Unofficial. Share audio from the desktop on local network using RTSP protocol."}, +{"name":"audiomoth-configuration-app","description":"An Electron-based application capable of configuring the functionality of the AudioMoth recording device and setting the onboard clock."}, +{"name":"audiomoth-flash-app","description":"An Electron-based application designed to flash the AudioMoth recording device with new firmware."}, +{"name":"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."}, +{"name":"audiomoth-live-app","description":"An Electron-based application for recording and analysing live audio from high sample rate microphones, including the AudioMoth USB Microphone."}, +{"name":"audiomoth-time-app","description":"An Electron-based application capable of setting the on-board clock of the AudioMoth recording device."}, +{"name":"audiomoth-usb-microphone-app","description":"An Electron-based application capable of configuring the functionality of the AudioMoth-USB-Microphone firmware."}, +{"name":"audiorelay","description":"Stream audio between your devices. Turn your phone into a microphone or speakers for PC."}, +{"name":"augur","description":"Augur Desktop Application."}, +{"name":"augustus","description":"An open source re-implementation of the game Caesar III."}, +{"name":"augustus-enhanced","description":"Unofficial, a fork of the Julius project that intends to incorporate gameplay changes."}, +{"name":"aurora","description":"A utility to control RGB keyboard back-light and charging threshold for Asus TUF-gaming laptops."}, +{"name":"auryo","description":"An audio/music desktop client for SoundCloud."}, +{"name":"authenticator","description":"Unofficial. An application which generates 2FA code in realtime."}, +{"name":"authme","description":"Simple cross-platform two-factor authenticator app for desktop."}, +{"name":"authy","description":"Unofficial, Protect all your accounts with 2FA."}, +{"name":"auto-claude","description":"Autonomous multi-session AI coding framework that plans, builds, and validates software for you."}, +{"name":"autoedit2","description":"autoEdit2 Desktop Client for Linux."}, +{"name":"autosubsync","description":"Automatic subtitle synchronization tool."}, +{"name":"avantgarde","description":"Avalonia XAML Preview."}, +{"name":"avidemux","description":"Multiplatform Video Editor."}, +{"name":"avidemux-qt","description":"Unofficial, my custom Avidemux Video Editor built to use system themes."}, +{"name":"avogadro2","description":"Molecular editor for computational chemistry, bioinformatics."}, +{"name":"awakened-poe-trade","description":"Path of Exile trading app for price checking."}, +{"name":"awakened-poe-trade-enhanced","description":"Unofficial AppImage of Awakened POE Trade with some fixes and wider OS support."}, +{"name":"axe-electrum","description":"Axe Electrum Wallet."}, +{"name":"axolotl","description":"A Signal compatible cross plattform client written in Go and Vuejs."}, +{"name":"aya","description":"A desktop application for easily controlling android devices, which can be considered as a GUI wrapper for ADB."}, +{"name":"ayandict","description":"Simple yet advanced multi-lingual cross-platform offline dictionary for desktop, using Qt and Go."}, +{"name":"azahar-enhanced","description":"Unofficial AppImage of Azahar, with optimized builds for modern cpus."}, +{"name":"azaharplus","description":"A fork of the Azahar 3DS emulator with extra features an open-source 3DS emulator project based on Citra."}, +{"name":"azaharplus-pkg-extractor","description":"Standalone PKG extractor CLI based on code that used to be in ShadPS4 PlayStation 4 emulator written in C++."}, +{"name":"b2sum","description":"Check BLAKE2 message digest. This is part of \"am-utils\" suite."}, +{"name":"badlion","description":"Most Complete All-In-One Mod Library for Minecraft with 100+ Mods."}, +{"name":"baijimangaviewer","description":"Manga viewer that uses Material Design."}, +{"name":"balatro-multiplayer","description":"A Multiplayer Mod for Balatro."}, +{"name":"bambustudio","description":"PC Software for BambuLab's 3D printers."}, +{"name":"bananas","description":"Bananas, Cross-Platform screen sharing made simple."}, +{"name":"banban","description":"A productivity app inspired by GitHub Projects Kanban."}, +{"name":"bandwhich","description":"Terminal bandwidth utilization tool."}, +{"name":"banjo-recompiled","description":"Unofficial, a static recompiled port of N64 Banjo-Kazooie for PC."}, +{"name":"banjorecomp","description":"Recompiled."}, +{"name":"baobab","description":"A graphical directory tree analyzer for the GNOME desktop environment, to keep your disk usage and available space under control."}, +{"name":"barnacal","description":"A simple menu bar app for viewing a calendar"}, +{"name":"base32","description":"Base32 encode/decode data and print to standard. This is part of \"am-utils\" suite."}, +{"name":"base64","description":"Base64 encode/decode data and print to standard. This is part of \"am-utils\" suite."}, +{"name":"basename","description":"Strip directory and suffix from filenames. This is part of \"am-utils\" suite."}, +{"name":"basenc","description":"Encode and decode with multiple base encodings.. This is part of \"am-utils\" suite."}, +{"name":"basilisk2","description":"Classic Macintosh emulator BasiliskII."}, +{"name":"basiliskii-enhanced","description":"Unofficial, classic Macintosh emulator BasiliskII."}, +{"name":"bastyon","description":"Decentralized social network based on the blockchain."}, +{"name":"bat","description":"A \"cat\" clone with wings."}, +{"name":"bat-extras","description":"Bash scripts that integrate bat with various command line tools."}, +{"name":"batch-explorer","description":"A client tool to create/debug/monitor Azure Batch Apps."}, +{"name":"battop","description":"CLI, interactive batteries viewer."}, +{"name":"bauh","description":"GUI for managing AppImage, Arch/AUR, DEBs, Flatpak, Snap and webapps."}, +{"name":"bazecor","description":"Graphical configurator for Dygma Raise."}, +{"name":"bbg","description":"A static blog generator based on Electron Technology."}, +{"name":"bchat-desktop","description":"About A decentralized cionfidential messaging app that runs on Beldex network."}, +{"name":"bdash","description":"A simple business intelligence application."}, +{"name":"bearly","description":"The world's best AI at your fingertips."}, +{"name":"beatconnect-client","description":"Beatconnect power for osu irc."}, +{"name":"beatmapexporter","description":"osu!lazer beatmap exporter utility. Allowing mass export of beatmaps from the new osu!lazer file storage back into .osz files."}, +{"name":"beatsaber-mod-manager","description":"Yet another mod installer for Beat Saber, heavily inspired by ModAssistant."}, +{"name":"beaver-notes","description":"Build your knowledge one log at a time."}, +{"name":"beekeeper-studio","description":"SQL query editor and database UI."}, +{"name":"beeref","description":"BeeRef Reference Image Viewer."}, +{"name":"bemoji","description":"Emoji picker for bemenu/wofi/rofi/dmenu, remembers your favorites."}, +{"name":"bench-cli","description":"CLI tool to benchmark commands, written in `Fortran`."}, +{"name":"berserkerquake2","description":"Berserker@Quake2 game engine, ported to SDL2 library."}, +{"name":"better-osu-skills","description":"Gets results from the osu! Using your own IRC credentials."}, +{"name":"betterbird","description":"Unofficial, Betterbird is a fine-tuned version of Mozilla Thunderbird, a free and open-source email client."}, +{"name":"bettercrewlink","description":"Free, open, Among Us proximity voice chat."}, +{"name":"bettermediainfo-enhanced","description":"Unofficial AppImage of BetterMediaInfo."}, +{"name":"bettersis","description":"Modern shell for SIS."}, +{"name":"betterx","description":"Enhance your X (formerly Twitter) experience with BetterX Desktop!"}, +{"name":"beurerscalemanager","description":"AppImage packaging project for BeurerScaleManager."}, +{"name":"beyond-all-reason","description":"3D Real-Time Strategy Total Annihilation Inspired, game."}, +{"name":"bezique","description":"Plays bezique game against the AI."}, +{"name":"bforartists","description":"3D modeling, animation, rendering and post-production."}, +{"name":"biblemultithelife","description":"Bible multi languages, free, offline, no advertising."}, +{"name":"biblemultithesonofman","description":"Offline Bible for Terminal."}, +{"name":"bibletime","description":"Unofficial, a Bible study application based on the Sword library and Qt toolkit."}, +{"name":"bidirectional","description":"Write Arabic text on apps that don't support the bidirectional text."}, +{"name":"bigpemu","description":"Unofficial AppImage of BigPEmu."}, +{"name":"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."}, +{"name":"bilibili","description":"Bilibili official desktop client."}, +{"name":"bilibilivideodownload","description":"Bilibili video downloader."}, +{"name":"biliup-app","description":"Bilibili uploader."}, +{"name":"billard-gl","description":"Unofficial. 3D billiards game, play a game of 8-ball or 9-ball."}, +{"name":"billyfrontier","description":"Pangea Software’s Billy Frontier for modern systems."}, +{"name":"bin","description":"Effortless binary manager."}, +{"name":"binclock","description":"Binary clock in terminal."}, +{"name":"binfinder","description":"Find binary files not installed through package manager."}, +{"name":"bingada","description":"Bingo application in GTKAda."}, +{"name":"binglite","description":"A lightweight new Bing (AI chat) desktop application based on Tauri."}, +{"name":"bioanimation","description":"CCNY Electrochemical Gradient Simulator."}, +{"name":"biplanes-revival","description":"An old cellphone arcade recreated for PC."}, +{"name":"birds-kitchen","description":"Recipe manager."}, +{"name":"bitbox-wallet","description":"Cryptocurrency hardware wallet desktop app."}, +{"name":"bitshares","description":"Advanced wallet interface for the BitShares financial blockchain."}, +{"name":"bitwarden","description":"Password manager for individuals, teams and business."}, +{"name":"biying","description":"Biying Wallpaper for Linux."}, +{"name":"bk","description":"Terminal Epub reader."}, +{"name":"black-chocobo","description":"FF7 Save Game Editor."}, +{"name":"blacknut","description":"Cloud gaming client."}, +{"name":"blank","description":"Blank is a minimalist, opinionated markdown editor made for writing."}, +{"name":"blastem","description":"Clone of Mercurial Repo."}, +{"name":"blender","description":"Very fast and versatile 3D modeller/renderer, Stable."}, +{"name":"blender-alpha","description":"Very fast and versatile 3D modeller/renderer, Alpha."}, +{"name":"blender-beta","description":"Very fast and versatile 3D modeller/renderer, Beta."}, +{"name":"blender-rc","description":"Very fast and versatile 3D modeller/renderer, Release Candidate."}, +{"name":"blensor","description":"3D modeling, animation, rendering and post-production."}, +{"name":"blimp","description":"Customizable terminal UI for monitoring weather information, application status, network latency, and more."}, +{"name":"blink","description":"GUI of live indexed grep search for source code."}, +{"name":"blizzard-4","description":"Emulator & toolchain for the Blizzard 4 16-bit computer."}, +{"name":"blob-dl","description":"Blob-dl is a yt-dlp CLI interface used to download video and audio files from YouTube."}, +{"name":"blobdrop","description":"Drag and drop files directly out of the terminal."}, +{"name":"block-dx","description":"Exchange dApp built on top of the Blocknet Protocol."}, +{"name":"blockbench","description":"Editor for boxy models and pixel art textures like Minecraft."}, +{"name":"blockstream-green","description":"Bitcoin wallet compatible with Blockstream Jade."}, +{"name":"bloks","description":"An electron-vue project."}, +{"name":"bloomee","description":"Music app designed to bring you ad-free tunes from various sources."}, +{"name":"bloomrpc","description":"GRPC GUI client."}, +{"name":"blowfish","description":"Display your total Ocean Token balances."}, +{"name":"blueglow","description":"A simple system tray application to watch github notifications."}, +{"name":"bluetuith","description":"A TUI bluetooth manager for Linux."}, +{"name":"bm64recomp-enhanced","description":"Unofficial AppImage of Bomberman 64 Recompiled."}, +{"name":"bmherorecomp-enhanced","description":"Unofficial AppImage of Bomberman Hero Recompiled."}, +{"name":"boardgamestar","description":"A platform for playing digital boardgames."}, +{"name":"bodacious","description":"A bodacious music player."}, +{"name":"bodhi","description":"Bodhi Prediction Market app."}, +{"name":"boilr","description":"Synchronize games from other platforms into your Steam library."}, +{"name":"bomber","description":"Arcade spaceship game. This is part of \"kdegames\"."}, +{"name":"bongocat","description":"A chinese cute interactive desktop pet application that makes your desktop full of fun!"}, +{"name":"book-manager","description":"Simple desktop app to manage personal library."}, +{"name":"bookdb","description":"A book catalog database for personal collections. Can import data from Readerware 4."}, +{"name":"bookmarks-manager","description":"Edit bookmarks, check url."}, +{"name":"boost-note","description":"Document driven project management tool to speedup remote DevOps."}, +{"name":"boostchanger","description":"Control CPU turbo boost and the settings of the cpu speed."}, +{"name":"botclient","description":"A discord botclient built with Electron and React."}, +{"name":"botframework-emulator","description":"Test and debug chat bots built with Bot Framework SDK."}, +{"name":"bottlebats","description":"Client for the 2018 edition of the BottleBats AI competition."}, +{"name":"bottles","description":"Unofficial. Manage wine prefixes and run Windows software & games in a new way."}, +{"name":"bottom","description":"Yet another cross-platform graphical process/system monitor."}, +{"name":"bovo","description":"Five in a row game from. This is part of \"kdegames\"."}, +{"name":"boxxy","description":"Put bad Linux applications in a box with only their files."}, +{"name":"brainverse","description":"Electronic Lab Notebook for Reproducible Neuro Imaging Research."}, +{"name":"brainwaves","description":"EEG Desktop Application."}, +{"name":"brave","description":"Unofficial, a privacy oriented Web Browser based on Chromium, this is the \"stable\" release."}, +{"name":"brave-beta","description":"Unofficial, a privacy oriented Web Browser based on Chromium, this is the \"beta\" release."}, +{"name":"brave-nightly","description":"Unofficial, a privacy oriented Web Browser based on Chromium, this is the \"nightly\" release."}, +{"name":"brave-origin","description":"Unofficial, stripped down version of Brave Browser with no extra features."}, +{"name":"bread","description":"Install, update and remove AppImage from GitHub using your CLI."}, +{"name":"breaktimer","description":"Save yourself from RSI and eye-strain."}, +{"name":"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."}, +{"name":"brickstore","description":"An offline BrickLink inventory management tool."}, +{"name":"bridge","description":"The perfect Bridge between Megascans and your favorite tools."}, +{"name":"brisk","description":"Ultra-fast, moden download manager for desktop."}, +{"name":"brisqi","description":"Offline-first Personal Kanban app."}, +{"name":"browservice","description":"Browse the modern web on historical browsers."}, +{"name":"brs-emu-app","description":"BrightScript Emulator, runs on browsers and Electron apps."}, +{"name":"bruno","description":"An Opensource API Collection Collaboration Suite."}, +{"name":"brutespray","description":"Bruteforcing from various scanner output. Automatically attempts default creds on found services."}, +{"name":"bscanfftwebcam","description":"FDOCT tool."}, +{"name":"bsky","description":"A desktop app of bsky.app."}, +{"name":"btop","description":"A command line utility to monitor system resources, like Htop."}, +{"name":"bts-ce-lite","description":"Telecommunication network management application."}, +{"name":"buckets","description":"Budgeting fast, simple and private."}, +{"name":"bugdom","description":"Pangea Software's Bugdom game."}, +{"name":"bugdom2","description":"Pangea Software’s Bugdom 2 for modern systems."}, +{"name":"bulkreviewer","description":"Identify, review, and remove private information."}, +{"name":"bulkurlopener","description":"Desktop version of the Bulk URL Opener extension."}, +{"name":"bulky","description":"Unofficial, an XApp used to rename multiple files and directories."}, +{"name":"bunnyfetch","description":"A small and fast tool for getting info about your system."}, +{"name":"bunqdesktop","description":"A desktop implementation for the bunq API."}, +{"name":"burning-series","description":"Watch any series from Burning Series, Unofficial client."}, +{"name":"busybox","description":"AppImage of BusyBox, a tool that combines stripped-down versions of many common UNIX utilities into a single, small executable."}, +{"name":"buttercup","description":"Free and Open Source password vault."}, +{"name":"bypass-cors","description":"Unlock browser’s full potential!"}, +{"name":"bytespeichertrayicon","description":"Bytespeicher Status App."}, +{"name":"bzip2","description":"A high-quality data compression program. This is part of \"am-utils\" suite."}, +{"name":"c++filt","description":"And Java symbols. This is part of \"am-utils\" suite."}, +{"name":"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."}, +{"name":"cabal-desktop","description":"Cabal p2p offline-first desktop application."}, +{"name":"cables-gl","description":"A tool for creating beautiful interactive content. With an easy to navigate interface and real time visuals."}, +{"name":"cacher","description":"Cacher is a code snippet library for professional developers."}, +{"name":"cacoco","description":"A (slightly, but aspirationally) finished SBARDEF editor. Mostly."}, +{"name":"cadassistant","description":"Offline 3D CAD viewer and converter, free for personal and commercial use."}, +{"name":"cadmus","description":"Pulse Audio real-time noise suppression plugin."}, +{"name":"caesium","description":"Image compression software that helps you store, send and share digital pictures, supporting JPG, PNG, WebP and TIFF formats."}, +{"name":"cake-wallet","description":"Easily and safely store, send, receive, and exchange your cryptocurrency."}, +{"name":"calibre","description":"Unofficial. The one stop solution to all your e-book needs."}, +{"name":"calibre-beta","description":"Unofficial. The one stop solution to all your e-book needs. Beta version."}, +{"name":"calibre-preview","description":"Unofficial. The one stop solution to all your e-book needs. Preview version."}, +{"name":"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."}, +{"name":"calm-circles","description":"Calm down and draw something, in Lisp."}, +{"name":"calm-fan","description":"Calm down and draw something, in Lisp."}, +{"name":"calm-meditator","description":"Calm down and draw something, in Lisp."}, +{"name":"calm-mondrian","description":"Calm down and draw something, in Lisp."}, +{"name":"camelot","description":"Camelot is cross-platform file manager written in C."}, +{"name":"candycrisis","description":"Candy Crisis source port for modern operating systems."}, +{"name":"cannonball","description":"Unofficial, an Enhanced OutRun Engine."}, +{"name":"caprine","description":"Unofficial, elegant privacy focused Facebook Messenger app."}, +{"name":"carbonyl","description":"Chromium running inside your terminal."}, +{"name":"cardo","description":"Podcast client."}, +{"name":"cargo","description":"Converts your crate into an AppImage."}, +{"name":"carpenters","description":"Digital preservation ingest utility."}, +{"name":"carta","description":"Cube Analysis and Rendering Tool for Astronomy."}, +{"name":"cartridges","description":"Unofficial. Game launcher, which helps you visualize your game collection and easily launch games."}, +{"name":"cashonize","description":"A cross-platform Bitcoin Cash Wallet."}, +{"name":"cask","description":"A universal, distributed binary file manager."}, +{"name":"casm","description":"Corinthian Abstract State Machine, CASM."}, +{"name":"casterr","description":"Screen recorder, easing recording and clipping in-game."}, +{"name":"castersoundboard","description":"Soundboard for hot-keying and playing back sounds."}, +{"name":"cat","description":"Concatenate files and print on the standard output. This is part of \"am-utils\" suite."}, +{"name":"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)."}, +{"name":"catalyst","description":"Catalyst web browser."}, +{"name":"catapult","description":"A cross-platform launcher for Cataclysm DDA and BN."}, +{"name":"catcher","description":"Peer-testing of software projects."}, +{"name":"catfish","description":"Unofficial AppImage of catfish."}, +{"name":"cavoke","description":"Platform to create/host multiplayer turn-based board games."}, +{"name":"cbetar2","description":"ePub viewer supporting fetching and displaying HTML as ePub."}, +{"name":"cbird","description":"Command-line program for Content-Based Image Retrieval of images and videos. Includes tools for general search and de-duplication."}, +{"name":"cccp","description":"Cortex Command, a community-driven effort to continue the development of Cortex Command."}, +{"name":"cdogs-sdl","description":"Unofficial, classic overhead run-and-gun game."}, +{"name":"celeste64","description":"A game made by the Celeste developers."}, +{"name":"celestia","description":"Real time 3D space simulator."}, +{"name":"celestia-dev","description":"Real time 3D space simulator, developer edition."}, +{"name":"celestia-enanched","description":"Unofficial. Real-time 3D space simulator with extra detailed maps."}, +{"name":"celoterminal-bin","description":"Celo Terminal, AppImage version."}, +{"name":"cemu","description":"A Nintendo Wii U emulator that is able to run most Wii U games."}, +{"name":"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."}, +{"name":"cerebral-debugger","description":"Cerebral Debugger."}, +{"name":"cerebro","description":"Open-source productivity booster with a brain."}, +{"name":"chain-desktop-wallet","description":"Crypto.com DeFi Desktop Wallet."}, +{"name":"chainx-signer","description":"Manage ChainX account, sign and sign transactions."}, +{"name":"chat-gpt","description":"Unofficial. ChatGPT Desktop Application."}, +{"name":"chatall","description":"Concurrently chat with ChatGPT, Bing Chat, bard, Alpaca and more."}, +{"name":"chatbox","description":"Chatbox is a desktop app for GPT-4 / GPT-3.5, OpenAI API."}, +{"name":"chatgpt-next-web","description":"A cross-platform ChatGPT/Gemini UI."}, +{"name":"chatpad-ai","description":"Not just another ChatGPT user-interface."}, +{"name":"chatterino2","description":"Second installment of the Twitch chat client."}, +{"name":"chatterino2-nightly","description":"Second installment of the Twitch chat client."}, +{"name":"chcon","description":"Security context. This is part of \"am-utils\" suite."}, +{"name":"cheat","description":"Create and view interactive cheatsheets on the command-line."}, +{"name":"cheatbreaker","description":"The free FPS boosting modpack for Minecraft 1.7 & 1.8."}, +{"name":"checkra1n","description":"Jailbreak for iPhone 5s through iPhone X, iOS 12.0 and up"}, +{"name":"chemcanvas","description":"A very intuitive 2D chemical drawing tool."}, +{"name":"cherry-studio","description":"Agentic AI desktop with autonomous coding, intelligent automation, and unified access to frontier LLMs."}, +{"name":"cherrytree","description":"A hierarchical note taking application."}, +{"name":"chess-tui","description":"Play chess from your terminal."}, +{"name":"chessmd","description":"Open source chess training software. Play against bots, analyze with engines, explore chess openings, and more."}, +{"name":"chezmoi","description":"Manage your dotfiles across multiple diverse machines, securely."}, +{"name":"chgrp","description":"Change group ownership. This is part of \"am-utils\" suite."}, +{"name":"chimeradesk","description":"Simple, fast and flexible DIY Remote Desktop software."}, +{"name":"chimeradesk-kvm","description":"Simple, fast and flexible DIY Remote Desktop software."}, +{"name":"chmod","description":"Change file mode bits. This is part of \"am-utils\" suite."}, +{"name":"chown","description":"Change file owner and group. This is part of \"am-utils\" suite."}, +{"name":"chromium","description":"Unofficial. FOSS Web Browser, base of Google Chrome, Edge and Brave, stable."}, +{"name":"chromium-beta","description":"Unofficial. FOSS Web Browser, base of Google Chrome, beta edition."}, +{"name":"chromium-bsu","description":"Unofficial. Fast paced arcade style scrolling space shooter, game."}, +{"name":"chromium-edge","description":"Unofficial. FOSS Web Browser, base of Google Chrome, edge edition."}, +{"name":"chromium-rc","description":"Unofficial. FOSS Web Browser, base of Google Chrome, release candidate."}, +{"name":"chroot","description":"Run command or interactive shell with special root. This is part of \"am-utils\" suite."}, +{"name":"chrysalis-bin","description":"Graphical configurator for Kaleidoscope-powered keyboards."}, +{"name":"ciaa-suite","description":"Makefile based IDE for embedded systems."}, +{"name":"cicada","description":"An old-school bash-like Unix shell written in Rust."}, +{"name":"cine","description":"Unofficial AppImage of Cine."}, +{"name":"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."}, +{"name":"cinny","description":"Yet another matrix client for desktop."}, +{"name":"circle-z","description":"A chat client for online math courses."}, +{"name":"circuitblocks","description":"Helps newbies get into embedded programming."}, +{"name":"city-hub","description":"Hub into everything on City Chain/Smart City Platform."}, +{"name":"ciyue","description":"A simple mdict dictionary."}, +{"name":"cksum","description":"Compute and verify file checksums. This is part of \"am-utils\" suite."}, +{"name":"clagrange","description":"Lagrange is a cross-platform client for browsing Geminispace (CLI Version)."}, +{"name":"clamtk","description":"An easy to use, light-weight, on-demand virus scanner for Linux systems"}, +{"name":"clamui","description":"ClamAV Desktop application (GUI)."}, +{"name":"clapper","description":"Unofficial. A modern media player designed for simplicity and ease of use."}, +{"name":"clash-nyanpasu","description":"A Clash GUI based on tauri."}, +{"name":"clash-verge","description":"A multiplatform Clash GUI based on tauri."}, +{"name":"classicimageviewer","description":"A simple image viewer with some editing features."}, +{"name":"classicube","description":"Unofficial, Custom Minecraft Classic / ClassiCube client written in C from scratch"}, +{"name":"classipod","description":"A local music player app designed to capture the nostalgic essence of the iconic iPod Classic."}, +{"name":"claude-code","description":"Unofficial AppImage of claude-code."}, +{"name":"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."}, +{"name":"clear","description":"Clear the terminal screen. This is part of \"am-utils\" suite."}, +{"name":"cleepdesktop","description":"Desktop application to manage your Cleep devices."}, +{"name":"clementine","description":"Unofficial AppImage of the Clementine music player."}, +{"name":"clementineremote","description":"Remote for Clementine Music Player."}, +{"name":"clifm","description":"The shell-like, command line terminal file manager simple, fast, extensible, and lightweight as hell."}, +{"name":"cliniface","description":"3D Facial Image Visualisation and Analysis."}, +{"name":"clipgrab","description":"Download and Convert Online Videos."}, +{"name":"clippy","description":"Clipboard History."}, +{"name":"clipr","description":"The clipboard that syncs."}, +{"name":"clipse","description":"Configurable TUI clipboard manager for Unix."}, +{"name":"clk","description":"Unofficial, a latency hating emulator for 8 and 16 bit platforms."}, +{"name":"cloud-browser","description":"Access to files located in various cloud services."}, +{"name":"clownmaped","description":"Sonic the Hedgehog sprite editor, clone of Xenowhirl's SonMapEd."}, +{"name":"clownmdemu","description":"Reference standalone frontend for clownmdemu."}, +{"name":"clownmdemu-enhanced","description":"Unofficial, reference standalone frontend for clownmdemu."}, +{"name":"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."}, +{"name":"cncjs","description":"CNC Milling Controller."}, +{"name":"cncra2yr","description":"C&C Red Alert 2, a real-time strategy game by Westwood Pacific."}, +{"name":"coal-launcher","description":"A client to view and play games from the AB Coal website."}, +{"name":"code","description":"Visual Studio, VSCode, Original Editor to build/debug web/cloud apps."}, +{"name":"code-expert-sync","description":"Allows syncing of Code Expert projects to a local file system."}, +{"name":"code-notes","description":"A simple code snippet amp built with Electron."}, +{"name":"code-radio","description":"A command line music radio client for coderadio.freecodecamp.org, written in Rust."}, +{"name":"codebook-lsp","description":"Codebook, code-aware spell checker with language server implementation."}, +{"name":"coinstac","description":"Collaborative Informatics and Neuroimaging Suite Toolkit."}, +{"name":"col","description":"Line feeds from input. This is part of \"am-utils\" suite."}, +{"name":"colcrt","description":"Output for CRT previewing. This is part of \"am-utils\" suite."}, +{"name":"collaboraoffice","description":"Unofficial, a collaborative online office suite based on LibreOffice technology."}, +{"name":"collision","description":"Unofficial. Verify the checksum/hash validity of files."}, +{"name":"colon","description":"A flexible text editor."}, +{"name":"colorgenerator","description":"Generates color palettes similar to ColorBrewer."}, +{"name":"colorpicker","description":"Electron app that can show colors with hex/rgb."}, +{"name":"colorstatic-bash","description":"CLI to generate a random colorful \"Static\"/\"Matrix\"."}, +{"name":"colrm","description":"From a file. This is part of \"am-utils\" suite."}, +{"name":"column","description":"Columnate lists. This is part of \"am-utils\" suite."}, +{"name":"comic-book-reader","description":"Reader and converter for cbz, cbr, epub and pdf files."}, +{"name":"comic-reader","description":"Electron based comic reader."}, +{"name":"comics-downloader","description":"Tool to download comics and manga in pdf/epub/cbr/cbz from a website."}, +{"name":"comictagger","description":"A multi-platform app for writing metadata to digital comics."}, +{"name":"comm","description":"Compare two sorted files line by line. This is part of \"am-utils\" suite."}, +{"name":"commander-genius","description":"Unofficial, an open-source interpreter for the Commander Keen (1-6, Dreams) and Cosmos Cosmic series."}, +{"name":"compass","description":"Air Traffic Surveillance DataBase."}, +{"name":"compresso","description":"Convert any video into a tiny size."}, +{"name":"concordium-desktop-wallet","description":"The official Concordium Dektop Wallet."}, +{"name":"conduction","description":"Tasks? Done. That was quick."}, +{"name":"conky","description":"Light-weight system monitor for X."}, +{"name":"consoleworkbench","description":"Console workbench."}, +{"name":"constrict","description":"Unofficial AppImage of Constrict."}, +{"name":"contour","description":"Modern C++ Terminal Emulator."}, +{"name":"conty","description":"Easy to use unprivileged and portable Arch Linux container."}, +{"name":"converse-desktop","description":"Electron-based Desktop client for Converse.js."}, +{"name":"converseen","description":"A batch image converter and resizer."}, +{"name":"converter432hz","description":"Converts and re-encodes music to 432hz."}, +{"name":"converternow","description":"The Unit Converter app. Easy, immediate and multi-platform."}, +{"name":"cool-retro-term","description":"Use the command line the old way."}, +{"name":"coolercontrol","description":"A program to monitor and control your cooling devices."}, +{"name":"coolercontrold","description":"Daemon for coolercontrol, to monitor your cooling devices."}, +{"name":"copyq","description":"Unofficial, an advanced clipboard manager with powerful editing and scripting features."}, +{"name":"copytranslator","description":"Foreign language reading and translation assistant."}, +{"name":"cordlauncher","description":"Cord launcher based on Electron and Wep Application."}, +{"name":"coreaction","description":"A side bar for showing widgets for CuboCore Application Suite."}, +{"name":"corearchiver","description":"Archive manager for CuboCore Application Suite."}, +{"name":"corefm","description":"A lightweight file-manager for C Suite."}, +{"name":"coregarage","description":"A setting manager for CuboCore Application Suite."}, +{"name":"corehunt","description":"A file search utility for CuboCore Application Suite."}, +{"name":"coreimage","description":"An image viewer for CuboCore Application Suite."}, +{"name":"coreinfo","description":"A file information viewer for CuboCore Application Suite."}, +{"name":"corekeyboard","description":"A x11 based virtual keyboard for C Suite."}, +{"name":"corepad","description":"A document editor for CuboCore Application Suite."}, +{"name":"corepaint","description":"A paint app for CuboCore Application Suite."}, +{"name":"corepins","description":"A bookmarking app for CuboCore Application Suite."}, +{"name":"corerenamer","description":"A batch file renamer for CuboCore Application Suite."}, +{"name":"coreshot","description":"A screen capture utility for CuboCore Application Suite."}, +{"name":"corestats","description":"A system resource viewer from the CoreApps family."}, +{"name":"corestuff","description":"An activity viewer for CuboCore Application Suite."}, +{"name":"coreterminal","description":"A terminal emulator for C Suite."}, +{"name":"coretime","description":"A time related task manager for CuboCore Application Suite."}, +{"name":"coreuniverse","description":"Shows releated information of apps from CuboCore App Suite."}, +{"name":"corsixth","description":"Open source clone of Theme Hospital."}, +{"name":"corsixth-enhanced","description":"Unofficial, open source clone of Theme Hospital."}, +{"name":"cosmic-comics","description":"Web Server based Comics / Manga Collectionner & viewer."}, +{"name":"cosmonium","description":"3D astronomy and space exploration program."}, +{"name":"cowitness","description":"A powerful web app testing tool that enhances the accuracy and efficiency of your testing efforts."}, +{"name":"cozydrive","description":"File Synchronisation for Cozy, cloud."}, +{"name":"cp","description":"Copy files and directories. This is part of \"am-utils\" suite."}, +{"name":"cpeditor","description":"Code editor specially designed for competitive programming."}, +{"name":"cpod","description":"A simple, beautiful podcast app."}, +{"name":"cpu-x","description":"Software that gathers information on CPU, motherboard and more."}, +{"name":"cpufetch","description":"Simple yet fancy CPU architecture fetching tool."}, +{"name":"crabfetch","description":"Extremely fast, featureful and customizable command-line fetcher."}, +{"name":"craftos-pc","description":"Advanced ComputerCraft emulator written in C++."}, +{"name":"crankshaft","description":"A sensible krunker client written in typescript."}, +{"name":"crawl-ncurses","description":"open-source, single-player, role-playing roguelike game of exploration and treasure-hunting - ncurses version (terminal)"}, +{"name":"crawl-tiles","description":"open-source, single-player, role-playing roguelike game of exploration and treasure-hunting - graphical version (SDL)"}, +{"name":"creality-print","description":"Creality Print is a slicer dedicated to FDM printers."}, +{"name":"crg-data-tool","description":"A tool for working with Games Data files from CRG."}, +{"name":"cric","description":"Custom Runtime Image Creator."}, +{"name":"crispy-doom","description":"Unofficial, a limit-removing enhanced-resolution Doom source port based on Chocolate Doom."}, +{"name":"criteria-geo","description":"A one-dimensional agro-hydrological model, GIS interface."}, +{"name":"criteria1d","description":"A one-dimensional agro-hydrological model."}, +{"name":"criteria1d-pro","description":"A one-dimensional agro-hydrological model, PRO."}, +{"name":"cro-chain-desktop-bin","description":"Crypto.com DeFi Desktop Wallet, AppImage version."}, +{"name":"croc","description":"Easily and securely send things from one computer to another."}, +{"name":"crock","description":"Crock is rock clock."}, +{"name":"cromagrally","description":"The wildest racing game since man invented the wheel!"}, +{"name":"cromagrally-enhanced","description":"Unofficial, the wildest racing game since man invented the wheel!"}, +{"name":"cromberg","description":"Personal accounting system."}, +{"name":"cromite","description":"Unofficial AppImage of the Cromite web browser."}, +{"name":"crosscode-map-editor","description":"Map Editor for CrossCode."}, +{"name":"crossmacro","description":"A modern mouse and keyboard macro recording and playback application."}, +{"name":"crossmobile","description":"Create native iOS/Android/Windows apps in Java."}, +{"name":"crow-translate","description":"Translate and speak text using Google, Yandex, Bing and more."}, +{"name":"cryplicity","description":"Electron application boilerplate."}, +{"name":"crypter","description":"An innovative, convenient and secure crypto app."}, +{"name":"cryptocam-companion","description":"GUI to decrypt videos taken by Cryptocam."}, +{"name":"cryptomator","description":"Cloud Storage Encryption Utility."}, +{"name":"cryptr","description":"A GUI for Vault."}, +{"name":"cs-demo-manager","description":"Companion application for your Counter-Strike demos."}, +{"name":"cscrypto","description":"A crypto app."}, +{"name":"csplit","description":"File into sections determined by context. This is part of \"am-utils\" suite."}, +{"name":"ctool","description":"Common Tools for Program Development."}, +{"name":"ctop","description":"Top-like interface for container metrics."}, +{"name":"cuberite","description":"Unofficial, a lightweight, fast and extensible game server for Minecraft."}, +{"name":"cubyz","description":"Unofficial AppImage of Cubyz."}, +{"name":"cudatext","description":"A cross-platform text editor, written in Object Pascal."}, +{"name":"cura","description":"An open source slicing application for 3D printers."}, +{"name":"cura-beta","description":"An open source slicing application for 3D printers, beta."}, +{"name":"curl","description":"Command line tool and library for transferring data with URLs. This is part of \"am-utils\" suite."}, +{"name":"curlie","description":"The power of curl, the ease of use of httpie."}, +{"name":"curseforge","description":"Discover endless mods for your favorite games, or forge your own and share them with millions."}, +{"name":"cursor","description":"Built to make you extraordinarily productive, Cursor is the best way to code with AI."}, +{"name":"cursor-cli","description":"Unofficial, AI-assisted development CLI tool."}, +{"name":"customrpc","description":"An electron-vue project."}, +{"name":"cut","description":"From each line of files. This is part of \"am-utils\" suite."}, +{"name":"cutechess","description":"Cute Chess is a GUI, a CLI and a library for playing chess."}, +{"name":"cutepeaks","description":"A simple sanger trace file viewer."}, +{"name":"cutevariant","description":"A genetics variant filtering tools"}, +{"name":"cutter","description":"Free and Open Source Reverse Engineering Platform."}, +{"name":"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!."}, +{"name":"czkawka","description":"App to find duplicates, empty folders, similar images etc."}, +{"name":"d1x-rebirth","description":"Unofficial, a source port of the Descent engine."}, +{"name":"d2x-rebirth","description":"Unofficial, a source port of the Descent 2 engine."}, +{"name":"daggerfall-unity","description":"Unofficial, open source recreation of Daggerfall in the Unity engine."}, +{"name":"daisy","description":"A beautiful, easy-to-use, ad-free manga and light novel client that supports both. (Anime Home)."}, +{"name":"dana","description":"A desktop client for the Dana learning box."}, +{"name":"darkplaces","description":"Unofficial, the DarkPlaces Quake engine, created by LadyHavoc."}, +{"name":"darktable","description":"Photography workflow app and raw developer."}, +{"name":"darktable-nightly","description":"Photography workflow application and raw developer (nightly)."}, +{"name":"dashy-app","description":"Dashboard creation application."}, +{"name":"database-dossier","description":"A User Interface for your databases."}, +{"name":"dataset-annotator","description":"An annotation tool for a dataset."}, +{"name":"datcord","description":"Discord client."}, +{"name":"date","description":"A header-only library which builds upon . This is part of \"am-utils\" suite."}, +{"name":"dawnlightsearch","description":"A Linux version of Everything Search Engine."}, +{"name":"dayon","description":"Dayon! - A cross-platform remote desktop assistance solution for your family and friends."}, +{"name":"dbeaver-ce","description":"Unofficial, DBeaver Community is a free cross-platform database tool for developers, database administrators, analysts, and everyone working with data."}, +{"name":"dbee","description":"Fast & Minimalistic Database Browser."}, +{"name":"dbet-wallet","description":"DBET Wallet."}, +{"name":"dbgate","description":"Opensource database administration tool"}, +{"name":"dbgate-premium","description":"Opensource database administration tool (premium version)"}, +{"name":"dbin","description":"Poor man's package manager. About 3000 statically linked binaries in the repos!"}, +{"name":"dd","description":"Convert and copy a file. This is part of \"am-utils\" suite."}, +{"name":"deadbeef","description":"Unofficial AppImage of the DeaDBeeF music player (Stable version)."}, +{"name":"deadbeef-nightly","description":"Unofficial AppImage of the DeaDBeeF music player (Nightly version)."}, +{"name":"deadgame-2048","description":"GUI tool available for ALL platforms."}, +{"name":"dealers-choice","description":"A cross-platform, networked multiplayer poker game supporting draw, stud, and community-card variants, including Texas."}, +{"name":"deb2appimage","description":"Build AppImages from deb packages on any distro."}, +{"name":"deckboard","description":"Control your PC with your phone in easy way possible."}, +{"name":"dedop-studio","description":"DeDop Studio"}, +{"name":"deepl-linux-electron","description":"DeepL Integration. Select & translate text in any app."}, +{"name":"deeplx","description":"DeepL Free API, No TOKEN required."}, +{"name":"deepnotes","description":"End-to-end encrypted visual note-taking tool."}, +{"name":"deeptags","description":"Markdown notes manager with support for nested tags."}, +{"name":"deerportal","description":"Full of the diamonds board game."}, +{"name":"deezer","description":"A linux port of Deezer, allows downloading your songs, music."}, +{"name":"deezer-enhanced","description":"An unofficial application for Deezer with enhanced features."}, +{"name":"defichain-app","description":"DefiChain Wallet AppImage."}, +{"name":"defold","description":"Unofficial, Defold is a completely free to use game engine for development of games."}, +{"name":"delta","description":"A syntax-highlighting pager for git, diff, grep, and blame output."}, +{"name":"deltachat-desktop","description":"Desktop Application for delta.chat."}, +{"name":"demonizer","description":"Demonic corruption fantasy shmup."}, +{"name":"denise","description":"Unofficial AppImage of Denise."}, +{"name":"densify","description":"A GTK+ GUI Application written in Python that simplifies compressing PDF files with Ghostscript."}, +{"name":"deployer","description":"Deploy your applications through Jenkins."}, +{"name":"deskreen","description":"Turns any device with a web browser into a secondary screen."}, +{"name":"deskthing","description":"The Discord Thing, Trello Thing, The Weather Thing, The Macro Thing, just not The Car Thing anymore."}, +{"name":"desmume","description":"Unofficial AppImage of the DeSmuME emulator."}, +{"name":"destiny","description":"Cross-platform Magic Wormhole graphical client."}, +{"name":"dethrace","description":"Unofficial, reverse engineering the 1997 game \"Carmageddon\"."}, +{"name":"devclean","description":"A CLI and Desktop GUI app to clean dev dependencies (node_modules, cache) and more."}, +{"name":"devdocs-desktop","description":"Desktop client for devdocs.io."}, +{"name":"devhub","description":"TweetDeck for GitHub"}, +{"name":"devilutionx","description":"Diablo build for modern operating systems."}, +{"name":"devilutionx-enhanced","description":"Unofficial, Diablo build for modern operating systems."}, +{"name":"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."}, +{"name":"devsidecar","description":"Dev sidecar/github/git/stackoverflow acceleration, in chinese."}, +{"name":"devtools-x","description":"Collection of offline first developer utilities available as desktop application."}, +{"name":"devtoys","description":"A Swiss Army knife for developers."}, +{"name":"dexter-dev-env","description":"Dexter Development Environment."}, +{"name":"dezor","description":"The web browser including VPN and Adblocker."}, +{"name":"df","description":"Report file system space usage. This is part of \"am-utils\" suite."}, +{"name":"dfdemo","description":"A thin Tcl/Tk GUI around the df POSIX command."}, +{"name":"dfilemanager","description":"File manager written in Qt and C++."}, +{"name":"dhammapada","description":"A simple Dhammapada verse viewer for the Linux desktop."}, +{"name":"dhewm3","description":"Unofficial, doom 3 GPL source port."}, +{"name":"dicomautomaton","description":"Tools for working with medical physics data."}, +{"name":"didder","description":"An extensive, fast, and accurate command-line image dithering tool."}, +{"name":"die-engine","description":"Detect It Easy, a program for determining types of files."}, +{"name":"diff","description":"Compare files line by line. This is part of \"am-utils\" suite."}, +{"name":"diffpdf","description":"Unofficial AppImage of DiffPDF."}, +{"name":"diffre","description":"A fast, local file and folder diff tool like Beyond Compare, built for the desktop."}, +{"name":"diffuse","description":"Music player, connects to your cloud/distributed storage."}, +{"name":"digikam","description":"Professional and advanced digital photo management application."}, +{"name":"digikam-dev","description":"Professional and advanced digital photo management application."}, +{"name":"dillo","description":"Unofficial AppImage of Dillo."}, +{"name":"dingtalk","description":"DingTalk desktop version based on electron."}, +{"name":"dinosaurplanetrecompiled","description":"A static recompilation/native port of the game Dinosaur Planet."}, +{"name":"dinox","description":"DinoX - Modern XMPP Chat Client with Video Calls, Voice Messages & OMEMO Encryption."}, +{"name":"dione","description":"Explore, Install, Innovate — in 1 Click."}, +{"name":"dir","description":"List directory contents. This is part of \"am-utils\" suite."}, +{"name":"dircolors","description":"For ls. This is part of \"am-utils\" suite."}, +{"name":"dirname","description":"Strip last component from file name. This is part of \"am-utils\" suite."}, +{"name":"disass","description":"A simple disassembly tool."}, +{"name":"discord","description":"Unofficial. All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone."}, +{"name":"discord-bot-client","description":"A patched version of discord, with bot login & Vencord support."}, +{"name":"discord-qt","description":"Unofficial. Discord client powered by Node.JS and Qt Widgets."}, +{"name":"diskfmt","description":"A disk formatting utility for linux that is similar to the windows format utility."}, +{"name":"diskonaut","description":"Terminal disk space navigator."}, +{"name":"dissent","description":"Tiny native Discord app."}, +{"name":"dl-desktop","description":"Desktop client for the Duolingo language learning application."}, +{"name":"dlman","description":"Free & fast modern download manager built with Rust for speed and reliability."}, +{"name":"dns-changer","description":"An open-source DNS Changer app."}, +{"name":"dnzhrecomp","description":"Unofficial, a native port of Duke Nukem Zero Hour, statically recompiled."}, +{"name":"dockstation","description":"Developing with Docker has never been so easy and convenient."}, +{"name":"doggo","description":"Command-line DNS Client for Humans. Written in Golang"}, +{"name":"dolphin-emu","description":"Unofficial, GameCube/Nintento Wii emulator with improvements."}, +{"name":"dolphin-emu-nightly","description":"Unofficial nightly AppImage of the Dolphin emulator."}, +{"name":"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."}, +{"name":"domterm","description":"DOM/JavaScript-based terminal-emulator/console."}, +{"name":"dooit","description":"An awesome TUI todo manager."}, +{"name":"doom64exultra","description":"Unofficial, A fork of DOOM64EX+ with new stuff and fixes."}, +{"name":"dopamine-preview","description":"The audio player that keeps it simple."}, +{"name":"dorion","description":"Tiny alternative Discord client with a smaller footprint, snappier startup, themes, plugins and more!"}, +{"name":"dosbox-pure-unleashed","description":"Unofficial AppImage of DOSBox Pure Unleashed."}, +{"name":"dosbox-x","description":"Unofficial, DOSBox-X is a cross-platform DOS emulator for running many MS-DOS games."}, +{"name":"dosemu","description":"Run DOS programs under linux."}, +{"name":"dotline","description":"A modern crosshair overlay app."}, +{"name":"dotto","description":"A portable and modern pixelart editor, written from scratch."}, +{"name":"doublecmd-gtk","description":"Two-panel file manager, also known as Double Commander."}, +{"name":"doublecmd-qt","description":"Two-panel file manager, also known as Double Commander."}, +{"name":"downline","description":"A cross-platform video and audio downloader."}, +{"name":"dr-robotniks-ring-racers","description":"Unofficial, kart racing video game originally based on SRB2Kart."}, +{"name":"dra","description":"A command line tool to download release assets from GitHub."}, +{"name":"dragdrop","description":"Small drag-and-drop file source for the command line."}, +{"name":"dragula","description":"Free Stock Images on Steroids."}, +{"name":"drally","description":"Unofficial, a port of Death Rally (1996)."}, +{"name":"draw","description":"Draw in your terminal."}, +{"name":"draw.io","description":"draw.io desktop."}, +{"name":"drawish","description":"Simple, yet complete drawing program."}, +{"name":"drawpile","description":"Drawing program to sketch on the same canvas simultaneously."}, +{"name":"drawy","description":"Your handy, infinite, brainstorming tool."}, +{"name":"dreamm","description":"Unofficial AppImage of DREAMM."}, +{"name":"drill","description":"Search files without indexing, but clever crawling."}, +{"name":"droidcam","description":"A DroidCam AppImage for the Steam Deck/SteamOS 3.0."}, +{"name":"dropbox","description":"A free cloud service, Unofficial AppImage."}, +{"name":"droppoint","description":"Drag content without having to open side-by-side windows."}, +{"name":"drovp","description":"Desktop app for encoding, converting, upscaling, and much more."}, +{"name":"drum-machine","description":"Unofficial, Application for managing and playing with drum patterns."}, +{"name":"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."}, +{"name":"dstask","description":"Git powered terminal-based todo/note manager, markdown note page per task."}, +{"name":"dtmate","description":"CLI to compute difference between date, time or duration."}, +{"name":"du","description":"Estimate file space usage. This is part of \"am-utils\" suite."}, +{"name":"dua","description":"View disk space usage and delete unwanted data, fast."}, +{"name":"duckling","description":"A fast viewer for CSV/Parquet files and databases such as DuckDB, SQLite, PostgreSQL, MySQL, Clickhouse, etc."}, +{"name":"duckstation","description":"PlayStation 1, aka PSX games Emulator."}, +{"name":"duckstation-gpl-enhanced","description":"Unofficial, fast PlayStation 1 emulator when it was still using GPLv3."}, +{"name":"duf","description":"Disk Usage/Free Utility, a better 'df' alternative."}, +{"name":"dukto","description":"Easy and multi-platform file transfer tool."}, +{"name":"dune","description":"A shell by the beach."}, +{"name":"dunst","description":"Lightweight and customizable notification daemon."}, +{"name":"duplicate-image-finder","description":"It is an application that can find duplicated images (jpg, png, bitmap, etc) in a collection."}, +{"name":"dusklight","description":"Dusklight brings a classic adventure to PC and mobile platforms with a variety of fixes and improvements."}, +{"name":"duskplayer","description":"A minimal music player built on electron."}, +{"name":"dust","description":"A more intuitive version of du in rust."}, +{"name":"dust3d","description":"3D modeling software for games, 3D printing, and so on."}, +{"name":"dvdisaster","description":"Additional error protection for CD/DVD media."}, +{"name":"dwarf-fortress","description":"The AppImage of lnp-forge built LinuxDwarfPack."}, +{"name":"dwarf-fortress-legacy","description":"Unofficial AppImage of Dwarf Fortress Legacy."}, +{"name":"dwarffortress","description":"A Dwarf Fortress game. Build a fortress and try to help your dwarves survive against a deeply generated world."}, +{"name":"dwyco-phoo","description":"Dwyco Phoo Chat and Video Calling."}, +{"name":"dysk","description":"A linux utility to get information on filesystems, like df but better."}, +{"name":"e2-sat-editor","description":"Satellite channel lists editor with tabbed nav."}, +{"name":"eaglemode","description":"Zoomable user interface with plugin applications."}, +{"name":"easytag","description":"Unofficial AppImage of EasyTAG tag editor."}, +{"name":"ecency-surfer","description":"Rewarding communities built, owned and operated by its users."}, +{"name":"echo","description":"Display a line of text. This is part of \"am-utils\" suite."}, +{"name":"ecode","description":"Lightweight code editor designed for modern hardware."}, +{"name":"ecwolf","description":"Unofficial, advanced port of Wolfenstein 3D based off of Wolf4SDL."}, +{"name":"edconv","description":"A user-friendly FFmpeg GUI."}, +{"name":"eden","description":"An experimental open-source emulator for Nintendo Switch (yuzu fork)."}, +{"name":"eden-nightly","description":"An experimental open-source emulator for Nintendo Switch (yuzu fork, nightly builds)."}, +{"name":"edex-ui","description":"A cross-platform, customizable science fiction terminal emulator."}, +{"name":"eduke32","description":"Unofficial, an advanced Duke Nukem 3D source port."}, +{"name":"eez-studio","description":"Cross-platform low-code GUI and automation."}, +{"name":"eget","description":"Easily install prebuilt binaries from GitHub."}, +{"name":"ehdev-shell","description":"An electron based developing tool for feds."}, +{"name":"eiskaltdcpp","description":"Client for EiskaltDC++ core."}, +{"name":"eka2l1","description":"A Symbian OS/N-Gage emulator"}, +{"name":"eksplode.re","description":"Bomberman game made with Godot under BSD3."}, +{"name":"elastic","description":"Unofficial. Visualize and design physics-based animation of objects."}, +{"name":"elcalc","description":"Cross-Platform calculator built with Electron."}, +{"name":"eldumper","description":"A GB Cartridge Dumper."}, +{"name":"electorrent","description":"A remote control Torrent client."}, +{"name":"electrocrud","description":"No coding is required."}, +{"name":"electron-app-store","description":"Simple App Store for Apps Built with Electron."}, +{"name":"electron-cash","description":"Lightweight Bitcoin Cash Client."}, +{"name":"electron-mail","description":"Unofficial ProtonMail Desktop App."}, +{"name":"electron-react-boilerplate","description":"A Foundation for Scalable Cross-Platform Apps."}, +{"name":"electron-ssr","description":"Install electron-ssr from appimage."}, +{"name":"electron-utils","description":"Electron Utils for every day usage as a dev."}, +{"name":"electron-wechat","description":"Wechat desktop application."}, +{"name":"electron-xiami","description":"Xiami Electron desktop application."}, +{"name":"electronreact","description":"Desktop application using Electron and React."}, +{"name":"electronwmd","description":"Upload music to NetMD MiniDisc devices."}, +{"name":"electrum","description":"Lightweight Bitcoin Client."}, +{"name":"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."}, +{"name":"electrum-ravencoin","description":"Forked from the Electrum Bitcoin base client."}, +{"name":"electrumfair","description":"Lightweight FairCoin Client."}, +{"name":"electrumsvp","description":"Bitcoin BSV wallet, fork of ElectrumSV."}, +{"name":"element","description":"A feature-rich client for Matrix.org."}, +{"name":"element-desktop","description":"Unofficial, glossy Matrix collaboration client for desktop."}, +{"name":"elementary-code","description":"AppImage version of Elementary OS \"Code\" by Maksym Titenko."}, +{"name":"elements","description":"App which displays the periodic table, Education, Science."}, +{"name":"elfedit","description":"Header and program property of ELF files. This is part of \"am-utils\" suite."}, +{"name":"elk","description":"Native version of Elk, a nimble Mastodon web."}, +{"name":"ellas-war","description":"Explore Ancient Greece on Ellas-War."}, +{"name":"elphyre-walletshell","description":"Elphyrecoin GUI Wallet."}, +{"name":"elvish","description":"Powerful modern shell scripting."}, +{"name":"elyprismlauncher","description":"This fork of Prism Launcher adds integrated support for Ely.by accounts."}, +{"name":"elzabrowser","description":"Elza incognito web browser."}, +{"name":"emacs","description":"Unofficial. FOSS text editor for complete programming language."}, +{"name":"emacs-nox","description":"Unofficial. FOSS text editor for complete programming language."}, +{"name":"embedded-ide","description":"Makefile based IDE for embedded systems."}, +{"name":"emoji-keyboard","description":"Virtual keyboard-like emoji palette for Linux."}, +{"name":"emudeck","description":"EmuDeck Desktop Electron Wrapper."}, +{"name":"emulsion","description":"Better gaming through chemistry."}, +{"name":"en-croissant","description":"The Ultimate Chess Toolkit."}, +{"name":"encryptpad","description":"Secure text editor and binary encryptor with passwords."}, +{"name":"endless-sky","description":"Space exploration and combat game."}, +{"name":"enoseannotator","description":"View, annotate and store measurements of the eNose sensor."}, +{"name":"ente-auth","description":"Fully open source, End to End Encrypted alternative to Google Photos and Apple Photos."}, +{"name":"ente-photos","description":"Binary releases of the Ente Photos desktop app."}, +{"name":"env","description":"Run a program in a modified environment. This is part of \"am-utils\" suite."}, +{"name":"enve","description":"Create 2D Animations."}, +{"name":"envkey","description":"EnvKey’s cross-platform native app."}, +{"name":"eog","description":"Eye of Gnome is an image viewing and cataloging program."}, +{"name":"eosvc","description":"Application for management of self-employeed people."}, +{"name":"eplee","description":"Sweet, simple epub reader."}, +{"name":"epsxe","description":"Unofficial, enhanced PSX emulator."}, +{"name":"eqonomize","description":"Manage your personal finances."}, +{"name":"equibop","description":"Equibop is a custom Discord App aiming to give you better performance and improve linux support."}, +{"name":"era","description":"ERA is your note-taking tool."}, +{"name":"erscaffold","description":"A code generator for websites."}, +{"name":"es-de","description":"EmulationStation Desktop Edition."}, +{"name":"escrcpy","description":"Graphical Scrcpy to display and control Android, devices powered by Electron."}, +{"name":"esearch","description":"Screenshot OCR search translate search for picture paste..."}, +{"name":"espanso","description":"Cross-platform Text Expander written in Rust."}, +{"name":"espi","description":"Software recreation of the SP-1200 drum machine."}, +{"name":"etc1tool","description":"Utility for compressing and decompressing ETC1 texture files. This is part of \"platform-tools\"."}, +{"name":"etcher","description":"Flash OS images to SD cards and USB drives, Balena Etcher."}, +{"name":"eternal-lands","description":"3D fantasy multiplayer online role playing game."}, +{"name":"eternalmodmanager","description":"A cross platform mod manager for DOOM Eternal."}, +{"name":"etherealengine-cc","description":"App for managing Ethereal Engine cluster."}, +{"name":"etichetta","description":"A YOLO annotator, for human beings."}, +{"name":"etlegacy","description":"Enemy Territory."}, +{"name":"evalit","description":"A notepad calculator application with JavaScript configuration."}, +{"name":"everdo","description":"A powerful cross-platform GTD app with focus on privacy."}, +{"name":"everinst","description":"An installer for the Everest mod loader."}, +{"name":"evernote","description":"Unofficial. Note taking app. Remember everything and tackle any project with your notes, tasks, and schedule all in one place."}, +{"name":"evince","description":"Unofficial. Document viewer for popular document formats."}, +{"name":"evoplex","description":"Agent-based modeling."}, +{"name":"excel-parser-processor","description":"Generates an array of items from the rows."}, +{"name":"exe","description":"A Elearning XHTML/HTML5 editor."}, +{"name":"exeqt","description":"Cross platform tray manager."}, +{"name":"exifcleaner","description":"Clean exif metadata from images, videos, and PDFs."}, +{"name":"eximchain-wallet","description":"Eximchain Wallet web and electron app."}, +{"name":"exodus","description":"Send, receive & exchange cryptocurrency. Bitcoin wallet."}, +{"name":"expand","description":"Convert tabs to spaces. This is part of \"am-utils\" suite."}, +{"name":"explorook","description":"Rookout’s site addon to support local files and folders."}, +{"name":"exportoo","description":"Read and search your exports."}, +{"name":"expr","description":"Evaluate expressions. This is part of \"am-utils\" suite."}, +{"name":"exsplode.re","description":"A Bomberman game made with Godot under BSD3."}, +{"name":"extension-manager","description":"A native tool for browsing, installing, and managing GNOME Shell Extensions."}, +{"name":"extraterm","description":"The swiss army chainsaw of terminal emulators."}, +{"name":"extrema","description":"Data visualisation and analysis."}, +{"name":"extremetuxracer","description":"Unofficial. 3D racing game with Tux, the Linux penguin."}, +{"name":"exult","description":"Unofficial, a project to recreate Ultima 7 for modern operating systems."}, +{"name":"eyedropper","description":"Unofficial. Simple color picker, with support for various color palettes."}, +{"name":"eyestalker","description":"Video-based eye tracking using recursive estimation of pupil."}, +{"name":"ez-tree","description":"EZ Tree – Procedural tree generator."}, +{"name":"eza","description":"A modern, maintained replacement for ls."}, +{"name":"ezup","description":"Easy File Upload to Cloud Storage."}, +{"name":"f-crm","description":"Customer Relations Management for Freelancers."}, +{"name":"f1mv-lights-integration","description":"Connect your smart home lights to MultiViewer."}, +{"name":"fabother-world","description":"Unofficial, an interpreter for Another World (Out of this world)."}, +{"name":"factor","description":"A general purpose, dynamically typed, stack-based programming language.. This is part of \"am-utils\" suite."}, +{"name":"fafarunner","description":"A game developed using flutter and flame."}, +{"name":"fairshare","description":"Simplifying the curation and sharing of biomedical research."}, +{"name":"fakedata","description":"CLI utility for fake data generation."}, +{"name":"falkon","description":"Unofficial. A fast Qt web browser from KDE."}, +{"name":"false","description":"Do nothing, unsuccessfully. This is part of \"am-utils\" suite."}, +{"name":"fantascene-dynamic-wallpaper","description":"Dynamic wallpaper software for Linux."}, +{"name":"fantasia-archive","description":"A database manager for world building."}, +{"name":"farmhand","description":"A resource management game that puts a farm in your hand."}, +{"name":"fastboot","description":"Android bootloader tool for flashing, unlocking, and managing firmware. This is part of \"platform-tools\"."}, +{"name":"fastcompmgr","description":"A fast compositor for X11."}, +{"name":"fastfetch","description":"Like neofetch, but much faster because written mostly in C."}, +{"name":"fasttrack","description":"Fast tracking of multiple objects."}, +{"name":"fat-wallet","description":"Wallet for FAT tokens."}, +{"name":"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."}, +{"name":"fbreader","description":"Your Favourite eBook Reader"}, +{"name":"fchat-horizon","description":"The Best F-Chat 3.0 Client, No exceptions!."}, +{"name":"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."}, +{"name":"fd","description":"A simple, fast and user-friendly alternative to 'find'."}, +{"name":"fdm","description":"Free Download Manager, multiplatform powerful modern download accelerator and organizer."}, +{"name":"fdroidcl","description":"A command-line F-Droid desktop client."}, +{"name":"featherpad","description":"Unofficial. A lightweight Qt plain-text editor."}, +{"name":"feebas","description":"Screenshot comparison tool for identifying visual regressions."}, +{"name":"feedseries","description":"Follow your series enthusiast news, in french."}, +{"name":"feishin","description":"Sonixd Rewrite, a desktop music player."}, +{"name":"ferdium","description":"All your services in one place, built by the community."}, +{"name":"ferrix","description":"Fast, modern, cross-platform download manager built with Rust and Tauri, supports resumable downloads, clean UI, and blazing performance."}, +{"name":"fetchit","description":"A system fetch tool for Linux, written in Rust."}, +{"name":"ff-password-exporter","description":"Export your saved passwords from Firefox."}, +{"name":"ffdec","description":"JPEXS Free Flash Decompiler."}, +{"name":"ffdec-nightly","description":"JPEXS Free Flash Decompiler."}, +{"name":"fflogs-uploader","description":"FFLogs Uploader appimage."}, +{"name":"ffmpeg","description":"Unofficial, A complete, cross-platform solution to record, convert and stream audio and video."}, +{"name":"ffsend","description":"Easily and securely share files from the command line. A fully featured Firefox Send client."}, +{"name":"ficus","description":"A software for editing and managing markdown documents."}, +{"name":"fiddler-everywhere","description":"Debug your network traffic to deliver high-quality products."}, +{"name":"fidias-database-migration-app","description":"Migrate SQL-based databases."}, +{"name":"fifo","description":"A modern web browser, built on top of modern web technologies."}, +{"name":"figma-linux","description":"First interface design tool based in the browser, graphics."}, +{"name":"file","description":"Determine the type of a file from its contents. This is part of \"am-utils\" suite."}, +{"name":"file-commander","description":"CLI, cross-platform Total Commander-like orthodox file manager."}, +{"name":"file-converter","description":"Convert between various file formats."}, +{"name":"file-roller","description":"File Roller is an archive manager for the GNOME desktop environment. Create and modify archives."}, +{"name":"file-to-c","description":"Tool for generating a C header from a spir-v binary file."}, +{"name":"filebrowser","description":"Web File Browser."}, +{"name":"filebrowser-quantum","description":"Web File Browser."}, +{"name":"filelight","description":"Unofficial. View disk usage information, by KDE."}, +{"name":"filen","description":"Desktop client for Filen.io, end-to-end encrypted cloud storage."}, +{"name":"filen-cli","description":"Filen CLI for Windows, macOS and Linux"}, +{"name":"filezilla","description":"Unofficial. The free FTP solution with support for FTP over TLS and SFTP."}, +{"name":"filmulator-gui","description":"Simplified raw editing with the power of film, graphics."}, +{"name":"find","description":"Files in a directory hierarchy. This is part of \"am-utils\" suite."}, +{"name":"fingrom","description":"Financial accounting application"}, +{"name":"firealpaca","description":"A Free and Multiplatform Digital Painting Software."}, +{"name":"firecamp","description":"Developer-first OpenSource API DevTool, Postman/Insomnia alternative."}, +{"name":"firedragon","description":"A web browser based on Floorp (the Vivaldi of Firefox's) with many opiniated settings by default."}, +{"name":"firefly-desktop","description":"The official IOTA and Shimmer wallet."}, +{"name":"firefox","description":"Fast, powerful and extensible Web Browser, Stable."}, +{"name":"firefox-beta","description":"Fast, powerful and extensible Web Browser, Beta Edition."}, +{"name":"firefox-devedition","description":"Fast, powerful and extensible Web Browser, Developer Edition."}, +{"name":"firefox-esr","description":"Fast, powerful and extensible Web Browser, ESR Edition."}, +{"name":"firefox-nightly","description":"Fast, powerful and extensible Web Browser, Nightly Edition."}, +{"name":"fireminipro","description":"GUI for minipro CLI."}, +{"name":"firetail","description":"An open source music player."}, +{"name":"firetv-toolkit","description":"Android-Toolkit, a GUI for adb, modify android devices."}, +{"name":"fish","description":"The user-friendly command line shell."}, +{"name":"fishing-funds","description":"Fund, big market, stock, virtual currency status, in chinese."}, +{"name":"fishterm","description":"A open-soruce Terminal remote access."}, +{"name":"fixit","description":"A utility to fix mistakes in your commands."}, +{"name":"fjordlauncher","description":"Prism Launcher fork with support for alternative auth servers."}, +{"name":"flacon","description":"Audio File Encoder. Extracts audio tracks from audio CDs."}, +{"name":"fladder","description":"A Simple Jellyfin frontend built on top of Flutter."}, +{"name":"flameshot","description":"Tool to take screenshots with many built-in features, graphics."}, +{"name":"flare","description":"Fantasy action RPG game using the FLARE engine."}, +{"name":"flashpoint","description":"Flashpoint Archive is a community effort to preserve games and animations from the web."}, +{"name":"flashrom","description":"Unofficial AppImage of ffmpeg."}, +{"name":"flawesome","description":"Flawesome is a modern productivity tool."}, +{"name":"flb","description":"A beautiful Feature Rich Music Player and Downloader,cross platform."}, +{"name":"flclash","description":"A multi-platform proxy client based on ClashMeta,simple and easy to use, open-source and ad-free."}, +{"name":"flightcore","description":"A Northstar installer, updater, and mod-manager."}, +{"name":"flightgear","description":"Free, open source flight simulator developed since 1997."}, +{"name":"flightgear-airports","description":"A software to design Flightgear groundnets."}, +{"name":"flippy-qualitative-testbench","description":"Music sheet reader."}, +{"name":"floorp","description":"Floorp Web Browser, the most Advanced and Fastest Firefox derivative."}, +{"name":"flow","description":"a programmer's text editor."}, +{"name":"flow-browser","description":"A modern, privacy-focused browser with a minimalistic design."}, +{"name":"flowinity","description":"The versatile all-in-one online platform, for everyone."}, +{"name":"fluent-reader","description":"Modern desktop RSS reader."}, +{"name":"fluffychat","description":"The cutest instant messenger in the matrix."}, +{"name":"fluxer","description":"A free and open source instant messaging and VoIP platform built for friends, groups, and communities."}, +{"name":"flycast","description":"A Sega Dreamcast, Naomi, Naomi 2 and Atomiswave emulator."}, +{"name":"flycast-dojo","description":"Flycast fork, multiplatform Sega Dreamcast, Naomi and Atomiswave emulator for netplay, training & online tournament gameplay."}, +{"name":"flycast-enhanced","description":"Unofficial, A Sega Dreamcast, Naomi, Naomi 2 and Atomiswave emulator."}, +{"name":"flyctl","description":"Command line tools for fly.io services."}, +{"name":"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."}, +{"name":"fman","description":"TUI CLI File Manager."}, +{"name":"fmradio","description":"Cross platform FM Radio App for RTL2832U dongles."}, +{"name":"fms-file-explorer","description":"Access and exploration of data produced."}, +{"name":"fmt","description":"Text formatter. This is part of \"am-utils\" suite."}, +{"name":"focalizzare","description":"A Timer for Pomodoro Technique."}, +{"name":"focus","description":"A fully featured productivity timer for the command line, based on the Pomodoro Technique."}, +{"name":"focusatwill","description":"Combines neuroscience and music to boost productivity."}, +{"name":"focuswriter","description":"Simple fullscreen word processor."}, +{"name":"fold","description":"Wrap each input line to fit in specified width. This is part of \"am-utils\" suite."}, +{"name":"folo","description":"Folo is the AI Reader."}, +{"name":"fontbase","description":"A lightning fast, beautiful and free font manager for designers."}, +{"name":"fontforge","description":"Free, libre font editor."}, +{"name":"fontlet","description":"A package manager for fonts."}, +{"name":"foobar2000","description":"Unofficial, an advanced freeware audio player for Windows, includes WINE."}, +{"name":"foobillardpp","description":"Unofficial, an OpenGL Billard Game based on foobillard 3.0a with patches and new features."}, +{"name":"foot","description":"Unofficial, A fast, lightweight and minimalistic Wayland terminal emulator (This AppImage can work on x11 as well)."}, +{"name":"fooyin","description":"Unofficial, a customisable music player."}, +{"name":"forkgram","description":"Fork of Telegram Desktop messaging app."}, +{"name":"four","description":"Electron App to access All4/Channel4, UK."}, +{"name":"foxfolio","description":"Cryptocurrency portfolio management application."}, +{"name":"fpm","description":"Faster Project Plus on Linux."}, +{"name":"fractale","description":"2D modeling of the Von Koch fractal."}, +{"name":"fraidycat","description":"Follow blogs, wikis, YouTube, Twitter, Reddit, Instagram and more."}, +{"name":"fraktal","description":"Podcast Manager in Electron."}, +{"name":"frame","description":"Fast FFmpeg GUI."}, +{"name":"frame-eth-dev","description":"A privacy focused Ethereum wallet."}, +{"name":"francetv","description":"The france.tv site in an application."}, +{"name":"francis","description":"Pomodoro technique, get more productive. This is part of \"kdeutils\"."}, +{"name":"franz","description":"Messaging app for WhatsApp, Slack, Telegram, HipChat and much more."}, +{"name":"frappebooks","description":"Book-keeping software for small-businesses and freelancers."}, +{"name":"freac","description":"fre:ac, free audio converter and CD ripper for various encoders."}, +{"name":"freecad","description":"Free and open source AutoCAD alternative."}, +{"name":"freecad-assembly3","description":"Assembly3 workbench for FreeCAD."}, +{"name":"freecad-weekly","description":"Official developmet build of FreeCAD, a free and opensource multiplatform 3D parametric modeler."}, +{"name":"freefilesync","description":"folder comparison and synchronization software."}, +{"name":"freeman","description":"A free, extensible, cross-platform file manager for power users."}, +{"name":"freeshow","description":"User-friendly presenter software."}, +{"name":"freetexturepacker","description":"Creates sprite sheets for you game or site, graphics."}, +{"name":"freetube","description":"An Open Source YouTube app for privacy."}, +{"name":"freetube-enhanced","description":"Unofficial, An Open Source YouTube app for privacy."}, +{"name":"freeze","description":"Generate images of code and terminal output."}, +{"name":"freezer","description":"An unofficial client for Deezer."}, +{"name":"fresh","description":"easy, powerful and fast."}, +{"name":"freshfetch","description":"An alternative to Neofetch in Rust with a focus on customization."}, +{"name":"fretboard","description":"Unofficial. Application which helps you find your favorite guitar chord."}, +{"name":"friction","description":"Flexible, user expandable 2D animation software."}, +{"name":"friture","description":"Real-time audio visualizations, spectrum, spectrogram, etc.."}, +{"name":"fromscratch","description":"Simple autosaving scratchpad."}, +{"name":"frontimer","description":"Desktop timer application always displayed in the forefront of the screen."}, +{"name":"fspy","description":"An open source, cross platform app for still image camera matching."}, +{"name":"fukayo","description":"Manga reader."}, +{"name":"funkin","description":"A rhythm game made with HaxeFlixel"}, +{"name":"funkin-legacy","description":"Legacy GLibC Linux support for Friday Night Funkin. A rhythm game made with HaxeFlixel."}, +{"name":"furnace","description":"A multi-system chiptune tracker compatible with DefleMask modules."}, +{"name":"fx","description":"Terminal JSON viewer & processor."}, +{"name":"fynodoro","description":"Fynodoro, the Pomodoro Widget."}, +{"name":"fzf","description":"A command-line fuzzy finder."}, +{"name":"g-v2ray","description":"Advanced V2Ray/Xray GUI Client for Linux."}, +{"name":"gaiasky","description":"Gaia Sky, a real-time 3D space simulator & astronomy visualisation."}, +{"name":"galculator","description":"A GTK 2 / GTK 3 based scientific calculator."}, +{"name":"gale","description":"A modern mod manager for Thunderstore."}, +{"name":"gallery-dl","description":"Command-line program to download image galleries and collections from several image hosting sites."}, +{"name":"gallery-dl-nightly","description":"Command-line program to download image galleries and collections from several image hosting sites, nightly build."}, +{"name":"gameconqueror","description":"Unofficial. Memory scanner designed to isolate the adress of an arbitrary variable in an executing process (gtk GUI)."}, +{"name":"gamehub","description":"Unified library for all your games from different platforms."}, +{"name":"gameimage","description":"Pack a runner/emulator/game and it's configs in a single AppImage."}, +{"name":"gamescope","description":"Unofficial AppImage of gamescope."}, +{"name":"gams-studio","description":"Development environment of General Algebraic Modeling System."}, +{"name":"ganache","description":"Personal Blockchain for Ethereum, latest AppImage for Linux."}, +{"name":"gaphor","description":"A UML and SysML modeling application written in Python."}, +{"name":"gapless","description":"Unofficial. Simple music player with blur and gapless playback."}, +{"name":"gargoyle-bin","description":"Interactive Fiction multi-int. for all major IF formats."}, +{"name":"gaucho","description":"Minimalist task launcher"}, +{"name":"gawk","description":"GNU version of awk. This is part of \"am-utils\" suite."}, +{"name":"gcap2025","description":"Appimage não oficial do GCAP2025, declare seus ganhos de capital (Ano-calendário 2025)."}, +{"name":"gcap2026","description":"Appimage não oficial do GCAP2026, declare seus ganhos de capital (Ano-calendário 2026)."}, +{"name":"gcstar","description":"Unofficial, collection manager written in Perl and based on Gtk."}, +{"name":"gdesktopsuite","description":"Google Suite as a desktop app, made possible with Electron."}, +{"name":"gdevelop","description":"Cross-platform game engine designed to be used by everyone."}, +{"name":"gdlauncher","description":"Simple, yet powerful Minecraft custom launcher."}, +{"name":"gdm-settings","description":"A settings app for GNOME's Login Manager, GDM."}, +{"name":"geany","description":"Unofficial, a fast and lightweight IDE."}, +{"name":"gearboy","description":"Unofficial, Game Boy / Gameboy Color emulator."}, +{"name":"gearcoleco","description":"Unofficial, ColecoVision emulator."}, +{"name":"geargrafx","description":"Unofficial, PC Engine / TurboGrafx-16 / SuperGrafx / PCE CD-ROM² emulator."}, +{"name":"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."}, +{"name":"gearlynx","description":"Unofficial, Atari Lynx emulator."}, +{"name":"gearsystem","description":"Unofficial, Sega Master System / Game Gear / SG-1000 emulator."}, +{"name":"gedit","description":"An easy-to-use general-purpose text editor for the GNOME desktop environment."}, +{"name":"geeqie","description":"Claiming to be the best image viewer and photo collection browser."}, +{"name":"geforce-infinity","description":"Enhance the Nvidia GeForce NOW experience."}, +{"name":"geforcenow-electron","description":"Desktop client for Nvidia GeForce NOW game streaming."}, +{"name":"gemalaya","description":"A keyboard-driven Gemini browser written in QML."}, +{"name":"gemget","description":"Command line downloader for the Gemini protocol."}, +{"name":"gemrb","description":"GemRB is a portable open-source implementation of Bioware's Infinity Engine."}, +{"name":"genact","description":"A nonsense activity generator."}, +{"name":"genesis","description":"Open source blockchain platform."}, +{"name":"geofs","description":"GeoFS flight sim as a desktop application."}, +{"name":"geometrize","description":"Images to shapes converter, graphics."}, +{"name":"gerbil","description":"A desktop app for running Large Language Models locally."}, +{"name":"gerbv","description":"Gerber file viewer for PCB design."}, +{"name":"gert","description":"A command line tool to download media from Reddit."}, +{"name":"getthermal","description":"Cross-platform Thermal Camera Viewer."}, +{"name":"gextractwinicons","description":"Extract cursors, icons and images from MS Windows files."}, +{"name":"gh","description":"GitHub’s official command line tool."}, +{"name":"gh-eco","description":"gh cli extension to explore the ecosystem."}, +{"name":"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."}, +{"name":"ghdl","description":"A much more convenient way to download GitHub release binaries on the command line."}, +{"name":"ghidra","description":"Ghidra is a software reverse engineering (SRE) framework."}, +{"name":"ghostship","description":"Unofficial, Another definitive port of Super Mario 64."}, +{"name":"ghostty","description":"Unofficial, 👻 ⚙️ AppImage for Ghostty Terminal Emulator (Stable)"}, +{"name":"ghostty-glfw","description":"Unofficial, 👻 ⚙️ AppImage for Ghostty Terminal Emulator (glfw version)"}, +{"name":"ghostty-glfw-nightly","description":"Unofficial, 👻 ⚙️ AppImage for Ghostty Terminal Emulator (Tip, Nightly) (glfw version)"}, +{"name":"ghostty-nightly","description":"Unofficial, 👻 ⚙️ AppImage for Ghostty Terminal Emulator (Tip, Nightly)"}, +{"name":"ghrel","description":"Download and verify GitHub release."}, +{"name":"giada","description":"Hardcore audio music production tool and drum machine for DJs."}, +{"name":"gibs","description":"Generally In-source Build System, build C++ projects without a project."}, +{"name":"gickup","description":"Backup your Git repositories with ease."}, +{"name":"gifcurry","description":"The open-source, Haskell-built video editor for GIF makers."}, +{"name":"gimagereader","description":"Unofficial AppImage of gImageReader."}, +{"name":"gimp","description":"GNU Image Manipulation Program, cross-platform image and photo editor. Multiple-choices."}, +{"name":"gimp-git","description":"Unofficial, Cross-platform image and photo editor, built from GIT."}, +{"name":"gimp-hybrid","description":"Unofficial, GIMP including third-party plugins and python2 support."}, +{"name":"gingko","description":"Gingko client rewritten in Elm."}, +{"name":"git-cliff","description":"A highly customizable Changelog Generator that follows Conventional Commit specifications."}, +{"name":"git-credential-oauth","description":"A Git credential helper that securely authenticates to GitHub, GitLab and BitBucket using OAuth."}, +{"name":"git-good","description":"Just a simple git client using electron and nodegit."}, +{"name":"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."}, +{"name":"gitbutler","description":"The GitButler version control client, backed by Git, powered by Tauri/Rust/Svelte."}, +{"name":"githoard","description":"Hoard git repositories with ease."}, +{"name":"github-desktop-plus","description":"Electron-based GitHub Desktop fork with advanced functionality and Bitbucket, GitLab integration."}, +{"name":"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."}, +{"name":"gitify","description":"GitHub notifications on your menu bar."}, +{"name":"gitjournal","description":"Mobile first Note Taking integrated with Git."}, +{"name":"gitkraken","description":"GitKraken Client including an intuitive GUI & powerful CLI."}, +{"name":"gitleaks","description":"Protect and discover secrets using Gitleaks."}, +{"name":"gitlight","description":"GitHub & GitLab notifications on your desktop."}, +{"name":"gitnote","description":"A modern note taking app based on GIT."}, +{"name":"gitql","description":"A git query language."}, +{"name":"gitqlient","description":"Multi-platform Git client written with Qt."}, +{"name":"gittyup","description":"GUI Git client designed to help you understand and manage your source code history."}, +{"name":"gitui","description":"Blazing fast terminal-ui for git written in rust."}, +{"name":"gl-warp2mp4","description":"Utility to pre-warp a movie similar to TGAWarp."}, +{"name":"glab","description":"A GitLab CLI tool bringing GitLab to your command line."}, +{"name":"glaxnimate","description":"A simple and fast vector graphics animation program."}, +{"name":"glow","description":"Render markdown on the CLI, with pizzazz!"}, +{"name":"gltf-insight","description":"C++11 based glTF 2.0 data insight tool."}, +{"name":"glulxe","description":"AppImage of the glulxe interactive fiction interpreter."}, +{"name":"glyphr-studio-desktop","description":"Professional font design programs."}, +{"name":"gm-companion","description":"A tool for rpg gamemasters."}, +{"name":"gmail-desktop","description":"Unofficial. Nifty Gmail desktop app."}, +{"name":"gnatstudio","description":"GNAT Studio is a powerful and lightweight IDE for Ada and SPARK."}, +{"name":"gncdu","description":"Implements NCurses Disk Usage(ncdu) with golang."}, +{"name":"gnome-boxes","description":"Unofficial, A simple GNOME application to access virtual machines."}, +{"name":"gnome-calculator","description":"Unofficial, Perform arithmetic, scientific or financial calculations."}, +{"name":"gnome-pomodoro","description":"A productivity tool designed to help you manage your time effectively using the Pomodoro Technique."}, +{"name":"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."}, +{"name":"gnome-text-editor","description":"Unofficial AppImage of the Gnome's Text Editor application."}, +{"name":"gnome-tweaks","description":"Unofficial, Experimental AppImage port of advanced GNOME 3 settings GUI."}, +{"name":"gnome-web","description":"Unofficial AppImage of Gnome Web aka Epiphany.."}, +{"name":"gnu-freedink","description":"Unofficial, a portable and enhanced version of the Dink Smallwood game engine."}, +{"name":"gnumeric","description":"Unofficial. An open-source spreadsheet program."}, +{"name":"go-pd","description":"A free easy to use pixeldrain.com go client pkg and CLI upload tool."}, +{"name":"go-pd-gui","description":"DRAINY is a free easy to use cross plattform upload tool for pixeldrain.com."}, +{"name":"go-spotify-cli","description":"Control Spotify with CLI commands."}, +{"name":"goanime","description":"A TUI tool to browse, stream, and download anime in English and Portuguese."}, +{"name":"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."}, +{"name":"godmode","description":"AI Chat Browser fast, full webapp access to ChatGPT/Claude/Bard/Bing/Llama2."}, +{"name":"godot","description":"Multi-platform 2D and 3D game engine with a feature-rich editor."}, +{"name":"gojq","description":"Pure Go implementation of jq."}, +{"name":"gokey","description":"A simple vaultless password manager in Go."}, +{"name":"goland","description":"Capable and Ergonomic Go IDE."}, +{"name":"goldencheetah","description":"Cycling Power Analysis Software."}, +{"name":"goldendict","description":"A feature-rich dictionary lookup program."}, +{"name":"goldendict-ng","description":"Unofficial, an advanced dictionary lookup program, supporting many formats."}, +{"name":"gooboxfileshare","description":"Goobox File Share App."}, +{"name":"goodls","description":"This is a CLI tool to download shared files and folders from Google Drive."}, +{"name":"goofcord","description":"Take control of your Discord experience with GoofCord."}, +{"name":"google-chrome","description":"Unofficial, Web Browser, Stable version."}, +{"name":"google-chrome-beta","description":"Unofficial, Web Browser, Beta version."}, +{"name":"google-chrome-dev","description":"Unofficial, Web Browser, Unstable version."}, +{"name":"google-docs","description":"Unofficial, Google Docs Desktop App made with electron."}, +{"name":"google-task-tauri","description":"An Unofficial Desktop Client for Google Tasks."}, +{"name":"google-tasks-desktop","description":"Unofficial Google Tasks Desktop Client."}, +{"name":"gooseberry","description":"A command line utility to generate a knowledge base from Hypothesis annotations."}, +{"name":"gopass","description":"The slightly more awesome standard unix password manager for teams."}, +{"name":"gopeed","description":"A modern download manager that supports all platforms."}, +{"name":"gopher64","description":"Unofficial AppImage of gopher64."}, +{"name":"gospel","description":"Poppler based fast pdf viewer written in PyQt5."}, +{"name":"gost-shred","description":"GOST R 50739-95 Data Sanitization Method (2 passes)."}, +{"name":"got","description":"Simple golang package and CLI tool to download large files faster than cURL and Wget!"}, +{"name":"gotimer","description":"A simple terminal based digital timer for Pomodoro."}, +{"name":"goto","description":"A simple terminal SSH manager that lists favorite SSH servers."}, +{"name":"goverlay","description":"An opensource project that aims to create a Graphical UI to help manage Linux overlays."}, +{"name":"gp-archive","description":"Archive profiling experiment data. This is part of \"am-utils\" suite."}, +{"name":"gp-collect-app","description":"Collect application performance profiling data. This is part of \"am-utils\" suite."}, +{"name":"gp-display-html","description":"Generate HTML reports from profiling data. This is part of \"am-utils\" suite."}, +{"name":"gp-display-src","description":"Display source code annotated with profiling data. This is part of \"am-utils\" suite."}, +{"name":"gp-display-text","description":"Display profiling data in plain text format. This is part of \"am-utils\" suite."}, +{"name":"gpg-tui","description":"CLI, manage your GnuPG keys with ease!"}, +{"name":"gpgfrontend","description":"A Cross-Platform OpenPGP Frontend Software."}, +{"name":"gping","description":"Ping, but with a graph."}, +{"name":"gpodder","description":"Unofficial AppImage of gPodder."}, +{"name":"gpredict","description":"A satellite tracking application."}, +{"name":"gprof","description":"Graph profile data. This is part of \"am-utils\" suite."}, +{"name":"gprofng","description":"Generation GNU application profiling tool. This is part of \"am-utils\" suite."}, +{"name":"gprofng-archive","description":"Experiment data. This is part of \"am-utils\" suite."}, +{"name":"gprofng-collect-app","description":"Data for the target. This is part of \"am-utils\" suite."}, +{"name":"gprofng-display-html","description":"HTML based directory structure. This is part of \"am-utils\" suite."}, +{"name":"gprofng-display-src","description":"Code and optionally. This is part of \"am-utils\" suite."}, +{"name":"gprofng-display-text","description":"Performance data in plain text. This is part of \"am-utils\" suite."}, +{"name":"gprofng-gmon","description":"Display or convert GNU gmon profiling data. This is part of \"am-utils\" suite."}, +{"name":"gpt-anywhere","description":"Use GPT anywhere with just one shortcut."}, +{"name":"gpu-screen-recorder","description":"Unofficial, AppImage of GPU Screen Recorder"}, +{"name":"gpu-t","description":"A comprehensive graphics card information utility for Linux."}, +{"name":"gpupad","description":"A flexible GLSL shader editor and IDE."}, +{"name":"gqrx","description":"Software defined radio receiver, SDR."}, +{"name":"grabscr","description":"Yet another screenshot maker."}, +{"name":"gradia","description":"Unofficial, screenshot/picture editor and uploader."}, +{"name":"gram-enhanced","description":"Unofficial, a powerful and modern source code editor."}, +{"name":"granatier","description":"Bomberman clone. This is part of \"kdegames\"."}, +{"name":"graphest","description":" A faithful graphing calculator."}, +{"name":"graphql-playground","description":"GraphQL IDE for better development workflows."}, +{"name":"graphs","description":"Unofficial. A simple, yet powerful tool that allows you to plot and manipulate your data with ease."}, +{"name":"graviton","description":"A simple code editor."}, +{"name":"greenlight","description":"Client for xCloud and Xbox home streaming made in Typescript."}, +{"name":"grep","description":"A string search utility. This is part of \"am-utils\" suite."}, +{"name":"gridcoin-research","description":"POS-based cryptocurrency."}, +{"name":"gridea","description":"A static blog writing client, 一个静态博客写作客户端."}, +{"name":"gridix","description":"A simple, fast, and secure cross-platform database management tool with Helix or Vim-style keybindings."}, +{"name":"gridplayer","description":"Play videos side-by-side."}, +{"name":"gridsync","description":"Synchronize local directories with Tahoe-LAFS storage grids."}, +{"name":"grinplusplus","description":"A C++ Grin Node & Wallet."}, +{"name":"grist-desktop","description":"Desktop Grist, packaged with Electron."}, +{"name":"gron","description":"Make JSON greppable! Transform JSON into discrete assignments to grep."}, +{"name":"gron.awk","description":"True JSON parser in pure Awk. fast with Gawk/Mawk/GoAWK."}, +{"name":"groot","description":"Graphical Editor to create BehaviorTrees."}, +{"name":"groups","description":"Print the groups a user is in. This is part of \"am-utils\" suite."}, +{"name":"gsequencer","description":"Tree based audio processing engine."}, +{"name":"gsubs","description":"Finds you the perfect subtitle match."}, +{"name":"gthumb","description":"Unofficial, image viewer and browser."}, +{"name":"guarda","description":"A secure, easy-to-use open source multi-platform cryptocurrency wallet."}, +{"name":"guglielmo","description":"A FM, DAB/DAB+ decoder using Qt and C++."}, +{"name":"guiscrcpy","description":"GUI integration for android screen mirroring system."}, +{"name":"guitar","description":"Graphical git client."}, +{"name":"gum","description":"A tool for glamorous shell scripts."}, +{"name":"gvim","description":"Edit text files."}, +{"name":"gwenview","description":"Unofficial. Fast and easy to use image viewer by KDE. ideal for displaying a collection of images."}, +{"name":"gxc-smart-contract-ide","description":"Gxchain smart contract IDE alpha."}, +{"name":"gyroflow","description":"Video stabilization using gyroscope data."}, +{"name":"hades-emu","description":"A Nintendo Game Boy Advance Emulator."}, +{"name":"hammer","description":"A simple tool for building stories."}, +{"name":"hamsket","description":"Free and Open Source messaging and emailing app."}, +{"name":"handbrake","description":"Unofficial, An open-source multiplatform video transcoder."}, +{"name":"handlr","description":"fork of the original handlr, with support for regular expressions."}, +{"name":"handy","description":"A free, open source, and extensible speech-to-text application that works completely offline."}, +{"name":"hangar","description":"A native Bluesky client for Linux, built with Rust, GTK4, and Libadwaita."}, +{"name":"hapee","description":"Best cross-platform downloader ever."}, +{"name":"harmonoid","description":"Plays & manages your music library. Looks beautiful & juicy. Playlists, visuals, synced lyrics, pitch shift, volume boost & more."}, +{"name":"haruna","description":"Unofficial, an open source media player built with Qt/QML and libmpv."}, +{"name":"hascard","description":"Flashcard TUI CLI with markdown cards."}, +{"name":"hashsum","description":"A universal tool for finding file duplicates and modified files."}, +{"name":"hastyheroes","description":"An endless 2D jumping game."}, +{"name":"hatari","description":"Unofficial, an Atari ST and STE emulator."}, +{"name":"haveno-reto","description":"Decentralized P2P exchange built on Monero and Tor."}, +{"name":"hctl","description":"A tool to control your Home Assistant devices from the command-line."}, +{"name":"hd","description":"Small hex dumper utility (with optional HexII output). This is part of \"am-utils\" suite."}, +{"name":"hdict","description":"Offline dictionary reader for StarDict, Slob, Mdict and Dictd dictionaries."}, +{"name":"hdrmerge","description":"Merge several raw images into a single DNG raw image."}, +{"name":"head","description":"Output the first part of files. This is part of \"am-utils\" suite."}, +{"name":"heat1d","description":"UI for testing the soilFluxex3D library, CRITERIA1D."}, +{"name":"heimer","description":"Simple cross-platform mind map, diagram, and note-taking tool."}, +{"name":"helio","description":"One music sequencer for all major platforms, desktop and mobile."}, +{"name":"helion","description":"A modern fast paced Doom FPS engine."}, +{"name":"helioslauncher","description":"Custom launcher for modded minecraft written in Electron."}, +{"name":"helium","description":"The Chromium-based web browser made for people, with love. Best privacy by default, unbiased ad-blocking, no bloat and no noise."}, +{"name":"helium-browser-enhanced","description":"About Unofficial AppImage of Helium."}, +{"name":"helix","description":"A post-modern modal text editor."}, +{"name":"helixnotes","description":"A local markdown note-taking app built with Tauri, SvelteKit, and Rust."}, +{"name":"henson","description":"A puppet manager for NationStates."}, +{"name":"hermesmessenger","description":"Desktop client version for Hermes Messenger."}, +{"name":"hero-display","description":"App for display on HERO robot."}, +{"name":"heroic-games-launcher","description":"A Native GOG and Epic Games Launcher for Linux."}, +{"name":"hexdump","description":"Display file contents in hexadecimal format. This is part of \"am-utils\" suite."}, +{"name":"hexinator","description":"Hex editor for reverse engineering & binary file analysis."}, +{"name":"hexoclient","description":"A cross-platform hexo client, build on electron."}, +{"name":"hexoeditor","description":"Markdown editor for Hexo built with Electron."}, +{"name":"heynote","description":"A dedicated scratchpad for developers."}, +{"name":"hiddify-next","description":"Auto-proxy client, supporting Sing-box, X-ray, TUIC, Hysteria."}, +{"name":"hide.me","description":"Hide.me CLI VPN client for Linux."}, +{"name":"hidpi-fixer","description":"Fractional scaling configuration on X11 desktops."}, +{"name":"highlite","description":"A RuneLite-esque Client for the game High Spell."}, +{"name":"hilbish","description":"The Moon-powered shell! A comfy and extensible shell for Lua fans!"}, +{"name":"himalaya","description":"CLI to manage emails."}, +{"name":"hmcl","description":"A Minecraft Launcher which is multi-functional, cross-platform and popular."}, +{"name":"hostid","description":"Print the numeric identifier for the current host. This is part of \"am-utils\" suite."}, +{"name":"hotspot","description":"The Linux perf GUI for performance analysis."}, +{"name":"houdoku","description":"Manga reader and library manager for the desktop."}, +{"name":"hp-15c-simulator","description":"Unofficial, a simulator for the HP-15C programmable scientific RPN calculator."}, +{"name":"hpack","description":"A fine tool to convert any data into C header."}, +{"name":"hprof-conv","description":"Converts Android HPROF heap dumps to standard Java HPROF format. This is part of \"platform-tools\"."}, +{"name":"hsinstall","description":"Pack a haskell project into a deployable directory structure."}, +{"name":"htmldoc","description":"HTML & Markdown Conversion Software to output PostScript and PDF."}, +{"name":"htop","description":"Unofficial, CLI utility to monitor system resources."}, +{"name":"httpie-desktop","description":"HTTPie for Desktop."}, +{"name":"httptoolkit","description":"HTTP Toolkit is an open-source tool for debugging, testing and building with HTTP."}, +{"name":"hugin","description":"Stitch photographs together."}, +{"name":"hugor","description":"A cross-platform, multimedia interpreter for Hugo adventure games."}, +{"name":"humanlog","description":"Logs for humans to read."}, +{"name":"huwinterpreter","description":"HuwCode interpreter."}, +{"name":"hw-probe","description":"Probe for hardware and upload result to the Linux hdw database."}, +{"name":"hydra","description":"Game launcher with its own embedded bittorrent client."}, +{"name":"hydrogen-music","description":"The advanced drum machine."}, +{"name":"hyper","description":"A terminal built on web technologies."}, +{"name":"hyperdex","description":"BarterDEX desktop app."}, +{"name":"hyperfine","description":"A command-line benchmarking tool."}, +{"name":"hyperionide","description":"Hyperion IDE for JIRA."}, +{"name":"hyperkeys","description":"Unleash you keyboard shorcuts."}, +{"name":"hyperspace","description":"A fluffy client for Mastodon in React."}, +{"name":"hypnotix","description":"Unofficial. An IPTV streaming application with support for live TV."}, +{"name":"i3","description":"Unofficial, A tiling window manager for X11."}, +{"name":"i3-auto-layout","description":"Automatic, optimal tiling for i3wm. Fork of dead version."}, +{"name":"i3lock-color","description":"The world's most popular non-default computer lockscreen."}, +{"name":"iagoncloudapp","description":"Iagon Cloud Application."}, +{"name":"ibus-rime","description":"Zhongzhou Yun input method, ibus-rime in AppImage format."}, +{"name":"icalingua++","description":"A client for QQ and more."}, +{"name":"icecat","description":"GNU IceCat is the GNU version of the Firefox web browser."}, +{"name":"icestudio","description":"A real gamechanger in the world of Open Source FPGAs."}, +{"name":"id","description":"Print real and effective user and group IDs. This is part of \"am-utils\" suite."}, +{"name":"identity","description":"Unofficial. Compare images and videos with one another to check for differences."}, +{"name":"idescriptor","description":"A free, open-source, and cross-platform iDevice management tool."}, +{"name":"igdm","description":"Desktop application for Instagram DMs."}, +{"name":"iheartradio-webapp","description":"Election WebApp for iHeartRadio."}, +{"name":"iloader","description":"User friendly sideloader."}, +{"name":"imagemagick-clang","description":"CLI to create, edit, compose, or convert digital images."}, +{"name":"imagemagick-gcc","description":"CLI to create, edit, compose, or convert digital images."}, +{"name":"imagemosaicwall","description":"Create an image based on a bunch of other images."}, +{"name":"imagine","description":"PNG/JPEG optimization."}, +{"name":"imapsyncclient","description":"An electron-vue project."}, +{"name":"imfile","description":"A full-featured download manager."}, +{"name":"imgbrd-grabber","description":"Very customizable imageboard/booru downloader."}, +{"name":"imgcat","description":"Display images and gifs in your terminal."}, +{"name":"imhex","description":"A Hex Editor for Reverse Engineers and Programmers."}, +{"name":"impact","description":"Music Management and Playback."}, +{"name":"impactor","description":"Feature rich iOS/tvOS sideloading application written in Rust. Formerly known as PlumeImpactor."}, +{"name":"implay","description":"A Cross-Platform Desktop Media Player, built on top of mpv and ImGui."}, +{"name":"impposter","description":"Post to my own development blog."}, +{"name":"impression","description":"Unofficial. Simple USB image writer application."}, +{"name":"inboxer","description":"Simple client for Google Inbox."}, +{"name":"infection-monkey","description":"An automated penetration test tool, security."}, +{"name":"infinitex","description":"Editor for academics with cryptography."}, +{"name":"infra-app","description":"Infra App for Linux."}, +{"name":"inkdown","description":"A WYSIWYG Markdown editor, improve reading and editing experience and generate your Markdown files."}, +{"name":"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."}, +{"name":"innerbreeze","description":"Guided breathing meditation app based on the Wim Hof breathing method."}, +{"name":"innoextract","description":"Unofficial, a tool to extract installers created by Inno Setup."}, +{"name":"insight","description":"The GUI front-end of GDB with Tcl/Tk."}, +{"name":"insomnia","description":"API client for GraphQL, REST, WebSockets and gRPC."}, +{"name":"insomnium","description":"A local API testing tool privacy-focused, fork of Kong/insomnia."}, +{"name":"install","description":"Copy files and set attributes. This is part of \"am-utils\" suite."}, +{"name":"instead","description":"Simple Text Adventures Interpreter."}, +{"name":"international-doom","description":"Small, functional and simple source ports, created with help, efforts and bits of code from people around the world."}, +{"name":"internxt-drive","description":"Electron React Boilerplate uses Electron and React."}, +{"name":"interstellar","description":"An app for Mbin/Lemmy/PieFed, connecting you to the fediverse."}, +{"name":"intiface","description":"Desktop Intiface Application."}, +{"name":"invoice-generator","description":"Invoice Generator in Electron."}, +{"name":"inxi","description":"A full featured CLI system information tool."}, +{"name":"ioquake3","description":"Unofficial, the de-facto OSS Quake 3 distribution."}, +{"name":"iota1k","description":"IOTA based messenging app."}, +{"name":"ipfs-desktop","description":"An unobtrusive and user-friendly app for IPFS on Linux."}, +{"name":"iptracker","description":"Desktop tool to keep track of your IP address and update you when it changes."}, +{"name":"iptvnator","description":"IPTV player application."}, +{"name":"iqpuzzle","description":"A challenging pentomino puzzle."}, +{"name":"irccloud-desktop","description":"IRCCloud Desktop Client."}, +{"name":"ireader","description":"Privacy-focused, open source novel reader app."}, +{"name":"iris","description":"Sony PlayStation 2 games emulator for Windows, Linux and macOS."}, +{"name":"iris-enhanced","description":"Unofficial, Sony PlayStation 2 emulator."}, +{"name":"ironwail","description":"High-performance QuakeSpasm fork QuakeSpasm. A modern, cross-platform Quake game engine based on FitzQuake."}, +{"name":"irpf2025","description":"Appimage não oficial do IRPF2025, declare seu imposto de renda (Ano-calendário 2024)."}, +{"name":"irpf2026","description":"Appimage não oficial do IRPF2026, declare seu imposto de renda (Ano-calendário 2025)."}, +{"name":"irscrutinizer","description":"Capture/generate/analyze/import/export infrared signals."}, +{"name":"isd","description":"Isd (interactive systemd) – a better way to work with systemd units."}, +{"name":"isle-editor","description":"Editor for Integrated Statistics Learning Environment lessons."}, +{"name":"isle-portable","description":"Unofficial, a portable version of LEGO Island (1997)."}, +{"name":"isle-portable-enhanced","description":"Unofficial, a portable version of LEGO Island (1997)."}, +{"name":"isoimagewriter","description":"Write an ISO Image to a USB Disk. This is part of \"kdeutils\"."}, +{"name":"isolate","description":"Lightweight image browser."}, +{"name":"itch.io","description":"A simple way to find and share indie games online for free."}, +{"name":"itgmania","description":"Unofficial, a fork of StepMania 5.1, an advanced cross-platform rhythm game for home and arcade use."}, +{"name":"itr2025","description":"Appimage não oficial do ITR2025, declare seu imposto dos seus imóveis rurais (Ano-calendário 2025)."}, +{"name":"itusb1-manager","description":"Control the ITUSB1 USB Test Switch."}, +{"name":"jabref","description":"Graphical Java application for managing BibTeX and biblatex (.bib) databases."}, +{"name":"jag","description":"Program for telemetry veiwing."}, +{"name":"james","description":"HTTP/HTTPS proxy built in Electron and React."}, +{"name":"jan","description":"FOSS Alternative to ChatGPT that runs 100% offline on your computer."}, +{"name":"janice","description":"A desktop app for viewing large JSON files."}, +{"name":"janus","description":"Simple text editor."}, +{"name":"jazz2","description":"Open-source reimplementation of Jazz Jackrabbit 2."}, +{"name":"jdappstreamedit","description":"A graphical Program to create and edit AppStream files."}, +{"name":"jddesktopentryedit","description":"A graphical Program to create and edit Desktop Entries."}, +{"name":"jdminecraftlauncher","description":"Unofficial classic styled Minecraft Launcher."}, +{"name":"jdmrpackinstaller","description":"Install Modrinth modpacks."}, +{"name":"jdnbtexplorer","description":"A Editor for Minecraft NBT files."}, +{"name":"jdownloader2","description":"JDownloader is a free download management tool with a huge community that makes downloading as easy and fast as it should be."}, +{"name":"jdreplace","description":"With jdReplace you can replace a text in all files of a directory."}, +{"name":"jdtextedit","description":"jdTextEdit is a powerful texteditor with a lot of features."}, +{"name":"jellyamp","description":"A client for listening to music from a Jellyfin server."}, +{"name":"jellyfin","description":"Media player. Stream to any device from your own server."}, +{"name":"jexiftoolgui","description":"Java/Swing graphical frontend for ExifTool."}, +{"name":"jfcord","description":"An Jellyfin rich presence client for Discord."}, +{"name":"jgenesis","description":"Sega Genesis, Sega CD, SNES, Master System, Game Gear emulator (GUI)."}, +{"name":"jgenesis-cli","description":"Sega Genesis, Sega CD, SNES, Master System, Game Gear emulator (CLI)."}, +{"name":"jgrasp","description":"An IDE with Visualizations for Improving Software Comprehensibility."}, +{"name":"jimud","description":"MUD client for ShadowMUD.com, based on webclient."}, +{"name":"jira-timer","description":"Menubar app for JIRA time logging."}, +{"name":"jitsi-meet","description":"Jitsi Meet Desktop App."}, +{"name":"jklubtv","description":"Chess Round Robin Tournament Manager."}, +{"name":"jless","description":"CLI JSON viewer designed for reading, exploring, and searching."}, +{"name":"jnv","description":"Interactive JSON filter using jq."}, +{"name":"joaldesktop","description":"Electron application boilerplate."}, +{"name":"join","description":"Of two files on a common field. This is part of \"am-utils\" suite."}, +{"name":"join-desktop","description":"A companion app for the Join website."}, +{"name":"joplin","description":"Note and to-do application with synchronization capabilities."}, +{"name":"joplin-beta","description":"A cross-platform note taking and to-do app."}, +{"name":"jottem","description":"A lean, low friction terminal app for managing markdown notes."}, +{"name":"journalv","description":"Journaling app for your days and dreams."}, +{"name":"joy2droidx","description":"Turn Android phones into virtual Xbox 360 controller."}, +{"name":"jpg-glitch-electron","description":"Desktop app for glitching images."}, +{"name":"jq","description":"Command-line JSON processor."}, +{"name":"jqp","description":"A TUI playground to experiment with jq."}, +{"name":"jreleaser","description":"The quick way to release your project."}, +{"name":"jscad-desktop","description":"Jscad desktop application."}, +{"name":"juggernaut","description":"Decentralized messaging and payments."}, +{"name":"julius","description":"An open source re-implementation of the Caesar III game."}, +{"name":"jumble","description":"A user-friendly Nostr client for exploring relay feeds."}, +{"name":"junest","description":"Arch Linux based distro that runs rootless on any other Linux distro."}, +{"name":"kade","description":"A desktop application for Q Methodology."}, +{"name":"kadium","description":"App for staying ontop of YouTube channels' uploads."}, +{"name":"kaffeine","description":"Unofficial, Media player with support for digital television (DVB-C/S/S2/T, ATSC, CI/CAM)."}, +{"name":"kage","description":"GUI for Metasploit Meterpreter and Session Handler."}, +{"name":"kaidan","description":"A QtQuick Jabber client."}, +{"name":"kajongg","description":"An ancient Chinese board game for 4 players. This is part of \"kdegames\"."}, +{"name":"kalba","description":"Sentence mining tool."}, +{"name":"kalc","description":"Complex numbers, 2d/3d graphing, arbitrary precision cli calculator."}, +{"name":"kalker","description":"Scientific calculator with math syntax for user-defined variables."}, +{"name":"kalm","description":"Teach you different breathing techniques. This is part of \"kdeutils\"."}, +{"name":"kando","description":"The Cross-Platform Pie Menu."}, +{"name":"kanji-dojo","description":"A multi-platform application for memorizing Japanese language."}, +{"name":"kanon","description":"Maturita GPJP designed for use with kanon web app."}, +{"name":"kanri","description":"Modern offline Kanban board app. Built with simplicity and user experience in mind."}, +{"name":"kapman","description":"Pac-Man clone. This is part of \"kdegames\"."}, +{"name":"karbonized","description":"💫 Awesome Image Generator for Code Snippets & Mockups"}, +{"name":"kardi","description":"Application for taking notes with capabilities to view all content from any device while keeping all data accessible by you only."}, +{"name":"kate","description":"A multi-document editor part of KDE. This is part of \"kdeutils\"."}, +{"name":"katomic","description":"Edu. game based around molecular geometry. This is part of \"kdegames\"."}, +{"name":"katvan","description":"A bare-bones editor for Typst files, with a bias for Right-to-Left editing."}, +{"name":"kbackup","description":"Back up your data. This is part of \"kdeutils\"."}, +{"name":"kblackbox","description":"A game of hide and seek. This is part of \"kdegames\"."}, +{"name":"kblocks","description":"Classic Tetris / falling blocks game. This is part of \"kdegames\"."}, +{"name":"kboard","description":"Terminal game to practice keyboard typing."}, +{"name":"kbounce","description":"Fill the field game. This is part of \"kdegames\"."}, +{"name":"kbreakout","description":"Destroy bricks without losing the ball. This is part of \"kdegames\"."}, +{"name":"kcalc","description":"Scientific Calculator. This is part of \"kdeutils\"."}, +{"name":"kcc","description":"KCC (Kindle Comic Converter) is a comic and manga converter for ebook readers."}, +{"name":"kcharselect","description":"Character Selector. This is part of \"kdeutils\"."}, +{"name":"kclock","description":"A universal clock application. This is part of \"kdeutils\"."}, +{"name":"kcov","description":"Unofficial, An AppImage of Kcov code coverage tool."}, +{"name":"kdebugsettings","description":"Edits displayed QLoggingCategory. This is part of \"kdeutils\"."}, +{"name":"kdeconnect","description":"Unofficial, A project that enables all your Android devices to communicate with each other."}, +{"name":"kdenlive","description":"A powerful Video Editor provided by KDE."}, +{"name":"kdenlive-daily","description":"A powerful Video Editor provided by KDE (daily builds)."}, +{"name":"kdenlive-enhanced","description":"Unofficial AppImage of Kdenlive Video Editor which is able to work on any linux distro."}, +{"name":"kdf","description":"view Disk Usage. This is part of \"kdeutils\"."}, +{"name":"kdialog","description":"a dialog utility. This is part of \"kdeutils\"."}, +{"name":"kdiamond","description":"Diamond game. This is part of \"kdegames\"."}, +{"name":"kdiskmark","description":"A simple open-source disk benchmark tool for Linux distros."}, +{"name":"keditbookmarks","description":"Bookmarks editor. This is part of \"kdeutils\"."}, +{"name":"keepassxc","description":"Port of the Windows application “Keepass Password Safe”."}, +{"name":"keepassxc-devel","description":"Port of the Windows application “Keepass Password Safe”, dev-edition."}, +{"name":"keepkey-desktop","description":"An all-in-one suite for using your KeepKey hardware wallet."}, +{"name":"keeweb","description":"Free cross-platform password manager compatible with KeePass."}, +{"name":"kega-fusion","description":"Unofficial, an emulator of classic Sega consoles, including SMS/GG, Genesis/Megadrive and add-ons."}, +{"name":"keibo-moneytracker-x86-64","description":"Track your income and expenses easily."}, +{"name":"kettleclient","description":"Client for Kettle REST service."}, +{"name":"kevedit","description":"ZZT Editor."}, +{"name":"keyboardclient","description":"Keyboard Settings Client."}, +{"name":"keycombiner","description":"Learn exactly the keyboard shortcuts you need."}, +{"name":"keymanager","description":"One-stop certificate app and certificate key management."}, +{"name":"keypunch","description":"Unofficial, keyboard writing speed test application. "}, +{"name":"keyrier-json","description":"A CLI/library/webapp to perfom SQL queries on JSON & CSV."}, +{"name":"keys","description":"Key management, signing and encryption."}, +{"name":"keysmith","description":"Generates tokens for your two-factor logins. This is part of \"kdeutils\"."}, +{"name":"kfind","description":"A search tool. This is part of \"kdeutils\"."}, +{"name":"kfourinline","description":"4 in row game. This is part of \"kdegames\"."}, +{"name":"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."}, +{"name":"kgoldrunner","description":"A game with a runner and gold. This is part of \"kdegames\"."}, +{"name":"kgpg","description":"A GnuPG frontend. This is part of \"kdeutils\"."}, +{"name":"kibi","description":"A text editor in ≤1024 lines of code, written in Rust."}, +{"name":"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."}, +{"name":"kid3","description":"Unofficial, efficient audio tagger that supports a large variety of file formats."}, +{"name":"kigo","description":"Go strategic board game for two players. This is part of \"kdegames\"."}, +{"name":"kiibohd-configurator","description":"Configuration utility for Input Club keyboards."}, +{"name":"kiku","description":"Play music from youtube on desktop. Supports local api, invidious and piped as source."}, +{"name":"kill","description":"Terminate a process. This is part of \"am-utils\" suite."}, +{"name":"killall","description":"Kill processes by name. This is part of \"am-utils\" suite."}, +{"name":"killbots","description":"Port of the classic console game Robots. This is part of \"kdegames\"."}, +{"name":"kimitzu-client","description":"Kimitzu Client."}, +{"name":"kindling-cli","description":"Kindle toolkit for dictionaries, books, comics."}, +{"name":"kinopio","description":"Thinking canvas for new ideas and hard problems."}, +{"name":"kiri-moto","description":"Browser-based Slicer for 3D Printing, CAM, Laser and mesh editor."}, +{"name":"kiriki","description":"A dice game. This is part of \"kdegames\"."}, +{"name":"kitsas","description":"Finnish bookkeeping software for small organizations."}, +{"name":"kitshn","description":"An unofficial client for the self-hosted Tandoor recipe management software."}, +{"name":"kitty","description":"Cross-platform, fast, feature-rich, GPU based terminal (also provides \"kitten\" CLI utility)."}, +{"name":"kitupiikki","description":"Bookkeeping software for small organizations."}, +{"name":"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."}, +{"name":"kjumpingcube","description":"A game of dices on a board. This is part of \"kdegames\"."}, +{"name":"klickety","description":"Color matching like SameGame. This is part of \"kdegames\"."}, +{"name":"klines","description":"Inspired by well known game of Color Lines. This is part of \"kdegames\"."}, +{"name":"klogg","description":"A smart interactive log explorer."}, +{"name":"km-recplayer","description":"Recorder and player of keyboard and mouse input (HID)"}, +{"name":"kmahjongg","description":"Mahjongg game. This is part of \"kdegames\"."}, +{"name":"kmines","description":"Classic mine game. This is part of \"kdegames\"."}, +{"name":"kmon","description":"Linux Kernel Manager and Activity Monitor."}, +{"name":"kmonad","description":"An advanced keyboard manager."}, +{"name":"kmymoney","description":"KMyMoney is a cross-platform personal finance manager build on KDE frameworks technologies for your desktop and notebook environment."}, +{"name":"knavalbattle","description":"Battle Ship game. This is part of \"kdegames\"."}, +{"name":"knetwalk","description":"Net constructing game. This is part of \"kdegames\"."}, +{"name":"knights","description":"Unofficial, KDE's chess game frontend."}, +{"name":"knowte","description":"Note taking."}, +{"name":"koboldcpp","description":"Simple 1-file way to run GGML and GGUF models with KoboldAI's UI."}, +{"name":"koishi-desktop","description":"Launch Koishi from your desktop."}, +{"name":"kolf","description":"Mini Golf game. This is part of \"kdegames\"."}, +{"name":"kollision","description":"Dodge red balls in the field. This is part of \"kdegames\"."}, +{"name":"kolourpaint","description":"Unofficial AppImage of KolourPaint."}, +{"name":"kondo","description":"Cleans dependencies and build artifacts from your projects."}, +{"name":"kongress","description":"A companion application for conferences. This is part of \"kdeutils\"."}, +{"name":"konquest","description":"Game of planets. This is part of \"kdegames\"."}, +{"name":"koodo-reader","description":"Modern ebook manager and reader with sync & backup capacities."}, +{"name":"kopia","description":"Cross-platform backup tool."}, +{"name":"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."}, +{"name":"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."}, +{"name":"kpat","description":"Klondike, Spider, Free Cell and other Solitaire. This is part of \"kdegames\"."}, +{"name":"krecorder","description":"An audio recording application. This is part of \"kdeutils\"."}, +{"name":"kreversi","description":"Reversi game. This is part of \"kdegames\"."}, +{"name":"krita","description":"A professional FREE and open source painting program, graphics."}, +{"name":"krita-devel","description":"A professional FREE open source painting program, dev-edition."}, +{"name":"krokiet","description":"App to find duplicates, empty folders, similar images etc. The successor of czkawka."}, +{"name":"kronos","description":"Unofficial, Sega Saturn emulator."}, +{"name":"krunker","description":"Krunker (.io) is a fast-paced first-person shooter game with pixel graphics."}, +{"name":"kshisen","description":"A game similar to Mahjongg. This is part of \"kdegames\"."}, +{"name":"ksirk","description":"A strategy board game. This is part of \"kdegames\"."}, +{"name":"ksnakeduel","description":"A snake race game. This is part of \"kdegames\"."}, +{"name":"ksnip","description":"Screenshot tool inspired by Windows Snipping Tool and made with Qt."}, +{"name":"kspaceduel","description":"Battleship with satellites in the space. This is part of \"kdegames\"."}, +{"name":"ksquares","description":"Win with most number of completed squares. This is part of \"kdegames\"."}, +{"name":"kstars","description":"Unofficial AppImage of KStars."}, +{"name":"ksudoku","description":"Sudoku game. This is part of \"kdegames\"."}, +{"name":"kteatime","description":"A handy timer for steeping tea. This is part of \"kdeutils\"."}, +{"name":"ktimer","description":"Countdown Launcher. This is part of \"kdeutils\"."}, +{"name":"ktorrent","description":"Unofficial AppImage of KTorrent."}, +{"name":"ktrip","description":"KTrip helps you navigate in public transport. This is part of \"kdeutils\"."}, +{"name":"ktuberling","description":"Simple Mr. Potato game for children. This is part of \"kdegames\"."}, +{"name":"kubeman","description":"The Hero that Kubernetes deserves."}, +{"name":"kubenav","description":"The navigator for your Kubernetes clusters right in your pocket."}, +{"name":"kubrick","description":"A logic game based on Rubik's Cube. This is part of \"kdegames\"."}, +{"name":"kunkun","description":"An open source, cross-platform, extensible app launcher."}, +{"name":"kure","description":"CLI password manager with sessions."}, +{"name":"kuro","description":"An elegant Microsoft ToDo desktop client for Linux, a fork of Ao."}, +{"name":"kwave","description":"A sound & audio editor designed for the KDE Desktop Environment."}, +{"name":"kweather","description":"A convergent weather application. This is part of \"kdeutils\"."}, +{"name":"kwrite","description":"KWrite is a text editor by KDE. This is part of \"kdeutils\"."}, +{"name":"labplot","description":"Data Visualization and Analysis software accessible to everyone and trusted by professionals."}, +{"name":"ladybird","description":"A truly independent web browser, using a novel engine based on web standards."}, +{"name":"lagrange","description":"Lagrange is a cross-platform client for browsing Geminispace (GUI Version)."}, +{"name":"laidout","description":"Laidout, desktop publishing software"}, +{"name":"laigter","description":"Tool to generate normal/specular/occlussion/parallax 2D maps."}, +{"name":"lambda-lantern","description":"A 3D game about functional programming patterns."}, +{"name":"lan-mouse","description":"Mouse & keyboard sharing via LAN."}, +{"name":"landrop","description":"Drop any files to any devices on your LAN."}, +{"name":"lanshare","description":"LAN file transfer app for any kind and size of files and folders."}, +{"name":"lapce","description":"Lightning-fast and Powerful Code Editor written in Rust."}, +{"name":"laravel-kit","description":"Easy Laravel application management."}, +{"name":"launcher","description":"Generic application's launcher."}, +{"name":"lazpaint","description":"Cross-platform image editor with raster and vector layers similar to Paint.Net written in Lazarus (Free Pascal)."}, +{"name":"lazygit","description":"Simple terminal UI for git commands."}, +{"name":"lazytyper","description":"LazyTyper desktop client (repackaged from the official AppImage, including built-in dependencies)."}, +{"name":"lba2-classic-community","description":"Unofficial, a community fork for evolving and modernizing LBA2 source port."}, +{"name":"lbry-desktop","description":"A browser and wallet for LBRY."}, +{"name":"lcedit","description":"Editor, unknown."}, +{"name":"ld","description":"Standalone Linker Compiler. This is part of \"am-utils\" suite."}, +{"name":"ld.bfd","description":"The GNU linker with BFD libraries. This is part of \"am-utils\" suite."}, +{"name":"ldtk","description":"Modern and efficient 2D level editor."}, +{"name":"leaflet","description":"POSP official notes application, written in flutter, beautiful, fast and secure."}, +{"name":"leapp","description":"The DevTool to access your cloud."}, +{"name":"led.custom.palette","description":"Design the lights on your Model01 with an ease."}, +{"name":"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."}, +{"name":"legcord","description":"Legcord is a custom client designed to enhance your Discord experience while keeping everything lightweight."}, +{"name":"legendary-kingdoms","description":"Implementation of Legendary Kingdoms Gamebooks in C++."}, +{"name":"lemon","description":"A tiny judging environment for OI contest based on Project_LemonPlus."}, +{"name":"lens","description":"App you need to take control of your Kubernetes clusters."}, +{"name":"leocad","description":"Create virtual LEGO models."}, +{"name":"leonflix","description":"Multi-platform desktop application for watching movies & TV shows."}, +{"name":"lepton","description":"Democratizing Code Snippets Management."}, +{"name":"lescovex","description":"Lescovex decentralized exchange, wallet and contract issuer."}, +{"name":"leshade","description":"An unofficial Reshade Installer for Linux."}, +{"name":"less","description":"A terminal based program for viewing text files. This is part of \"am-utils\" suite."}, +{"name":"lets-bend","description":"Harmonica tuner for learning bending techniques with real-time visual feedback."}, +{"name":"levior","description":"Converts web pages on-the-fly to the gemtext format."}, +{"name":"lexido","description":"A terminal assistant, powered by Generative AI."}, +{"name":"lf","description":"lf, as in \"list files\" is a terminal file manager written in Go."}, +{"name":"libassist","description":"Library Assistant."}, +{"name":"libation","description":"Unofficial, application for downloading and managing your Audible audiobooks."}, +{"name":"libertem","description":"Pixelated scanning transmission electron microscopy."}, +{"name":"librecad","description":"2D CAD program written in C++11 using the Qt framework."}, +{"name":"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."}, +{"name":"librepcb","description":"Design Schematics and PCBs."}, +{"name":"librescore","description":"The open source (GPLv3), serverless (IPFS-based), offline-first, and totally free alternative to musescore.com"}, +{"name":"libresprite","description":"Animated sprite editor & pixel art tool. Fork of the last GPLv2 commit of Aseprite."}, +{"name":"librewolf","description":"Firefox-based Web Browser focused on privacy, security, freedom."}, +{"name":"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."}, +{"name":"lightning","description":"Lightning Wallet Application."}, +{"name":"lightning-peach-wallet","description":"Wallet for lightning network"}, +{"name":"lightzone","description":"Unofficial AppImage of LighZone."}, +{"name":"liground","description":"A mordern Chess Variant Analysis GUI, game."}, +{"name":"liketaskmanager","description":"Process/performances monitor, CPU, RAM, Disks and Network."}, +{"name":"linedancer","description":"Arcade game and entry for Ludum Dare 35."}, +{"name":"lingueez","description":"Vocabulary trainer."}, +{"name":"link","description":"Call the link function to create a link to a file. This is part of \"am-utils\" suite."}, +{"name":"linked","description":"Daily journaling without distraction."}, +{"name":"linkora","description":"Link organizer for Android and desktop with self-hosted sync."}, +{"name":"linphone","description":"A libre SIP client."}, +{"name":"linux-intel-undervolt-gui","description":"Undervolting GUI for Intel Linux Systems."}, +{"name":"linuxaircombat","description":"Free open source combat flight simulator."}, +{"name":"linuxdeploy","description":"AppDir creation and maintenance tool. Featuring flexible plugin system."}, +{"name":"linuxdeployqt","description":"Convert a linux program to an AppDir or an AppImage."}, +{"name":"linuxqq","description":"New Linux QQ based on Electron."}, +{"name":"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."}, +{"name":"linuxwallpaper","description":"Bing wallpaper of the day."}, +{"name":"linwood-butterfly","description":"Powerful, minimalistic, cross-platform, note-taking app."}, +{"name":"liquidlauncher","description":"The official Minecraft launcher for LiquidBounce."}, +{"name":"lisk-desktop","description":"Lisk graphical user interface for desktop."}, +{"name":"listen.moe","description":"Official LISTEN.moe Desktop Client."}, +{"name":"listen1-desktop","description":"One for all free music in China."}, +{"name":"lite-xl","description":"A lightweight text editor written in Lua."}, +{"name":"liteide","description":"LiteIDE is a simple, open source, cross-platform Go IDE."}, +{"name":"litime","description":"A terminal literature clock telling time with quotes from literature."}, +{"name":"liveme-pro-tools","description":"Browse, search and manage accounts, replays and more."}, +{"name":"lmms","description":"FL Studio® alternative that allows you to produce music with the PC."}, +{"name":"lmstudio","description":"Experimenting with local and open-source Large Language Models."}, +{"name":"ln","description":"Make links between files. This is part of \"am-utils\" suite."}, +{"name":"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."}, +{"name":"local-browser","description":"Share your localhost in a unique way."}, +{"name":"localsend","description":"An open source cross-platform alternative to AirDrop"}, +{"name":"lockbook-cli","description":"The private, polished note-taking platform, CLI."}, +{"name":"lockbook-desktop","description":"The private, polished note-taking platform."}, +{"name":"lofi","description":"A mini Spotify player with WebGL visualizations."}, +{"name":"loginized","description":"Loginized Gnome GDM Login Theme Manager."}, +{"name":"logname","description":"Print user's login name. This is part of \"am-utils\" suite."}, +{"name":"logseq","description":"A privacy-first platform for knowledge management and collaboration."}, +{"name":"look","description":"Beginning with a given string. This is part of \"am-utils\" suite."}, +{"name":"looofix","description":"Minimalist Desktop Lofi Player To Relax and Enjoy."}, +{"name":"loopauditioneer","description":"Software for loop and cue handling in .wav files."}, +{"name":"lore-forge","description":"The app for writers & worldbuilders."}, +{"name":"lorien","description":"Infinite canvas drawing/whiteboarding app."}, +{"name":"losslesscut","description":"The swiss army knife of lossless video/audio editing."}, +{"name":"love","description":"The unquestionably awesome 2D game engine."}, +{"name":"lovelive","description":"A LoveLiver Music Player."}, +{"name":"lovesay","description":"Cowsay, but full of love and now a little rusty."}, +{"name":"lovr","description":"Lua Virtual Reality Framework."}, +{"name":"lowfi","description":"An extremely simple lofi player. CLI."}, +{"name":"lpub3d","description":"An LDraw Building Instruction Editor."}, +{"name":"ls","description":"List directory contents. This is part of \"am-utils\" suite."}, +{"name":"lsd","description":"The next gen ls command."}, +{"name":"lskat","description":"Fun and engaging card game for two players. This is part of \"kdegames\"."}, +{"name":"ltx-desktop","description":"An open-source desktop app for generating videos with LTX models."}, +{"name":"luanti","description":"Multiplayer infinite-world block sandbox."}, +{"name":"ludo","description":"Ludo is a work in progress libretro frontend written in go."}, +{"name":"lumi","description":"A tool to create and display interactive content with H5P."}, +{"name":"luna","description":"Manage npm dependencies through a modern UI."}, +{"name":"lunar-client","description":"Free Minecraft Client, a modpack for all versions of Minecraft."}, +{"name":"lunatask","description":"All-in-one encrypted to-do list, notebook, habit and mood tracker."}, +{"name":"lutris","description":"Unofficial. Install and play video games from all eras and from most gaming systems, by leveraging and combining existing emulators, WINE included."}, +{"name":"lutris-gamepad-ui","description":"A simple, TV-friendly, gamepad-navigable frontend for the Lutris game launcher on Linux."}, +{"name":"lvgl-editor","description":"LVGL Pro is a complete toolkit to build, test, share and ship embedded UIs efficiently."}, +{"name":"lx-music-desktop","description":"一个基于electron的音乐软件."}, +{"name":"lxtask","description":"Unofficial. A lightweight and desktop-independent task manager."}, +{"name":"lyricistant","description":"A helpful writing assistant for lyricists."}, +{"name":"m","description":"Data oriented programming language for game developers."}, +{"name":"macchina","description":"A system information frontend with an emphasis on performance."}, +{"name":"magento2-upgrade-gui","description":"Magento 2 Upgrade GUI."}, +{"name":"mages","description":"Multiplatform Matrix chat client (experimental CMP+rust app)."}, +{"name":"magicfountain","description":"A novel and screenwriting program."}, +{"name":"makagiga","description":"To-do manager, notepad, RSS reader and much more."}, +{"name":"make_f2fs","description":"Creates F2FS filesystems optimized for flash storage. This is part of \"platform-tools\"."}, +{"name":"make_f2fs_casefold","description":"Creates F2FS filesystems with case-insensitive filename support. This is part of \"platform-tools\"."}, +{"name":"makhber","description":"Makhber is a free application for Visualization and Analysis of Scientific Data."}, +{"name":"makoureactor","description":"Can edit field from Final Fantasy VII, PS & PC."}, +{"name":"malice","description":"GUI Programming Tool for iCE40."}, +{"name":"mame","description":"Unofficial AppImage of MAME emulator."}, +{"name":"manager-io","description":"Free Accounting Software for Linux, Server."}, +{"name":"mandelbulber2","description":"Explore trigonometric, hyper-complex and other 3D fractals."}, +{"name":"manga-tui","description":"Terminal-based manga reader and downloader with image support."}, +{"name":"mangadesk","description":"Terminal client for MangaDex."}, +{"name":"mangal","description":"Most advanced, yet simple CLI manga downloader in the universe!"}, +{"name":"mangayomi","description":"Free and open source application for reading manga, novels, and watching animes available."}, +{"name":"mangbandclient","description":"A free online multi-player realtime roguelike game."}, +{"name":"mangojuice","description":"It's a great alternative to GOverlay."}, +{"name":"mangoverlay","description":"Mangohud configuration tool."}, +{"name":"maniadrive","description":"Unofficial, an open-source clone of the popular racing game TrackMania."}, +{"name":"manta","description":"Flexible invoicing app with beautiful & customizable templates."}, +{"name":"mapeo","description":"Local-first mapping and monitoring in remote environments."}, +{"name":"mapic","description":"MaPic is a Image Viewer with AI Metadata Reader."}, +{"name":"mapollage","description":"Photo kml generator for Google Earth."}, +{"name":"mapton","description":"Some kind of map application."}, +{"name":"mariokart64recomp","description":"Unofficial, a native port of MarioKart 64, statically recompiled."}, +{"name":"mark-mind","description":"Multiplatform mind map and outliner editor with markdown support."}, +{"name":"markflowy","description":"Modern markdown editor application, Build fast and efficient workflows."}, +{"name":"markman","description":"A markdown editor."}, +{"name":"marktext","description":"A simple and elegant markdown editor multiplatform."}, +{"name":"marlin-conf","description":"Configuration tool for Marlin project."}, +{"name":"martian","description":"Websocket testing tool."}, +{"name":"marvin","description":"Open Source record and playback test automation for the web."}, +{"name":"master-pdf-editor","description":"Master PDF Editor allows you to create, edit, preview, encrypt, sign and print PDF documents."}, +{"name":"masterkey","description":"Unofficial AppImage of Master Key."}, +{"name":"mastervyrn","description":"MasterVyrn is a clean dedicated GBF loader."}, +{"name":"mate-system-monitor","description":"Unofficial, Process viewer and system resource monitor, from MATE."}, +{"name":"materialious","description":"Modern material design for Invidious."}, +{"name":"mathcha-notebook","description":"Desktop version of Mathcha, built for your privacy."}, +{"name":"matm","description":"Watch anime, movies, tv shows and read manga from comfort of the cli."}, +{"name":"mattermost-desktop","description":"Secure collaboration across entire software development."}, +{"name":"mawk","description":"And text processing language. This is part of \"am-utils\" suite."}, +{"name":"mayo","description":"3D CAD viewer and converter based on Qt + OpenCascade."}, +{"name":"mazesolver","description":"A tool which shows how different algorithms solves mazes."}, +{"name":"mbcord","description":"An Emby/Jellyfin rich presence client for Discord."}, +{"name":"mcfly","description":"Fly through your shell history. Great Scott!"}, +{"name":"mcpelauncher","description":"The main repo for the Linux Bedrock edition Minecraft launcher."}, +{"name":"mcpodcast","description":"Electron app for tasks around Podcast mp3 files."}, +{"name":"md5sum","description":"Compute and check MD5 message digest. This is part of \"am-utils\" suite."}, +{"name":"mdcat","description":"Command line, \"cat\" for markdown."}, +{"name":"mdl","description":"MDL wallet."}, +{"name":"mdsilo-app","description":"Lightweight Knowledge Base and Feed Reader."}, +{"name":"mdview","description":"Application that renders and displays Markdown files."}, +{"name":"measur","description":"Energy efficiency calculation app for use with industrial equipment."}, +{"name":"mechtype","description":"A lightweight app designed to elevate your typing experience by allowing you to enjoy custom soundtracks with every keystroke."}, +{"name":"mechvibes","description":"Play mechanical keyboard sounds as you type."}, +{"name":"media-downloader","description":"Cross-platform audio/video downloader."}, +{"name":"media-dupes","description":"Content duplicator for common media services like YouTube."}, +{"name":"media-hoarder","description":"Media Hoarder - THE media frontend for data hoarders and movie lovers"}, +{"name":"mediachips","description":"Manage your videos, add any metadata to them and play them."}, +{"name":"mediaelch","description":"Media Manager for Kodi."}, +{"name":"mediaharbor","description":"Cross-platform MediaHarbor"}, +{"name":"mediathekview","description":"Searches the online media libraries of various broadcasters."}, +{"name":"mednafen","description":"Unofficial AppImage. Mednafen is a portable, utilizing OpenGL and SDL, argument(command-line)-driven multi-system emulator."}, +{"name":"megaglest","description":"MegaGlest real-time strategy game engine (cross-platform, 3-d)."}, +{"name":"megaman64recomp","description":"Unofficial AppImage of Mega Man 64 Recompiled."}, +{"name":"meganimus","description":"A launcher for native and emulator games."}, +{"name":"mellowplayer","description":"Cloud music integration for your desktop."}, +{"name":"melodie","description":"Simple-as-pie music player."}, +{"name":"melonds","description":"DS emulator, sorta."}, +{"name":"melonds-enhanced","description":"Unofficial, AppImage of melonDS which is able to work on any linux distro."}, +{"name":"melonmix","description":"KH Melon Mix (DS Emulator) DS emulator, sorta DS emulator, sorta."}, +{"name":"memento","description":"A video player for studying Japanese."}, +{"name":"memocast","description":"Yet another elegant Wiz Note Client."}, +{"name":"memospot","description":"Memospot is a self-contained desktop version of Memos -a privacy-first, lightweight note-taking service."}, +{"name":"memoto","description":"DevOps oriented modeling tool."}, +{"name":"mendeley","description":"Search over 100 million cross-publisher articles and counting."}, +{"name":"menyoki","description":"Screen{shot,cast} and perform ImageOps on the command line."}, +{"name":"meow-sql","description":"An attempt to port HeidiSQL to C++/Qt."}, +{"name":"mercury","description":"Firefox fork with compiler optimizations and patches from Librewolf."}, +{"name":"mesa","description":"Experimental AppImage that lets you use the latest MESA with any binary on your system."}, +{"name":"meshlab","description":"Processor and editor of large 3D triangular meshes."}, +{"name":"meshmill","description":"The world's greatest open source 3D CAM software, maybe one day."}, +{"name":"meta-grabber","description":"A tool to grab metadata for tv shows and rename files on PC."}, +{"name":"mgba","description":"Game Boy Advance Emulator."}, +{"name":"mgba-enhanced","description":"Unofficial, Game Boy Advance Emulator."}, +{"name":"micropad","description":"µPad is an open digital note taking app."}, +{"name":"microsoft-edge","description":"Web Browser provided by Microsoft, Stable Edition."}, +{"name":"microsoft-edge-beta","description":"Web Browser provided by Microsoft, Beta Edition."}, +{"name":"microsoft-edge-dev","description":"Web Browser provided by Microsoft, Developer Edition."}, +{"name":"midori","description":"Surf lightly, quickly and safely with Midori Web Browser."}, +{"name":"miesimulatorgui","description":"MieSimulatorGUI by Virtual Photonics."}, +{"name":"mightymike","description":"Pangea Software's Mighty Mike, Power Pete for modern systems."}, +{"name":"migu","description":"Stream anime torrents, real-time with no waiting for downloads."}, +{"name":"milkytracker","description":"An FT2 compatible music tracker."}, +{"name":"mindmapp","description":"Electron application to draw mind maps."}, +{"name":"mine-craft.io","description":"Minecraft and even more!"}, +{"name":"minecraft-launcher","description":"Game downloader and launcher for Minecraft."}, +{"name":"minetime","description":"Smart scheduling assistant."}, +{"name":"mini-diary","description":"Simple and secure journal app."}, +{"name":"mini-qml","description":"Minimal Qt deployment."}, +{"name":"mini-vmac","description":"Unofficial, a miniature Macintosh 68K emulator."}, +{"name":"minififa","description":"OpenGL-powered third-person football, soccer game."}, +{"name":"minimal-podcasts-player","description":"Subscribe, listen and download your podcasts."}, +{"name":"minions","description":"A productive tool inspired by LaunchBar in macOS."}, +{"name":"miniter","description":"Rust based non-linear video editor for basic tasks."}, +{"name":"minizinc-ide","description":"A free and open-source constraint modeling language."}, +{"name":"mira-backup","description":"Mira Auto Database Backup app."}, +{"name":"mirage","description":"Matrix chat client for encrypted and decentralized communication."}, +{"name":"mission-center","description":"Monitor your CPU, Memory, Disk, Network and GPU usage."}, +{"name":"miteiru","description":"An open source Electron video player to learn Japanese."}, +{"name":"mixxx","description":"Unofficial, open source software for digital DJing."}, +{"name":"mjml-app","description":"The desktop app for MJML."}, +{"name":"mk","description":"Interactive Task Runner for Makefile."}, +{"name":"mkdir","description":"Make directories. This is part of \"am-utils\" suite."}, +{"name":"mke2fs","description":"Creates ext2/ext3/ext4 Linux filesystems. This is part of \"platform-tools\"."}, +{"name":"mkfifo","description":"Make FIFOs (named pipes). This is part of \"am-utils\" suite."}, +{"name":"mki3dgame","description":"A game of searching, in 3D stages."}, +{"name":"mknod","description":"Make block or character special files. This is part of \"am-utils\" suite."}, +{"name":"mktemp","description":"Create a temporary file or directory. This is part of \"am-utils\" suite."}, +{"name":"mkvtoolnix","description":"Matroska files creator and tools."}, +{"name":"mlv-app","description":"All in one MLV processing app, audio/video."}, +{"name":"mmapper","description":"Graphical MUD client for the game MUME."}, +{"name":"mmseqs2-search","description":"MMseqs2 app to run on your workstation or servers."}, +{"name":"moarperf","description":"Front-end for MoarVM's / Rakudo's profilers."}, +{"name":"mob","description":"A handsome Himalayan desktop client."}, +{"name":"mochi","description":"A simple markdown-powered SRS app."}, +{"name":"mockman","description":"Manage and start the mock servers on your local platform easily."}, +{"name":"mockoon","description":"Mock servers in seconds."}, +{"name":"modemu2k","description":"A Hayes AT-command modem emulator that bridges a serial interface to TCP/Telnet."}, +{"name":"moderndeck","description":"A beautiful, powerful Twitter client for desktop."}, +{"name":"modrinth","description":"Open source launcher that allows you to play your favorite mods."}, +{"name":"modv","description":"Modular audio visualisation powered by JavaScript."}, +{"name":"monit","description":"Desktop widgets displaying various information, in chinese."}, +{"name":"moniteur-admin","description":"The admin panel for the lightweight info screen solution."}, +{"name":"monokle","description":"Lets you create, analyze, and deploy YAML manifests."}, +{"name":"monoline","description":"Your personal micro journal."}, +{"name":"mood-fi","description":"App with 30+ lo-fi live streams between 8 different lo-fi types."}, +{"name":"moolticute","description":"Mooltipass crossplatform daemon/tools."}, +{"name":"moon-lander","description":"Moon Lander is a 2D game of gravity. Land your ship on the lading pad."}, +{"name":"moondeck-buddy","description":"A server-side part of the MoonDeck plugin for the SteamDeck."}, +{"name":"moonlight","description":"Stream games from your NVIDIA GameStream-enabled PC."}, +{"name":"moonplayer","description":"AIO video player to play Youtube, Bilibili... and local videos."}, +{"name":"moose","description":"An application to stream, cast and download torrents."}, +{"name":"moosync","description":"Music player capable of playing local audio or from Youtube/Spotify."}, +{"name":"more","description":"Display the contents of a file in a terminal. This is part of \"am-utils\" suite."}, +{"name":"motrix","description":"A full-featured download manager."}, +{"name":"motrix-next","description":"A full-featured download manager rebuilt from the ground up."}, +{"name":"mount","description":"Mount a filesystem. This is part of \"am-utils\" suite."}, +{"name":"mousai","description":"Unofficial. Application for identifying songs using libre utilities."}, +{"name":"mouzi","description":"A free, privacy-first automatic file organizer that quietly sorts your Downloads folder from the system tray."}, +{"name":"movie-monad","description":"Free and simple to use video player made with Haskell."}, +{"name":"moyu","description":"An online collaborative api interface management tool."}, +{"name":"mp3-tagger","description":"An Electron app to edit metadata of mp3 files."}, +{"name":"mp4grep","description":"CLI for transcribing and searching audio/video files."}, +{"name":"mpc-qt","description":"Media Player Classic Qute Theater."}, +{"name":"mpv","description":"Unofficial, A free, open source, and cross-platform media player, Multiple-choices."}, +{"name":"mqtt-explorer","description":"Explore your message queues."}, +{"name":"mqttcute","description":"An advanced desktop MQTT client for binary protocol development."}, +{"name":"mqttx","description":"MQTT 5.0 Desktop, CLI, and WebSocket client tools."}, +{"name":"mr.dclutterer","description":"Minimal App To Aggregate And Rename Files In Bulk."}, +{"name":"mrcode","description":"An opinionated editor based on VSCodium / VSCode."}, +{"name":"mrrss","description":"A modern, cross-platform, and free AI RSS reader."}, +{"name":"mrwriter","description":"Notetaking and blackboard replacement application. Inspired by Xournal. Written in C++/Qt."}, +{"name":"ms-365-electron","description":"Unofficial Microsoft 365 Desktop Wrapper made with Electron."}, +{"name":"mtcelledit","description":"Lightweight spreadsheet program."}, +{"name":"mudita-center","description":"Mudita Center Electron App."}, +{"name":"mudlet","description":"Mudlet is a platform for gaming and enhancing game-play primarily with MUDs."}, +{"name":"muffon","description":"Music streaming browser,retrieves audio, video and metadata."}, +{"name":"mullvad-browser","description":"A Tor-based Web Browser."}, +{"name":"multimc","description":"A Minecraft launcher."}, +{"name":"munt","description":"The payment system of the future."}, +{"name":"mupdf","description":"Lightweight PDF, XPS, and E-book viewer."}, +{"name":"muse","description":"A digital audio workstation with support for both Audio and MIDI."}, +{"name":"museeks","description":"A simple, clean and cross-platform music player."}, +{"name":"musescore","description":"An open source and free music notation software."}, +{"name":"music-assistant","description":"The desktop companion app for Music Assistant."}, +{"name":"music-blocks","description":".Exploring Math, Music, and Programming."}, +{"name":"music-kitten","description":"Use your own soundtrack in Counter-Strike."}, +{"name":"music-player","description":"Desktop Electron app for playing and downloading music."}, +{"name":"music-quiz","description":"Jepardy like game, guess as many songs as possible."}, +{"name":"musicalypse","description":"Audio/Music player and server built with Web technologies."}, +{"name":"mutool","description":"All purpose tool for dealing with PDF files."}, +{"name":"muwire","description":"A file sharing client for I2P."}, +{"name":"mv","description":"Move (rename) files. This is part of \"am-utils\" suite."}, +{"name":"my-budget","description":"Offline cross-platform budgeting solution built with Electron."}, +{"name":"my-jira","description":"A lite jira desktop."}, +{"name":"mybelka","description":"Accounting system written in C++ with QTCore."}, +{"name":"mycroft-ai","description":"Qt5 Frontend for Mycroft Ai"}, +{"name":"mycrypto","description":"MyCrypto web and electron app."}, +{"name":"mypaint","description":"Simple drawing and painting program, graphics."}, +{"name":"mystiq","description":"Qt5/C++ FFmpeg Media Converter."}, +{"name":"mytonwallet","description":"Feature-rich web wallet and browser extension for TON Network."}, +{"name":"n3h","description":"Nodejs implementation of holochain networking / p2p backend process."}, +{"name":"naev","description":"A 2d action/rpg space game that combines elements from the action."}, +{"name":"nami","description":"A clean and tidy decentralized package manager."}, +{"name":"nanokvm-usb","description":"Finger-sized 4K USB KVM for Server/SBCs."}, +{"name":"nanosaur","description":"Pangea Software’s game, adventure of a cybernetic dinosaur."}, +{"name":"nanosaur2","description":"Pangea Software’s Nanosaur II for modern systems."}, +{"name":"nanovault","description":"Wallet for interacting with Nano."}, +{"name":"nap","description":"Code spippets in your terminal."}, +{"name":"naruto-arena","description":"Naruto-based online multiplayer strategy game."}, +{"name":"nault-bin","description":"Official Nault AppImage client."}, +{"name":"nautune","description":"Poseidon's Music Player for Jellyfin."}, +{"name":"nauz-file-detector","description":"Nauz File Detector is a portable linker/compiler/packer identifier utility."}, +{"name":"navi","description":"An interactive cheatsheet tool for the command-line."}, +{"name":"nazuna","description":"Download Twitter videos using your terminal!"}, +{"name":"nblood","description":"Unofficial, blood port based on EDuke32."}, +{"name":"ncsa-mosaic","description":"One of the first graphical web browsers."}, +{"name":"ncspot","description":"Cross-platform ncurses Spotify client written in Rust, inspired by ncmpc and the likes."}, +{"name":"neanes","description":"A scorewriter for notating Byzantine chant in Byzantine notation."}, +{"name":"negpy","description":"Tool for processing film negatives."}, +{"name":"neko","description":"Neko is a cross-platform cursor-chasing cat."}, +{"name":"neko-project-ii-kai","description":"Unofficial, a PC-9801 series emulator."}, +{"name":"neochat","description":"Unofficial AppImage of NeoChat."}, +{"name":"neohtop","description":"htop on steroids."}, +{"name":"neon","description":"Light wallet for NEO blockchain."}, +{"name":"neovide","description":"No Nonsense Neovim Client in Rust"}, +{"name":"nepaliunicode","description":"An Unicode Converter app."}, +{"name":"nerdfetch","description":"A POSIX *nix fetch script using Nerdfonts."}, +{"name":"nerimity-desktop","description":"Electron desktop app for Nerimity."}, +{"name":"nest-desktop","description":"A web-based GUI application for NEST Simulator."}, +{"name":"nestopia","description":"Unofficial, Cross-platform Nestopia NES emulator core with a GUI."}, +{"name":"netbeans","description":"Apache NetBeans installers."}, +{"name":"netpad","description":"A cross-platform C# editor and playground."}, +{"name":"netpanzer","description":"Online multiplayer tactical warfare game for fast action combat."}, +{"name":"neverball","description":"Unofficial, tilt the floor to roll a ball through an obstacle course before time runs out."}, +{"name":"newlogic","description":"A circuit builder."}, +{"name":"newsflash","description":"Unofficial. RSS reader with support for local and web RSS feed."}, +{"name":"newton-adventure","description":"A 2D game with a twist, player can rotate gravity at 360°."}, +{"name":"nexen","description":"Multi-system emulator (NES, SNES, GB, GBA, PCE, SMS/GG, WS)."}, +{"name":"nexis","description":"Linux & macOS system optimizer and monitor. Qt6 fork of Stacer with GPU monitoring, dark/light themes, and active maintenance."}, +{"name":"nextcloud","description":"Client-server software for creating & using file hosting services."}, +{"name":"nextplayer","description":"A blue-ray player, originally named TheNewPlayerFree."}, +{"name":"nexus-mods","description":"A mod installer, creator and manager for all your popular games."}, +{"name":"nexus-wallet","description":"Official interface layers of the Nexus Software Stack."}, +{"name":"nfctools","description":"A library which allows userspace application access to NFC devices."}, +{"name":"nfsiise","description":"Unofficial, Need For Speed™ II SE, cross-platform wrapper with 3D acceleration and TCP protocol."}, +{"name":"ngpost","description":"Usenet poster for binaries developped in C++/QT."}, +{"name":"ngrev","description":"Reverse Engineering for Angular."}, +{"name":"nheko","description":"Desktop client for Matrix."}, +{"name":"nice","description":"Run a program with modified scheduling priority. This is part of \"am-utils\" suite."}, +{"name":"niffler","description":"A grin gui wallet."}, +{"name":"nightpdf","description":"Dark Mode PDF Reader built using Electron and PDF.js."}, +{"name":"nightwave-plaza-electron","description":"https://plaza.one/ radio station desktop app."}, +{"name":"nimbus-weather","description":"A beautiful weather app built using the Dark Sky API."}, +{"name":"nine","description":"Nine. is an open source desktop application for managing rental properties."}, +{"name":"nitch","description":"Incredibly fast system fetch written in nim."}, +{"name":"nitrogen","description":"Unofficial AppImage of Nitrogen."}, +{"name":"nitrokey","description":"Manage your Nitrokey devices."}, +{"name":"nix-bucks","description":"A money tracker. Your income and expenses at your control. Finance."}, +{"name":"nix-portable","description":"Use nix on any linux system, rootless and configuration free."}, +{"name":"nixnote","description":"Use with Evernote to remember everything."}, +{"name":"nl","description":"Number lines of files. This is part of \"am-utils\" suite."}, +{"name":"nm","description":"From object files. This is part of \"am-utils\" suite."}, +{"name":"nmeasimulator","description":"NMEA sentence generator utility to broadcast via TCP."}, +{"name":"nnn","description":"n³ The unorthodox terminal file manager"}, +{"name":"no-fwl","description":"NoFWL Desktop Application."}, +{"name":"nodeflow","description":"An Editor for creating simple or complex OCR workflows."}, +{"name":"nodes","description":"A new way to create with code."}, +{"name":"nohup","description":"Run a command immune to hangups, with output to a. This is part of \"am-utils\" suite."}, +{"name":"noi","description":"🚀 an AI-enhanced, customizable browser designed to streamline your digital experience."}, +{"name":"nomacs","description":"Unofficial, nomacs is a free, open source image viewer, which supports multiple platforms."}, +{"name":"nootka","description":"Application for learning musical score notation."}, +{"name":"nora","description":"An elegant music player built using Electron and React."}, +{"name":"normcap","description":"OCR powered screen-capture tool to capture info instead of images."}, +{"name":"nosqlbooster","description":"Essential admin GUI for mongodb."}, +{"name":"notable","description":"The Markdown-based note-taking app that doesn't suck."}, +{"name":"notedown","description":"Note taking with react + rust."}, +{"name":"notekit","description":"A GTK3 hierarchical markdown notetaking app with tablet support."}, +{"name":"notemaster","description":"Note-taking app to help boost productivity."}, +{"name":"notepad++","description":"Unofficial Appimage of Notepad++, with WINE prefix."}, +{"name":"notepadnext","description":"A cross-platform, reimplementation of Notepad++."}, +{"name":"noter","description":"Simple serial terminal application."}, +{"name":"notes","description":"Note-taking application, write down your thoughts."}, +{"name":"notes-nc","description":"Cross-platform Notes desktop application for markdown notes."}, +{"name":"noteshrink-qt","description":"GUI for noteshrink.py with preview and pre-processing opt."}, +{"name":"notesnook","description":"Private note-taking app that encrypts everything on client side."}, +{"name":"notify-send","description":"A program to send desktop notifications. This is part of \"am-utils\" suite."}, +{"name":"novelwriter","description":"Plain text editor designed for writing novels, supports a minimal markdown-like syntax for formatting text."}, +{"name":"npm","description":"Package manager for Node.js dependencies and modules. This is part of \"node\"."}, +{"name":"nproc","description":"Print the number of processing units available. This is part of \"am-utils\" suite."}, +{"name":"npx","description":"Runs commands from npm packages without manual installation. This is part of \"node\"."}, +{"name":"nrf-connect","description":"Framework for desktop apps for development kits."}, +{"name":"nsz","description":"Unofficial, Homebrew compatible NSP/XCI compressor/decompressor."}, +{"name":"ntfydesktop","description":"A desktop client for ntfy. Allows you to subscribe to topics from any ntfy server and recieve notifications natively on the desktop."}, +{"name":"ntsc-rs","description":"Free, open-source VHS effect. Standalone application + plugin (After Effects, Premiere, and OpenFX)."}, +{"name":"nu","description":"A new type of shell."}, +{"name":"nuclear","description":"Streaming music player that finds free music for you."}, +{"name":"nuclia","description":"A low-code API to build an AI multi-language semantic search engine."}, +{"name":"nuclino","description":"Bring knowledge, docs, and projects together in one place."}, +{"name":"nudelta","description":"Open source NuPhy Console alternative."}, +{"name":"nugget-doom","description":"Nugget Doom is a Doom game source port forked from Woof! with additional features."}, +{"name":"nugget-doom-enhanced","description":"Unofficial, a Doom source port forked from Woof! with additional features."}, +{"name":"numara","description":"Simple notepad calculator built on Electron."}, +{"name":"numfmt","description":"From/to human-readable strings. This is part of \"am-utils\" suite."}, +{"name":"nunchuk","description":"Desktop bitcoin wallet with multisig, hardware, nfc and air-gapped key support."}, +{"name":"nvim","description":"NeoVim, Vim fork focused on extensibility and usability."}, +{"name":"nvim-nightly","description":"NeoVim, Vim fork, the most recent development build."}, +{"name":"nvtop","description":"GPUs process monitoring for AMD, Intel and NVIDIA."}, +{"name":"nx-software-center","description":"A GUI to install and manage AppImages, Nitrux OS."}, +{"name":"nxengine-evo","description":"A somewhat upgraded/refactored version of NXEngine."}, +{"name":"nxengine-evo-enhanced","description":"Unofficial, a somewhat upgraded/refactored version of NXEngine."}, +{"name":"nxshell","description":"An easy to use new terminal."}, +{"name":"nyaa","description":"A nyaa.si tui tool for browsing and downloading torrents."}, +{"name":"nyan","description":"CLI, colored \"cat\" command."}, +{"name":"nychess","description":"A python Chess Engine and AI."}, +{"name":"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."}, +{"name":"nym-wallet","description":"Use the Nym network and take advantage of it."}, +{"name":"nyrna","description":"Suspend games and applications."}, +{"name":"objcopy","description":"Translate object files. This is part of \"am-utils\" suite."}, +{"name":"objdump","description":"From object files. This is part of \"am-utils\" suite."}, +{"name":"obliqoro","description":"A cross-platform tauri gui where Oblique Strategies meets Pomodoro."}, +{"name":"oblivion-desktop","description":"Unofficial Warp Client, Oblivion provides a secure, optimised internet access."}, +{"name":"obs-studio","description":"Unofficial. Software for video recording and live streaming."}, +{"name":"obsidian","description":"A powerful knowledge base, plain text Markdown files."}, +{"name":"obsidian-cli","description":"Interact with Obsidian in the terminal. Open, search, create, update, move and delete notes!"}, +{"name":"obsidianirc","description":"Modern IRC Client for the web, desktop and mobile."}, +{"name":"ocat","description":"OpenCore Auxiliary Tools, editing config.plist files for Acidanthera."}, +{"name":"ocenaudio","description":"Unofficial. Multiplatform Audio Editor."}, +{"name":"ocrmypdf","description":"Unofficial AppImage of OCRmyPDF."}, +{"name":"ocvvid2fulldome","description":"Take flat videos, distort them to fit fulldome."}, +{"name":"ocvwarp","description":"Warping images and videos for planetarium fulldome display."}, +{"name":"od","description":"Dump files in octal and other formats. This is part of \"am-utils\" suite."}, +{"name":"odamex","description":"Unofficial, Online Multiplayer Doom port with a strong focus on the original gameplay while providing a breadth of enhancements."}, +{"name":"odicto","description":"An offline English dictionary app for desktop."}, +{"name":"oh","description":"A new Unix shell."}, +{"name":"oh-mymd","description":"A markdown editor,support cloud sync."}, +{"name":"okteta","description":"Unofficial. Hex editor for viewing and editing the raw data of files."}, +{"name":"olive","description":"Free open-source non-linear video editor, nightly build."}, +{"name":"olive-legacy","description":"Free non-linear video editor, version 0.1."}, +{"name":"ollama","description":"Get up and running with Llama 3, Mistral, Gemma, and other LLMs."}, +{"name":"omekasy","description":"Command line application that converts alphanumeric characters to various styles 𝚍𝚎𝚏𝚒𝚗𝚎𝚍 𝚒𝚗 𝚄𝚗𝚒𝚌𝚘𝚍𝚎."}, +{"name":"omikuji","description":"Qt/QML based game launcher for Linux."}, +{"name":"ommpfritt","description":"Semantic, procedural, non-destructive vector modelling."}, +{"name":"omniget","description":"Media downloader from various websites."}, +{"name":"omnipull","description":"Pull Everything. Everywhere. OmniPull is a powerful, cross-platform download manager."}, +{"name":"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."}, +{"name":"omnispeak","description":"Re-implementation of \"Commander Keen in Goodbye Galaxy\"."}, +{"name":"one-gpt","description":"Aggregate ChatGPT official version, Wenxin Yiyan, Poe, chatchat."}, +{"name":"oneanime","description":"A clean, ad-free anime viewing app. A third-party client for Anime1 with subtitles and a Material You-compliant interface."}, +{"name":"onedrive-gui","description":"Microsoft OneDrive Client GUI."}, +{"name":"onefetch","description":"Command-line Git information tool."}, +{"name":"onekey-wallet","description":"Open source crypto wallet."}, +{"name":"onenote","description":"P3X Onenote Linux."}, +{"name":"oneweb","description":"OneWeb - free, private and secure web browser! POLSKA GUROM."}, +{"name":"onionhop","description":"Privacy-first Desktop app that routes your traffic through Tor - Anonymous browsing made simple."}, +{"name":"onionmediax","description":"OnionMedia X. Convert and download videos and music quickly and easily."}, +{"name":"onlyoffice","description":"Office Suite with full support for MS Windows formats and cloud."}, +{"name":"onlyrefs","description":"Organize all of your references, notes, bookmarks and more."}, +{"name":"onnx2bnn","description":"Binary neural networks inference framework for mobile platform."}, +{"name":"onnx2daq","description":"Wrapper of NNAPI, \"DNNLibrary\" is for \"daquexian's NNAPI libs."}, +{"name":"onshape","description":"Onshape desktop app, web application shell."}, +{"name":"onthespot","description":"A GUI music downloader for Apple Music, Bandcamp, Deezer, Qobuz, Spotify, Tidal, and More."}, +{"name":"onyx","description":"Decentralized messaging application based on PSS."}, +{"name":"opal","description":"Plays relaxing music in the background."}, +{"name":"open-ai-translator","description":"Browser extension for translation based on ChatGPT API."}, +{"name":"open-markup-editor","description":"Pluggable markup editor."}, +{"name":"open-pencil","description":"AI-native design editor. Open-source Figma alternative."}, +{"name":"open-typer","description":"A free and open source typing tutor program."}, +{"name":"open-video-downloader","description":"A cross-platform GUI for youtube-dl made in Electron."}, +{"name":"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."}, +{"name":"openapi-tui","description":"Terminal UI to list, browse and run APIs defined with openapi."}, +{"name":"openarena","description":"Violent & sexy, multiplayer first person shooter game, ioquake3."}, +{"name":"openaudible","description":"Download and manage your Audible audiobooks."}, +{"name":"openblok","description":"A customizable falling block puzzle game like tetris."}, +{"name":"openboardview","description":"Unofficial AppImage of Open Board Viewer."}, +{"name":"openbor","description":"Ultimate 2D side scrolling engine for beat em ups, shooters..."}, +{"name":"openclaw","description":"Unofficial, reimplementation of Captain Claw (1997) platformer."}, +{"name":"opencloud","description":"Desktop application to synchronize files from OpenCloud with your computer."}, +{"name":"opencode","description":"The open source coding agent."}, +{"name":"opencode-cli","description":"Unofficial AppImage of the opencode CLI utility. The open source coding agent."}, +{"name":"opencode-desktop","description":"Desktop application for opencode, the open source coding agent."}, +{"name":"opencode-enhanced","description":"Unofficial, improved AppImage of opencode, the open source coding agent."}, +{"name":"opencomic","description":"Comic and Manga reader, written with Node.js and using Electron."}, +{"name":"opengothic","description":"Unofficial AppImage of OpenGothic."}, +{"name":"openhv","description":"A mod for OpenRA based on the Hard Vacuum, game."}, +{"name":"openjazz","description":"Unofficial, open-source version of the classic Jazz Jackrabbit™ games."}, +{"name":"openlara","description":"Unofficial, classic Tomb Raider open-source engine."}, +{"name":"openlens","description":"OpenLens Binary Build Repository."}, +{"name":"openlibextended","description":"An Open source app to download and read books from shadow library (Anna’s Archive)."}, +{"name":"openloco","description":"Unofficial, an open source re-implementation of Chris Sawyer's Locomotion."}, +{"name":"openmsx","description":"Unofficial, the MSX emulator that aims for perfection."}, +{"name":"openmw","description":"OpenMW is an open-source open-world RPG game engine that supports playing Morrowind."}, +{"name":"openop2","description":"Re-implementation of the game Outpost 2, using the OpenRA engine."}, +{"name":"openosrs-launcher","description":"Open-source client for Old School RuneScape."}, +{"name":"openpilot-workbench","description":"Fix problems with EON/Openpilot."}, +{"name":"openra-dune","description":"Real-time strategy game engine, MOD Dune 2000."}, +{"name":"openra-enhanced","description":"Unofficial AppImage of OpenRA containing all 3 game modes."}, +{"name":"openra-red-alert","description":"Real-time strategy game engine, MOD Red Alert."}, +{"name":"openra-tiberian-dawn","description":"Real-time strategy game engine penGL, MOD TD."}, +{"name":"openramodsdk","description":"Dev Kit for building your own games using the OpenRA engine."}, +{"name":"openrct2","description":"Re-implementation of RollerCoaster Tycoon 2 (RCT2), expanding the game with new features."}, +{"name":"openrct2-enhanced","description":"Unofficial, Re-implementation of RollerCoaster Tycoon 2 (RCT2), expanding the game with new features."}, +{"name":"openrgb","description":"RGB lighting control that doesn't depend on manufacturer software."}, +{"name":"openscad","description":"The Programmers Solid 3D CAD Modeller."}, +{"name":"openscreen","description":"Create stunning screen recordings for free. Open-source, no subscriptions, no watermarks, and free for commercial use. An alternative to Screen Studio."}, +{"name":"openshot","description":"A powerful Video Editor."}, +{"name":"openstickies","description":"Sticky notes for your desktop. Simple, fast, private. Drop files, paste screenshots, set reminders, keep things visible where you work."}, +{"name":"openstream-music","description":"The OpenStream Music source."}, +{"name":"openswe1r","description":"Racer."}, +{"name":"openterface-qt","description":"Openterface Mini-KVM."}, +{"name":"opentodolist","description":"A note and task managing application."}, +{"name":"opentrons","description":"Opentrons desktop application."}, +{"name":"openttd","description":"Unofficial, an open source simulation game based upon Transport Tycoon Deluxe."}, +{"name":"opentubex","description":"A FreeTube fork with extra features for privacy."}, +{"name":"opentyrian2000","description":"Unofficial, an open-source port of the DOS shoot-em-up Tyrian."}, +{"name":"openxcom","description":"Enemy Unknown licensed under the GPL and written in C++ / SDL."}, +{"name":"openxcom-extended","description":"OXCE, extended version of openXcom provide better mod support, QoL improvements, new game mechanics, improved and new GUIs."}, +{"name":"openxray","description":"Unofficial AppImage of OpenXRay."}, +{"name":"opera","description":"Unofficial. Fast and secure web browser, Stable version."}, +{"name":"opera-beta","description":"Unofficial. Fast and secure web browser, Beta version."}, +{"name":"opera-dev","description":"Unofficial. Fast and secure web browser, Developer version."}, +{"name":"optiimage","description":"Unofficial, optimize your images with OptiImage, a useful image compressor that supports PNG, JPEG, WebP and SVG file types."}, +{"name":"orange","description":"Cross-platform local file search engine."}, +{"name":"oras","description":"OCI registry client managing content like artifacts, images, packages."}, +{"name":"orca-note","description":"A note taking application that is good both for outlining and long-form writing."}, +{"name":"orcaslicer","description":"G-code generator for 3D printers, Stable release."}, +{"name":"orcaslicer-devel","description":"G-code generator for 3D printers, the most recent development build (nightly, alpha, beta, rc)."}, +{"name":"osrs-tools","description":"Several tools for OSRS."}, +{"name":"ossia-score","description":"Sequencer for audio-visual artists for interactive shows."}, +{"name":"ostara","description":"To monitor and interact with Spring Boot Applications via Actuator."}, +{"name":"osu","description":"A free-to-win rhythm game. Rhythm is just a click away!"}, +{"name":"ots","description":"Share end-to-end encrypted secrets with others via a one-time URL."}, +{"name":"ottomatic","description":"Pangea Software’s Otto Matic, a game of robots."}, +{"name":"outer-wilds-mod-manager","description":"The mod manager for the Outer Wilds Mod Loader"}, +{"name":"outline-client","description":"Lean on the Cordova and Electron frameworks."}, +{"name":"outline-manager","description":"Create and manage access to Outline servers."}, +{"name":"overbind","description":"A utility that allows binding keyboard buttons to virtual Xbox360 controller joystick outputs."}, +{"name":"overlayed","description":"A modern, open-source, and free voice chat overlay for Discord."}, +{"name":"oversteer","description":"Unofficial, Steering Wheel Manager for Linux."}, +{"name":"overte","description":"Overte open source virtual worlds platform."}, +{"name":"ovideo","description":"Video Editor."}, +{"name":"ow-mod-man","description":"The mod manager for the Outer Wilds Mod Loader."}, +{"name":"owallet","description":"A comprehensive Ontology desktop wallet."}, +{"name":"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."}, +{"name":"owte","description":"Anime girl dancing on your screen."}, +{"name":"oxen-gui-wallet","description":"Oxen electron GUI wallet."}, +{"name":"p2p-chat","description":"P2P LAN chatting and file sharing tool."}, +{"name":"p2pderivatives","description":"Enables users to enter into Discreet Log Contracts."}, +{"name":"p3x-redis-ui","description":"A very functional handy database GUI and works in your pocket."}, +{"name":"packetsender","description":"Network utility for sending/receiving TCP/UDP/SSL/HTTP."}, +{"name":"packsquash","description":"A Minecraft Java Edition resource and data pack optimizer."}, +{"name":"paclear","description":"CLI, paclear is a clear command with PAC-MAN animation."}, +{"name":"padloc","description":"Electron Wrapper for Padloc app."}, +{"name":"pageedit","description":"EPub XHTML Visual Editor."}, +{"name":"painel-web","description":"Novo SGA panel."}, +{"name":"paket","description":"A simple and fast package manager for the Fish shell written in Rust."}, +{"name":"palapeli","description":"Jigsaw puzzle game. This is part of \"kdegames\"."}, +{"name":"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."}, +{"name":"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."}, +{"name":"pandoralauncher","description":"Pandora is a modern Minecraft launcher that balances ease-of-use with powerful instance management features."}, +{"name":"pandoralaunchercrack","description":"Customized version of Pandora, a modern Minecraft launcher that balances ease-of-use with powerful instance management features."}, +{"name":"panini","description":"Perspective views from panoramic images."}, +{"name":"pano-scrobbler","description":"Feature packed cross-platform music tracker for Last.fm, ListenBrainz, Libre.fm, Pleroma and other compatible services."}, +{"name":"panwriter","description":"Markdown editor with pandoc integration."}, +{"name":"paper","description":"A CLI Tool to set a random wallpaper from Unsplash.com."}, +{"name":"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."}, +{"name":"papercraft","description":"A tool to unwrap 3D models."}, +{"name":"paperlib","description":"An open-source academic paper management tool."}, +{"name":"paperweight","description":"Paperweight scans your inbox to map your digital footprint, then helps you take back control and delete your data."}, +{"name":"parabolic","description":"Unofficial, Download web video and audio."}, +{"name":"parallelcoin","description":"Parallelcoin qt wallet appimage binary."}, +{"name":"parchment","description":"A minimal minimal text editor written using web technologies."}, +{"name":"parity-fether","description":"Fether Wallet."}, +{"name":"parsec","description":"Open source Dropbox-like file sharing with full client encryption."}, +{"name":"parsec-linux","description":"Parsec game streaming client."}, +{"name":"passky","description":"Simple and secure password manager."}, +{"name":"passphraser","description":"Phrase-based password generator that can use your own list of words."}, +{"name":"paste","description":"Merge lines of files. This is part of \"am-utils\" suite."}, +{"name":"pastel","description":"A command-line tool to generate, analyze, convert and manipulate colors."}, +{"name":"patchbay","description":"An alt. Secure Scuttlebutt client compatible with Patchwork."}, +{"name":"patchelf","description":"Utility to modify the dynamic linker and RPATH of ELF executables."}, +{"name":"patchwork","description":"Messaging and sharing app built on top of Secure Scuttlebutt."}, +{"name":"pathchk","description":"File names are valid or portable. This is part of \"am-utils\" suite."}, +{"name":"pathephone","description":"Distributed audio player."}, +{"name":"pattypan","description":"Unofficial AppImage of Pattypan."}, +{"name":"pavo","description":"A mini desktop wallpaper application."}, +{"name":"pavucontrol-qt","description":"Qt port of pavucontrol Pulseaudio mixer, unofficial AppImage."}, +{"name":"pay-respects","description":"Terminal command correction, alternative to thefuck written in Rust."}, +{"name":"pb-for-desktop","description":"Pushbullet Desktop app."}, +{"name":"pboy","description":"A small .pdf management tool with a command-line UI."}, +{"name":"pcexhumed","description":"Unofficial, port of the PC version of Exhumed based on EDuke32."}, +{"name":"pcloud","description":"pCloud Drive Client, cloud service, built using electron and node.js."}, +{"name":"pcsx-redux-enhanced","description":"Unofficial, modern fork of the pcsxr PlayStation 1 emulator focused on reverse engineering and homebrew development."}, +{"name":"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."}, +{"name":"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."}, +{"name":"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."}, +{"name":"pdf-diff","description":"A CLI tool for visualizing differences between two pdf files."}, +{"name":"pdf-sync","description":"PDF Reader in JavaScript with Sync."}, +{"name":"pdf-tricks","description":"Unofficial, a simple, efficient application for small manipulations in PDF files."}, +{"name":"pdf2htmlex","description":"Convert PDF to HTML without losing text or format."}, +{"name":"pdf4qt","description":"Open source PDF editor."}, +{"name":"pdfcompress","description":"A utility to compress PDF documentas based on Ghostscript and YAD."}, +{"name":"pdfcrackgui","description":"GUI overlay for the popular and highly regarded pdfcrack."}, +{"name":"pdfquirk","description":"Creating PDFs from images or scanner made easy."}, +{"name":"pdmaner","description":"A relational database modeling tool."}, +{"name":"pear-desktop","description":"An extension for music player."}, +{"name":"pearpass","description":"An open-source, privacy-first password manager with peer-to-peer syncing and end-to-end encryption."}, +{"name":"peazip","description":"Unofficial. PeaZip Appimage for linux 64bits."}, +{"name":"peep","description":"The CLI text viewer tool that works like less command on small pane within the terminal window."}, +{"name":"pelusica","description":"Action game, control the blue dot with your keyboard/create music."}, +{"name":"pencil","description":"Pencil2D is an easy, intuitive tool to make 2D hand-drawn animations."}, +{"name":"penguins-eggs","description":"A professional and universal remastering tool for all major distributions."}, +{"name":"pennywise","description":"Open any website or media in a floating window."}, +{"name":"perfect-dark","description":"Unofficial, work in progress port of n64decomp/perfect_dark to modern platforms."}, +{"name":"perl-executing-browser","description":"HTML5 user interface for Perl 5 desktop apps."}, +{"name":"permastead","description":"Desktop software for managing a homestead using permaculture design."}, +{"name":"perplexity-ai-app","description":"Perplexity AI Desktop app eases the process to access Perplexity AI."}, +{"name":"pet","description":"Simple command-line snippet manager."}, +{"name":"pext","description":"Python-based extendable tool."}, +{"name":"pfetch-rs","description":"A rewrite of the pfetch system information tool in Rust."}, +{"name":"pget","description":"The fastest, resumable file download CLI client."}, +{"name":"phantom-satellite","description":"Unofficial, a fork of Pale Moon that aims to support older/niche platforms, without sacrificing support for more common/modern platforms."}, +{"name":"phinch","description":"Phinch is a framework for visualizing biological data."}, +{"name":"pho","description":"The AppImage Manager that Linux always deserved."}, +{"name":"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."}, +{"name":"photocrea","description":"Unofficial Photopea wrapper, image editor that includes all the familiar features like layers, filters, magic wand selection, etc."}, +{"name":"photoflare","description":"A simple but featureful image editor."}, +{"name":"photoflow","description":"Edit images from digital cameras."}, +{"name":"photogimp","description":"A patched version of GIMP for Adobe Photoshop users."}, +{"name":"photon","description":"Cross-platform file-transfer application built using flutter. It uses http to transfer files between devices."}, +{"name":"photoname","description":"Rename photo image files based on EXIF shoot date."}, +{"name":"photopealoader","description":"Photopea desktop app that loads local files and plugins."}, +{"name":"photoqt","description":"View and manage images."}, +{"name":"photoquick","description":"Light-weight image viewer, resize, collage, filters...."}, +{"name":"phreshplayer","description":"Electron based media player app."}, +{"name":"pia","description":"Version Portable Outil PIA."}, +{"name":"picacg-qt","description":"PicACG Comic PC Client For Linux."}, +{"name":"picard-daily","description":"Inofficial daily development builds for MusicBrainz Picard."}, +{"name":"picgo","description":"Easy to upload your pic & copy to write."}, +{"name":"piclist","description":"Cloud storage platform management & file upload tool based on PicGo."}, +{"name":"picmi","description":"Single player logic-based puzzle game. This is part of \"kdegames\"."}, +{"name":"picocrypt-ng","description":"A very small, very simple, yet very secure encryption tool."}, +{"name":"picsimlab","description":"PICsimLab - Programmable IC Simulator Laboratory."}, +{"name":"picterm","description":"CLI, TUI image viewer."}, +{"name":"picturama","description":"Digital image organizer powered by the web."}, +{"name":"piglit","description":"Unofficial, a collection of automated tests for OpenGL, Vulkan, and OpenCL implementations."}, +{"name":"pigs-n-cows","description":"A relaxing game for children and adults alike."}, +{"name":"pika-backup","description":"Doing backups the easy way. Plugin your USB drive and let the Pika do the rest for you."}, +{"name":"pikapika","description":"A comic browser."}, +{"name":"pile","description":"App to organize your piled work at one place."}, +{"name":"pince","description":"Reverse engineering tool for linux games."}, +{"name":"pingendo","description":"???"}, +{"name":"pingnoo","description":"An open source network ping analyser."}, +{"name":"pingu","description":"CLI, ping command but with pingu."}, +{"name":"pingviewer","description":"Ping viewer interface."}, +{"name":"pinky","description":"Lightweight finger. This is part of \"am-utils\" suite."}, +{"name":"pinokio","description":"AI Browser."}, +{"name":"pinta","description":"Unofficial, Simple GTK Paint Program clone of Paint.Net 3.0."}, +{"name":"pinta-dev","description":"Simple GTK Paint Program (developer edition)."}, +{"name":"pipes-rs","description":"An over-engineered rewrite of pipes.sh in Rust. CLI."}, +{"name":"pixelhopper","description":"Animated GIF player for Linux (X11)."}, +{"name":"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."}, +{"name":"pixelpulse2","description":"Pixelpulse2 is a user interface for analog systems exploration."}, +{"name":"pixfetch","description":"Another CLI fetch program with pixelized images written in Rust."}, +{"name":"pixsrt","description":"Pixel sorter."}, +{"name":"pizarra","description":"A digital, vectorial and infinite chalkboard."}, +{"name":"pkg2appimage","description":"Utility to convert .yml recipes to AppDir, see appimagetool."}, +{"name":"plagpatrol","description":"Detecting documents tampered to bypass plagiarism detectors."}, +{"name":"planes","description":"Variant of battleships game."}, +{"name":"planet-blupi","description":"A delirious spell-binding game."}, +{"name":"planify","description":"Unofficial AppImage of Planify."}, +{"name":"platinum-md","description":"Graphical MiniDisc NetMD conversion and upload."}, +{"name":"play","description":"Play! is a PlayStation2 games emulator."}, +{"name":"play-2048","description":"Another implementation of the 2048 game."}, +{"name":"play-enhanced","description":"Unofficial, a PlayStation2 emulator."}, +{"name":"playback","description":"Play and manage your cartridges and replay your childhood games."}, +{"name":"playbox","description":"An audio playback system for the live production industry."}, +{"name":"playerctl","description":"Unofficial, MPRIS media player command-line controller."}, +{"name":"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."}, +{"name":"playme","description":"Elegant YouTube Music desktop app."}, +{"name":"playyourdamnturn","description":"Desktop Client to assist with playing your damn turns."}, +{"name":"plebchan","description":"A GUI for plebbit similar to 4chan."}, +{"name":"plex","description":"The ultimate home theater experience."}, +{"name":"plexamp","description":"The best little audio player on the planet."}, +{"name":"plotjuggler","description":"The Time Series Visualization Tool that you deserve."}, +{"name":"plotly-orca","description":"CLI generating static images of interactive charts."}, +{"name":"plover","description":"Stenographic input and translation."}, +{"name":"plume","description":"A note-taking app written in Qt C++ and QML."}, +{"name":"plus42","description":"Unofficial, an enhanced HP-42S calculator simulator."}, +{"name":"png2svg","description":"CLI, convert small PNG images to SVG Tiny 1.2."}, +{"name":"pnpm","description":"A single file, powered by AppImage."}, +{"name":"pocket-browser","description":"A FOSS browser made for privacy and going towards security."}, +{"name":"pocketcasts-electron","description":"Pocket Casts wrapper with mapped media keys."}, +{"name":"poddr","description":"Podcast client that uses iTunes RSS feeds and Search API."}, +{"name":"podium","description":"A Markdown-based native presentation tool."}, +{"name":"podman","description":"Free & open source tool to manage containers, pods, and images."}, +{"name":"podman-desktop-companion","description":"Podman command line interface."}, +{"name":"poe-ladder","description":"Path of Exile ladder viewer."}, +{"name":"poedit","description":"Unofficial. Powerful and intuitive translation editor."}, +{"name":"pog","description":"A Kmk firmware flashing and configuration tool."}, +{"name":"poi","description":"Scalable KanColle browser and tool."}, +{"name":"pointless","description":"An endless drawing canvas desktop app made with Tauri (Rust) and React."}, +{"name":"pokeclicker","description":"PokéClicker with quality of life changes."}, +{"name":"pokeget-rs","description":"A better rust version of pokeget. CLI."}, +{"name":"pokego","description":"Command-line tool that lets you display Pokémon sprites in color directly in your terminal."}, +{"name":"pokemmo","description":"Unofficial, MMO based on the Pokémon Universe."}, +{"name":"pokete","description":"A terminal based Pokemon like game."}, +{"name":"polar","description":"One-click Bitcoin Lightning networks for local app development."}, +{"name":"polkakey","description":"A secure way to generate Polkadot/Kusama/Edgeware address."}, +{"name":"polybar","description":"Unofficial AppImage of polybar. A fast easy-to-use status bar."}, +{"name":"polypane","description":"Browser for web developers."}, +{"name":"pomatez","description":"Stay Focused. Take a Break."}, +{"name":"pomodorolm","description":"A simple, good looking and multi-platform pomodoro tracker."}, +{"name":"pomotroid","description":"Simple and visually-pleasing Pomodoro timer."}, +{"name":"pop","description":"Send emails from your terminal."}, +{"name":"popsicle","description":"Multiple USB File Flasher."}, +{"name":"portable2appimage","description":"Convert standalone, self-contained portable apps into AppImage packages."}, +{"name":"positron","description":"Manage your movie and show watchlist."}, +{"name":"postal","description":"Unofficial, Postal a quirky FPS shooter."}, +{"name":"postcat","description":"An extensible API tool."}, +{"name":"postman","description":"API platform for building and using APIs, AppImage."}, +{"name":"postybirb","description":"Multimedia crossposter for multimedia websites."}, +{"name":"postybirb-plus","description":"Helps artists post art to multiple websites more quickly."}, +{"name":"pot-desktop","description":"A cross-platform software for text translation and recognition."}, +{"name":"potatopresenter","description":"Create presentation slides and exported as PDF."}, +{"name":"powder-toy","description":"AppImage build of The Powder Toy built from source."}, +{"name":"powerliminals-player","description":"Powerliminal audios in the background, Audio player."}, +{"name":"powershell","description":"Microsoft PowerShell."}, +{"name":"ppet3","description":"Put a cute girl on your desk for more fun."}, +{"name":"ppsspp","description":"PSP emulator written in C++."}, +{"name":"pr","description":"Files for printing. This is part of \"am-utils\" suite."}, +{"name":"pragtical","description":"The practical and pragmatic code editor."}, +{"name":"pretty-handy-privacy","description":"User interface for basic encryption tasks."}, +{"name":"prey2006","description":"Unofficial, Prey 2006 SDK integrated with Doom 3 GPL release."}, +{"name":"primate","description":"A modern dashboard for Kong Gateway admins."}, +{"name":"prime-world-editor","description":"Edit world assets from games by Retro Studios."}, +{"name":"primehack","description":"Unofficial AppImage of the PrimeHack emulator."}, +{"name":"principia","description":"Open source physics-based sandbox game."}, +{"name":"printenv","description":"Print all or part of environment. This is part of \"am-utils\" suite."}, +{"name":"printerclient","description":"A printer client."}, +{"name":"printf","description":"Format and print data. This is part of \"am-utils\" suite."}, +{"name":"printventory","description":"The ultimate tool for managing your 3D printing collection with ease. Sort, tag, and track your models in one place."}, +{"name":"prisma-studio","description":"The easiest way to explore and manipulate your data."}, +{"name":"prismlauncher","description":"Launcher for Minecraft, manage multiple installations."}, +{"name":"prismlauncher-enhanced","description":"Unofficial, a custom launcher for Minecraft that allows you to easily manage multiple installations of Minecraft at once (Fork of MultiMC)."}, +{"name":"prismlauncher-qt5","description":"Launcher for Minecraft, manage multiple installations (Qt5 version)."}, +{"name":"privacy.sexy","description":"Tool to enforce privacy & security best-practices."}, +{"name":"privaxy","description":"The next generation tracker and ads/advertisement blocker."}, +{"name":"probe-desktop","description":"The next generation OONI Probe desktop app."}, +{"name":"procdepmonitor","description":"Obtaining information about loaded process dependencies."}, +{"name":"procs","description":"A modern replacement for ps written in Rust."}, +{"name":"procspin","description":"CLI to create a process/progress animation with text."}, +{"name":"procyon","description":"Note Keeper."}, +{"name":"programmer-browser","description":"A fast-searching and space-saving browser specially designed for programmers."}, +{"name":"promethium","description":"Extensible and innovative web browser with built-in AdBlock."}, +{"name":"proofkeeper","description":"Desktop tool to automate proof management."}, +{"name":"prospect-mail","description":"An Outlook mail desktop client powered by Electron."}, +{"name":"protocol_10","description":"A mod decompiler for frosty tool suite."}, +{"name":"protoman","description":"A Postman-like API client for protobuf-based messages."}, +{"name":"protonmail-desktop","description":"Unofficial Electron wrapper for ProtonMail."}, +{"name":"protontricks","description":"Unofficial AppImage of Protontricks."}, +{"name":"protonup-qt","description":"Manage Proton-GE/Luxtorpeda for Steam/Wine-GE for Lutris."}, +{"name":"proxy-master","description":"Set and reset your proxy settings EVERYWHERE."}, +{"name":"proxyman","description":"Modern and Delightful HTTP Debugging Proxy."}, +{"name":"prusa-slicer","description":"Prusa3d/PrusaSlicer, G-code generator for 3D printers."}, +{"name":"psi+","description":"Communicate over the XMPP network."}, +{"name":"pstube","description":"Watch and download videos without ads."}, +{"name":"psydoom","description":"A backport of PSX Doom to PC."}, +{"name":"ptx","description":"Permuted index of file contents. This is part of \"am-utils\" suite."}, +{"name":"ptyxis","description":"Unofficial AppImage of Ptyxis terminal."}, +{"name":"publii","description":"A desktop-based CMS that makes creating static websites fast."}, +{"name":"puddletag","description":"Unofficial, Powerful, simple, audio tag editor for GNU/Linux."}, +{"name":"pullp","description":"Pull request monitoring app for Github."}, +{"name":"pulsar","description":"A Community-led Hyper-Hackable Text Editor."}, +{"name":"pulse","description":"Pulse desktop client."}, +{"name":"pulseview","description":"PulseView (sometimes abbreviated as \"PV\") is a Qt based logic analyzer, oscilloscope and MSO GUI for sigrok."}, +{"name":"punes","description":"Qt-based Nintendo Entertaiment System emulator and NSF/NSF2/NSFe Music Player."}, +{"name":"puppetry","description":"Solution for non-developers on top of Puppeteer and Jest."}, +{"name":"puush-qt","description":"A GUI frontend for puush on Linux."}, +{"name":"pwd","description":"Print name of current/working directory. This is part of \"am-utils\" suite."}, +{"name":"pyappimage","description":"Simple appimage builder for Python applications."}, +{"name":"pycharm","description":"Unofficial, PyCharm-community-edition in AppImage."}, +{"name":"pyfa","description":"EVE Online Fitting Assistant."}, +{"name":"pyglossary","description":"Unofficial, A tool for converting dictionary files aka glossaries."}, +{"name":"python","description":"AppImage distributions of Python, an interactive high-level object-oriented language."}, +{"name":"qaddapp","description":"Qt5 Gui app that helps you add AppImages and binary archives into your Desktop environment."}, +{"name":"qarma","description":"Unofficial, Qarma is a tool to create dialog boxes, based on Qt. It's a clone of Zenity."}, +{"name":"qaterialgallery","description":"Demonstrate Qaterial library."}, +{"name":"qaterialhotreload","description":"Qml HotReload software."}, +{"name":"qawl","description":"Read the Holy Qur’ān whenever, wherever, however you like."}, +{"name":"qbittorrent","description":"A powerful QT-based Bittorrent Client, official AppImage."}, +{"name":"qbittorrent-enhanced","description":"Unofficial qBittorrent Enhanced, based on qBittorrent."}, +{"name":"qdiskinfo","description":"QDiskInfo is a frontend for smartctl. It provides a user experience similar to CrystalDiskInfo."}, +{"name":"qdriverstation","description":"Cross-platform clone of the FRC Driver Station."}, +{"name":"qelectrotech","description":"Edit electrical diagrams."}, +{"name":"qemu","description":"Unofficial, a generic and open source machine & userspace emulator and virtualizer, to run a virtual machines."}, +{"name":"qemu-ppc","description":"Run PowerPC operating systems on 64-bit Intel Linux hosts."}, +{"name":"qflipper","description":"Flipper Zero multitool for pentesters and geeks in a toy-like body."}, +{"name":"qfsm","description":"Qt Finite State Machine Designer."}, +{"name":"qgroundcontrol","description":"Ground control for unmanned vehicles."}, +{"name":"qikqr","description":"Minimal desktop app to create QR codes."}, +{"name":"qimgv","description":"Unofficial, Image viewer. Fast, easy to use. Optional video support."}, +{"name":"qmasterpassword","description":"A password manager based on Qt."}, +{"name":"qmediathekview","description":"An alternative front-end to the MediathekView database."}, +{"name":"qmidictl","description":"MIDI Remote Controller via UDP/IP Multicast."}, +{"name":"qmidinet","description":"MIDI Network Gateway via UDP/IP Multicast."}, +{"name":"qmmp","description":"Unofficial, Qt-based multimedia player."}, +{"name":"qmplay2","description":"Video and audio player whit support of most formats and codecs."}, +{"name":"qmplay2-enhanced","description":"Unofficial, a video and audio player which can play most formats and codecs."}, +{"name":"qnapi","description":"Qt-based, multi-engine, multi-platform subtitle downloader."}, +{"name":"qortal-ui","description":"Decentralize the world, data storage, communications."}, +{"name":"qownnotes","description":"Plain text notepad and todo list manager."}, +{"name":"qpdf","description":"CLI tool to perform content-preserving transformations on PDF files."}, +{"name":"qppcad","description":"Molecule and crystal editor written in c++"}, +{"name":"qprompt","description":"Personal teleprompter software for all video creators."}, +{"name":"qr-code-generator","description":"Create custom QR Codes, resize, save them as PNG image."}, +{"name":"qrscan","description":"Scan a QR code in the terminal using the system camera or an image."}, +{"name":"qsdrswr","description":"Qt SWR analyser using an SDR and soapy_power."}, +{"name":"qt-dab","description":"Listening to terrestrial Digital Audio Broadcasting."}, +{"name":"qt-raster-lines","description":"Lines between points using rasterization, DDA, Bresenham."}, +{"name":"qtads","description":"A cross-platform, multimedia interpreter for TADS adventure games."}, +{"name":"qtalarm","description":"Alarm clock for Computers."}, +{"name":"qtchan","description":"4chan browser in qt5."}, +{"name":"qtcreator","description":"Unofficial, lightweight, cross-platform integrated development environment."}, +{"name":"qterminal","description":"Unofficial. A lightweight Qt terminal emulator based on QTermWidget."}, +{"name":"qtjsondiff","description":"Json difference checker widget and viewer."}, +{"name":"qtox","description":"Qt 5 based Tox instant messenger for secure communication."}, +{"name":"qtrfpowermeter","description":"Improve usage of chinese RF power meter RF8000."}, +{"name":"quamodbusclient","description":"Modbus to OPC UA Gateway"}, +{"name":"quantumlauncher-enhanced","description":"Unofficial, a simple, powerful Minecraft launcher."}, +{"name":"quark","description":"Sketchbook for rapid prototyping and development of your projects."}, +{"name":"quark-player","description":"An Electron based Web Video Services Player."}, +{"name":"quarto-cli","description":"Scientific and technical publishing system built on Pandoc."}, +{"name":"quaternion","description":"A Qt5-based IM client for Matrix."}, +{"name":"quba","description":"A viewer for electronic invoices."}, +{"name":"qucs-s","description":"An Universal GUI for Circuit Simulators."}, +{"name":"quentier","description":"Note taking app integrated with Evernote."}, +{"name":"quick-clone","description":"Search through gitlab and clone git-repositories."}, +{"name":"quickgui","description":"An elegant virtual machine manager for the desktop."}, +{"name":"quicknote","description":"QuickNote helps to paste some random text or take some notes right from your taskbar!"}, +{"name":"quickredis","description":"A free Redis Desktop manager."}, +{"name":"quickshell","description":"Unofficial AppImage of Quickshell."}, +{"name":"quicktwitch","description":"Electron React Redux Boilerplate."}, +{"name":"quickviewer","description":"A image viewer application for folders/archives."}, +{"name":"quiet","description":"A private, p2p alternative to Slack and Discord built on Tor & IPFS"}, +{"name":"quokkagit","description":"A small, TortoiseGit inspired git log viewer for linux."}, +{"name":"quran-companion","description":"Free and open-source desktop Quran reader and player."}, +{"name":"qv2ray","description":"Cross-platform v2ray GUI Client in Qt."}, +{"name":"qview","description":"Practical and minimal image viewer."}, +{"name":"qxgedit","description":"QXGEdit is a Qt GUI XG editor application."}, +{"name":"r2modman","description":"Mod manager for several Unity games using Thunderstore."}, +{"name":"r3play","description":"High-value third-party Netease cloud player, chinese."}, +{"name":"rabix-composer","description":"A desktop IDE for working with Common Workflow Language."}, +{"name":"radioit","description":"Automation software for Radios."}, +{"name":"radix-wallet","description":"Radix DLT desktop wallet."}, +{"name":"rainbow-board","description":"22nd Century Whiteboard App."}, +{"name":"rambox","description":"Free and Open Source messaging and emailing app."}, +{"name":"ranlib","description":"Index to an archive. This is part of \"am-utils\" suite."}, +{"name":"rapidraw","description":"A beautiful, non-destructive, and GPU-accelerated RAW image editor built with performance in mind."}, +{"name":"raptor","description":"Unofficial, reversed-engineered source port from Raptor Call Of The Shadows."}, +{"name":"rare","description":"GUI for legendary. An Epic Games Launcher open source alternative."}, +{"name":"raspberry-pi-imager","description":"The home of Raspberry Pi Imager, a user-friendly tool for creating bootable media for Raspberry Pi devices. Desktop edition."}, +{"name":"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."}, +{"name":"raspirus","description":"A user and resources-friendly signatures-based malware scanner."}, +{"name":"rasterdraw","description":"Simple shape drawn using rasterisation."}, +{"name":"rasterview","description":"Raster Viewer for CUPS-Raster, Apple-Raster and PWG-Raster."}, +{"name":"rats-search","description":"P2P BitTorrent search engine."}, +{"name":"rawtherapee","description":"An advanced raw photo development program."}, +{"name":"rbdl-toolkit","description":"Application for visualizing and working with rbdl models."}, +{"name":"rbdoom-3","description":"Doom 3 BFG Edition source port with updated DX12/Vulkan renderer."}, +{"name":"rbw","description":"Unofficial Bitwarden password manager cli."}, +{"name":"rclip","description":"AI-Powered Semantic Photo Search for the Command Line."}, +{"name":"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."}, +{"name":"rclone-browser","description":"Simple cross platform GUI for rclone."}, +{"name":"rclone-gui-manager","description":"A simple, modern graphical user interface for managing rclone remotes for Linux."}, +{"name":"rclone-ui","description":"The cross-platform desktop GUI for rclone & S3."}, +{"name":"rcloneview","description":"The ultimate GUI for Cloud Data Sync and File Management. Effortlessly browse, organize, transfer files across your cloud storages."}, +{"name":"reactotron","description":"Reactotron desktop mode engage."}, +{"name":"readelf","description":"About ELF files. This is part of \"am-utils\" suite."}, +{"name":"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."}, +{"name":"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."}, +{"name":"readlink","description":"Print resolved symbolic links or canonical file. This is part of \"am-utils\" suite."}, +{"name":"real-video-enhancer","description":"Interpolate and Upscale easily."}, +{"name":"realm-studio","description":"A tool for everything Realm."}, +{"name":"realpath","description":"Print the resolved path. This is part of \"am-utils\" suite."}, +{"name":"reaper","description":"A complete digital audio production app, offering a full multitrack audio and MIDI recording, editing, processing, mixing and mastering toolset."}, +{"name":"rebaslight","description":"An easy to use special effects video editor."}, +{"name":"rebos","description":"Rebos is a tool that aims at mimicking what NixOS does (repeatability), for any Linux distribution."}, +{"name":"reco","description":"Unofficial, An audio recorder focused on being concise and simple to use"}, +{"name":"recoll","description":"Full-text search for your desktop."}, +{"name":"record-compare","description":"Record Compare."}, +{"name":"recordscript","description":"Cross-platform screen recorder, transcript, subtitle."}, +{"name":"redact","description":"Application to mass delete your account posts from different social media."}, +{"name":"redeclipse","description":"A great first person 3D arena shooter with online support, game."}, +{"name":"redis-gui","description":"Modern graphical user interface to peek into redis DB."}, +{"name":"redis-viewer","description":"A Redis visualization client tool."}, +{"name":"rednukem","description":"Unofficial, a port of serveral BUILD Engine games based on EDuke32."}, +{"name":"redriver2","description":"Unofficial, Driver 2 Playstation game reverse engineering effort."}, +{"name":"rehex","description":"Reverse Engineers' Hex Editor."}, +{"name":"remind-me-again","description":"Toggleable cron reminders app."}, +{"name":"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."}, +{"name":"rendertune","description":"Electron app that uses ffmpeg to combine audio.+image files into video files."}, +{"name":"renpy","description":"Unofficial, visual novel engine Ren'Py."}, +{"name":"reor","description":"AI note-taking app that runs models locally."}, +{"name":"repath-studio","description":"A cross-platform vector graphics editor."}, +{"name":"repetier-host","description":"Repetier-Host is a 3D printing application developed by Hot-World GmbH & Co. KG."}, +{"name":"reqable","description":"Advanced API Debugging Proxy and REST Client."}, +{"name":"responsively","description":"A browser for developing responsive web apps."}, +{"name":"retroarch","description":"RetroArch is a free and open-source, cross-platform frontend for emulators, game engines, video games, media players and other applications."}, +{"name":"retroarch-nightly","description":"RetroArch is a free and open-source, cross-platform frontend for emulators, game engines, video games, media players and other applications."}, +{"name":"retroarch-qt","description":"RetroArch is a free and open-source, cross-platform frontend for emulators, game engines, video games, media players and other applications."}, +{"name":"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."}, +{"name":"retrom","description":"A centralized game library/collection management service with a focus on emulation."}, +{"name":"retroshare","description":"Securely share files with your friends."}, +{"name":"retrovibed","description":"Personal Digital Archive and Media Player with at cost cloud storage backend."}, +{"name":"rev","description":"Reverse lines characterwise. This is part of \"am-utils\" suite."}, +{"name":"revealgo","description":"Markdown driven presentation tool written in Go!"}, +{"name":"revolt","description":"Revolt Desktop App."}, +{"name":"rewaita","description":"Unofficial, rewaita gives your Adwaita apps a fresh look by tinting them with popular color schemes."}, +{"name":"rgitui","description":"A GPU-accelerated desktop Git client built in Rust with GPUI."}, +{"name":"rhb","description":"Rapid HTML Builder/Prototyper."}, +{"name":"rhythmbox","description":"The popular Audio Player Rhythmbox."}, +{"name":"ricochet","description":"Anonymous peer-to-peer instant messaging."}, +{"name":"ricochlime","description":"Satisfying slime shooter."}, +{"name":"ridereceipts","description":"Automation app to download and organize your tax invoices."}, +{"name":"rift","description":"All your EVE Online intel in one place."}, +{"name":"rigelengine","description":"Unofficial, modern re-implementation of DOS game Duke Nukem II."}, +{"name":"rigs-of-rods","description":"Unofficial, an open source vehicle simulator based on soft-body physics."}, +{"name":"rimage","description":"This is CLI tool inspired by squoosh."}, +{"name":"ripcord","description":"Chat client for group-centric services like Slack and Discord."}, +{"name":"ripes","description":"Graphical processor simulator and assembly editor for the RISC-V ISA."}, +{"name":"ripgrep","description":"Search directories for regex pattern while respecting gitignore."}, +{"name":"ripgrep-all","description":"A ripgrep version to also search in documents and archives."}, +{"name":"riseup-vpn","description":"Unofficial, RiseupVPN is an easy, fast, and secure VPN service from riseup.net."}, +{"name":"ristretto","description":"Unofficial. Image viewer by Xfce that can be used to view and scroll through images."}, +{"name":"rm","description":"Remove files or directories. This is part of \"am-utils\" suite."}, +{"name":"rmdir","description":"Remove empty directories. This is part of \"am-utils\" suite."}, +{"name":"rmg","description":"Rosalie's Mupen GUI."}, +{"name":"rmg-enhanced","description":"Unofficial AppImage of RMG N64 emulator wtih x86-64-v3 optimizations and smaller size."}, +{"name":"rmw","description":"A safe-remove utility for the command line."}, +{"name":"rnote","description":"Unofficial, Rnote is a vector-based drawing app for sketching, handwritten notes and to annotate documents and pictures."}, +{"name":"roborock-control-center","description":"Control Your Xiaomi Vacuum."}, +{"name":"robrix","description":"A multi-platform Matrix chat client written in Rust, using the Makepad UI toolkit and the Robius app dev framework."}, +{"name":"rock.so","description":"Messaging + Tasks."}, +{"name":"rocketfetch","description":"A WIP command line system information tool written with multithreading in rust for performance with toml file configuration."}, +{"name":"rocksndiamonds","description":"Unofficial, an open source arcade style game of Boulder Dash, Emerald Mine, and Sokoban."}, +{"name":"rofi","description":"Unofficial, A window switcher, runs dialogs, dmenu like, etc."}, +{"name":"roller","description":"Unofficial, reverse engineering the 1995 game Whiplash/Fatal Racing."}, +{"name":"roloviewer","description":"Image slideshow viewer."}, +{"name":"root","description":"Voice, video, and chat plus powerful apps that help your community organize, grow, and thrive. An alternative to Discord."}, +{"name":"rotki","description":"A portfolio tracking, asset analytics and tax reporting app."}, +{"name":"rpan-studio","description":"OBS Studio with RPAN integration."}, +{"name":"rpcs3","description":"An open-source PlayStation 3 emulator/debugger written in C++."}, +{"name":"rquickshare","description":"Rust implementation of NearbyShare/QuickShare from Android."}, +{"name":"rrip","description":"Bulk image downloader for reddit."}, +{"name":"rsdkv3","description":"Unofficial, a Full Decompilation of Sonic CD (2011) & Retro Engine v3."}, +{"name":"rsdkv4","description":"Unofficial, a complete decompilation of Sonic 1 & Sonic 2 (2013) & Retro Engine v4."}, +{"name":"rssguard","description":"Feed reader which supports RSS/ATOM/JSON, no-webengine version."}, +{"name":"rtneuron","description":"Framework for geometrically detailed neuron simulations."}, +{"name":"rubikscube","description":"Rubik's cube in OpenGL."}, +{"name":"rucola","description":"Terminal-based markdown note manager."}, +{"name":"ruffle","description":"A Flash Player emulator written in Rust."}, +{"name":"runanode","description":"Lets run a node."}, +{"name":"runcon","description":"With specified security context. This is part of \"am-utils\" suite."}, +{"name":"runelite","description":"Open source Old School RuneScape client."}, +{"name":"runjs","description":"JavaScript playground. Write code with Node.js & browser APIs access."}, +{"name":"running-dinner-tool","description":"Running Dinner Tool."}, +{"name":"rustdesk","description":"Virtual/remote desktop infrastructure, like TeamViewer/Citrix."}, +{"name":"rustdesk-enhanced","description":"Unofficial, AppImage of remote desktop app which is able to work on any linux distro."}, +{"name":"rustdict","description":"A dictionary CLI tool in Rust inspired by BetaPictoris's dict."}, +{"name":"rusty-rain","description":"CLI, a cross platform matrix rain made with Rust."}, +{"name":"rustypaste","description":"A minimal file upload/pastebin service."}, +{"name":"rvgl","description":"Unofficial, a cross-platform rewrite/port of Re-Volt."}, +{"name":"rx-bin","description":"A modern and extensible pixel editor implemented in Rust."}, +{"name":"ryowallet","description":"Modern GUI interface for Ryo Currency."}, +{"name":"ryujinx","description":"An open-source Nintendo Switch emulator, originally created by gdkchan, written in C#."}, +{"name":"ryujinx-canary","description":"An open-source Nintendo Switch emulator, originally created by gdkchan, written in C# (Canary builds)."}, +{"name":"s","description":"Open a web search in your terminal."}, +{"name":"s3drive","description":"Convert S3, SFTP, WebDAV or Rclone back-end into your encrypted storage."}, +{"name":"sabaki","description":"Modern, elegant, cross-platform Go/Baduk/Weiqi game board."}, +{"name":"saber","description":"A work-in-progress cross-platform libre handwritten notes app."}, +{"name":"sacdextractgui","description":"Unofficial AppImage of SACDExtractGUI."}, +{"name":"safe-multisig","description":"Allowing crypto users manage funds in a safer way."}, +{"name":"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."}, +{"name":"sameboy","description":"Unofficial AppImage of SameBoy."}, +{"name":"samira","description":"Steam achievement manager for Linux written with Tauri and Rust."}, +{"name":"samrewritten","description":"Steam Achievement Manager For Linux. Rewritten in C++."}, +{"name":"sanicball","description":"Unofficial, an extraordinarily fast racing game."}, +{"name":"saphyr","description":"A C++ like compiler."}, +{"name":"sas","description":"Tool to sandbox AppImages with bubblewrap easily."}, +{"name":"sat","description":"Simple AppImage thumbnailer in POSIX shell"}, +{"name":"satisfactory","description":"Satisfactory Mod Manager."}, +{"name":"satty","description":"Unofficial, a screenshot annotation tool."}, +{"name":"saucedacity","description":"Audio editor based on Audacity focusing on general improvements."}, +{"name":"savvycan","description":"Facilitates reverse engineering of canbus captures."}, +{"name":"sayonara","description":"Music player and music library admininstration."}, +{"name":"sayonara-player-enhanced","description":"Unofficial, a small, clear and fast audio player."}, +{"name":"sbe","description":"An unofficial Scrapbox desktop app."}, +{"name":"sblauncher","description":"Minecraft Launcher."}, +{"name":"sc-controller","description":"User-mode driver and GTK3 based GUI for Steam Controller."}, +{"name":"scatter","description":"Scatter desktop signature server."}, +{"name":"scavengers","description":"Unity Roguelike tutorial, game."}, +{"name":"schildi-revenge","description":"Matrix client for desktop written in Kotlin and using the Matrix Rust SDK."}, +{"name":"school-sections","description":"This project was generated with Angular CLI v1.7.4."}, +{"name":"scilab","description":"Scientific software package for numerical computations."}, +{"name":"sciqlop","description":"SciQLop is an ergonomic and efficient application to browse and label in situ plasma measurements from multi-mission satellite data."}, +{"name":"scopy","description":"A software oscilloscope and signal analysis toolset."}, +{"name":"scraper","description":"Simple desktop scraper app."}, +{"name":"scratux","description":"Linux client for scratch programming."}, +{"name":"scrcpy","description":"Display and control your Android device."}, +{"name":"scrcpygui","description":"A user-friendly GUI for scrcpy with added functionalities."}, +{"name":"screenarc","description":"ScreenArc – Cross-platform screen recorder & editor with automatic cinematic zooms, mouse tracking, and effortless video creation."}, +{"name":"screencloud","description":"Capture and share screenshots easily."}, +{"name":"scribus","description":"Powerful desktop publishing software."}, +{"name":"scrite","description":"Multilingual Screenplay Writing App from TERIFLIX."}, +{"name":"scrum-retroboard","description":"Electron application based on React."}, +{"name":"scummvm","description":"Unofficial, A 'virtual machine' for several classic graphical point-and-click adventure games"}, +{"name":"scytale","description":"Scytale Desktop Client for Linux."}, +{"name":"sd","description":"Intuitive find & replace CLI, sed alternative."}, +{"name":"sdlpal","description":"SDL-based reimplementation of the classic Chinese-language RPG known as PAL."}, +{"name":"sdlpop","description":"Unofficial, an open-source port of Prince of Persia."}, +{"name":"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."}, +{"name":"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."}, +{"name":"seanime","description":"Open-source media server with a web interface and desktop app for anime and manga."}, +{"name":"secops","description":"A Linux Desktop Application for managing security."}, +{"name":"secrets","description":"Unofficial AppImage of the Secrets keepass and 2FA password manager."}, +{"name":"sed","description":"GNU stream editor for filtering and transforming text. This is part of \"am-utils\" suite."}, +{"name":"seedit","description":"A GUI for plebbit similar to old.reddit."}, +{"name":"seismic","description":"A taskbar app for displaying USGS magnitude 2.5+ earthquakes from the past day."}, +{"name":"selenium-ide","description":"Open Source record and playback test automation for the web."}, +{"name":"sengi","description":"A multi-account desktop client for Mastodon and Pleroma."}, +{"name":"senpa-io-client","description":"Official Client for Senpa.io"}, +{"name":"sentinel","description":"An open-source decentralized VPN network application."}, +{"name":"seq","description":"Print a sequence of numbers. This is part of \"am-utils\" suite."}, +{"name":"ser-player","description":"Video player for SER files used for astronomy-imaging."}, +{"name":"serial-studio","description":"Multi-purpose serial data view program."}, +{"name":"serialplot","description":"Small and simple software for plotting data from serial port."}, +{"name":"serioussamtfe","description":"Game engine for Serious Sam Classic, TFE."}, +{"name":"serioussamtfe-vk","description":"Game engine for Serious Sam Classic, Vulkan support, TFE."}, +{"name":"serioussamtse","description":"Game engine for Serious Sam Classic, TSE."}, +{"name":"serioussamtse-vk","description":"Game engine for Serious Sam Classic, Vulkan support, TSE."}, +{"name":"servo","description":"Unofficial AppImage builds of the Servo web browser engine."}, +{"name":"session-desktop","description":"Onion routing based messenger."}, +{"name":"setcolors","description":"Another way to set colors in Linux shells."}, +{"name":"sevicebus-browser","description":"A cross platform tool to manage your Azure Service Bus instances."}, +{"name":"sf-tube","description":"Watch and download videos without ads."}, +{"name":"sfbrename-cli","description":"Bulk file renamer."}, +{"name":"sfbrename-gtk","description":"Bulk file renamer."}, +{"name":"sfp","description":"This utility is designed to allow you to apply skins to the modern Steam client."}, +{"name":"sfrt-attendance","description":"The attendance tracking program for robotics."}, +{"name":"sh","description":"GNU Bourne-Again Shell, the de facto standard shell on Linux. This is part of \"am-utils\" suite."}, +{"name":"sha1sum","description":"Compute and check SHA1 message digest. This is part of \"am-utils\" suite."}, +{"name":"sha224sum","description":"Check SHA224 message digest. This is part of \"am-utils\" suite."}, +{"name":"sha256sum","description":"Compute and check SHA256 message digest. This is part of \"am-utils\" suite."}, +{"name":"sha384sum","description":"Check SHA384 message digest. This is part of \"am-utils\" suite."}, +{"name":"sha512sum","description":"Compute and check SHA512 message digest. This is part of \"am-utils\" suite."}, +{"name":"shadow-tech","description":"Shadow.tech, cloud computing service."}, +{"name":"shadowsocks","description":"Shadowsocks GUI client."}, +{"name":"shadps4","description":"An early PlayStation 4 emulator written in C++."}, +{"name":"shadps4-qtlauncher","description":"The official Qt launcher for shadps4 PlayStation 4 emulator."}, +{"name":"shannon-calculator","description":"Self-information content of a message text."}, +{"name":"sharemyhost","description":"One click to share your files in your local network."}, +{"name":"sharp-tune","description":"Music player build upon the node using the electron."}, +{"name":"sheepshaver","description":"Classic Macintosh emulator SheepShaver."}, +{"name":"sheikah","description":"A Witnet compatible desktop wallet."}, +{"name":"shellcheck","description":"ShellCheck, a static analysis tool for shell scripts."}, +{"name":"shellharden","description":"The corrective bash syntax highlighter."}, +{"name":"shockolate","description":"Unofficial AppImage of Shockolate."}, +{"name":"shoopdaloop","description":"A (live) looping application with DAW elements."}, +{"name":"shotcut","description":"A powerful Video Editor."}, +{"name":"shotwell","description":"Unofficial, a digital photo organizer designed for the GNOME desktop environment."}, +{"name":"shradiko","description":"Make Portable AppImages from Distro Packages."}, +{"name":"shred","description":"Overwrite a file to hide its contents, and optionally. This is part of \"am-utils\" suite."}, +{"name":"shuf","description":"Generate random permutations. This is part of \"am-utils\" suite."}, +{"name":"shutter-encoder","description":"Professional converter & compression tool designed by video editors."}, +{"name":"shuttle","description":"The fastest access to your favorite applications."}, +{"name":"shvspy","description":"Qt GUI tool for shvbroker administration and browsing."}, +{"name":"sideka","description":"Platform Tata Kelola Desa"}, +{"name":"sidenote","description":"A CLI tool that helps to manage plain text notes per working directory."}, +{"name":"sigdigger","description":"Signal analyzer, using Suscan core and Sigutils DSP library."}, +{"name":"sigil","description":"Sigil is a multi-platform EPUB ebook editor."}, +{"name":"sigma-file-manager","description":"A free, open-source, modern file manager."}, +{"name":"sigmaspectra","description":"Semi-automated selection and scaling of time series."}, +{"name":"signal","description":"Unofficial AppImage package for Signal (communication)."}, +{"name":"silex-desktop","description":"This is the official Silex desktop version."}, +{"name":"siliconsneaker","description":"View runs from your Garmin brand watch"}, +{"name":"silverkey","description":"The best Qt Application Ever."}, +{"name":"simdock","description":"Small dock with pseudo-transparency and good window handling."}, +{"name":"simdsp","description":"DSP Simulator."}, +{"name":"simitone","description":"Unofficial, re-implementation of The Sims 1, based off of FreeSO."}, +{"name":"simple-s3-uploader","description":"Easily uploading files and sharing links via AWS S3."}, +{"name":"simple-scan","description":"Make a digital copy of your photos and documents. Simple scanning utility for the GNOME desktop environment."}, +{"name":"simple-timer","description":"A really simple timer with a customizable logo and heading."}, +{"name":"simplechroot","description":"Simple command line chroot with ease."}, +{"name":"simpleinstabot","description":"Simple Instagram bot."}, +{"name":"simplenote-electron","description":"Simplenote."}, +{"name":"simpleos","description":"EOS Blockchain Interface & Wallet."}, +{"name":"simplescreenrecorder","description":"Unofficial. Feature-rich screen recorder supporting X11 & OpenGL."}, +{"name":"simplest-file-renamer","description":"Simplest file renamer, rename your files quickly and easily."}, +{"name":"simplex-chat","description":"First messaging platform operating without user identifiers."}, +{"name":"simplex-solver","description":"Simplex for optimization problems."}, +{"name":"simtoolkitpro","description":"The all-in-one flight simulation EFB."}, +{"name":"simutrans","description":"Unofficial, a freeware and open-source transportation simulator."}, +{"name":"singlebox","description":"AppView template for WebCatalog."}, +{"name":"sinon","description":"A handy video tool."}, +{"name":"sioyek","description":"PDF viewer designed for reading research papers and technical books."}, +{"name":"sipgate-softphone","description":"The sipgate softphone is developed directly by sipgate."}, +{"name":"siyuan","description":"A local-first personal knowledge management system."}, +{"name":"size","description":"Sizes and total size of binary files. This is part of \"am-utils\" suite."}, +{"name":"skanpage","description":"A simple scanning application. This is part of \"kdeutils\"."}, +{"name":"skyemu","description":"Game Boy Advance, Game Boy, Game Boy Color, and DS Emulator."}, +{"name":"skype","description":"Unofficial. VoIP-based videoconferencing, voice calls and instant messaging app."}, +{"name":"slack","description":"Unofficial AppImage of Slack."}, +{"name":"slackbackup","description":"An app to archive Slack messages."}, +{"name":"slacktronic","description":"Connect your Slack workspace to Arduino."}, +{"name":"slang-ed","description":"An Electron/Ionic app to edit i18n language translations files."}, +{"name":"sleek","description":"Multiplatform todo.txt manager."}, +{"name":"sleep","description":"Delay for a specified amount of time. This is part of \"am-utils\" suite."}, +{"name":"slic3r","description":"Open Source toolpath generator for 3D printers."}, +{"name":"slippi","description":"Slippi Launcher program for browsing and playing replays."}, +{"name":"slogidex","description":"Task management and automation tool."}, +{"name":"smallbasic","description":"A fast and easy to learn BASIC language interpreter."}, +{"name":"smartservogui","description":"Scan for servo devices easily view."}, +{"name":"smassh","description":"Smassh your Keyboard, TUI Edition."}, +{"name":"smath-studio","description":"Tiny, but powerful mathematical program with WYSIWYG editor."}, +{"name":"smf-dsp","description":"Standard MIDI file player."}, +{"name":"smplayer","description":"Media Player with built-in codecs for all audio and video formats."}, +{"name":"smuview","description":"A Qt based source measure unit GUI for sigrok."}, +{"name":"snake-js","description":"Canvas/JavaScript based Snake Game with support for controllers."}, +{"name":"snapclear","description":"Remove Image Background with AI for Free Offline."}, +{"name":"snapmaker-orca","description":"G-code generator for 3D printers (Bambu, Prusa, Voron, VzBot, RatRig, Creality...)."}, +{"name":"snapshot-slider","description":"Present/print/email Snapshots of modern mathematics."}, +{"name":"snes9x","description":"Snes9x - Portable Super Nintendo Entertainment System TM emulator."}, +{"name":"snes9x-enhanced","description":"Unofficial, Snes9x - Portable Super Nintendo Entertainment System TM emulator."}, +{"name":"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."}, +{"name":"snippetstore","description":"A snippet management app for developers."}, +{"name":"snomcontrol","description":"An application to control snom D3xx phones from the desktop."}, +{"name":"snowball","description":"Find and filter literature, fast."}, +{"name":"snowboardkids2-recomp","description":"Unofficial AppImage of game Snowboard Kids 2 Recompilation."}, +{"name":"soapy-sdr","description":"I/Q recorder and processor using SoapySDR as backend."}, +{"name":"soar","description":"A fast, modern package manager for Static Binaries, Portable Formats, AppImage, AppBundle, FlatImage, Runimage & More."}, +{"name":"socnetv","description":"Social Network Analysis and Visualization software."}, +{"name":"soft-serve","description":"The mighty, self-hostable Git server for the command line."}, +{"name":"software-challenge-gui","description":"GUI für die Software-Challenge."}, +{"name":"soh-enhanced","description":"Unofficial, Ship of Harkinian."}, +{"name":"soil-editor","description":"A tool to edit the soil properties, CRITERIA1D."}, +{"name":"solaar","description":"Unofficial AppImage of solaar."}, +{"name":"solars","description":"Visualize the planets of our solar system."}, +{"name":"solarwallet","description":"Stellar wallet. Secure and user-friendly."}, +{"name":"songrec","description":"Unofficial, an open-source Shazam client for Linux."}, +{"name":"sonic-3-air","description":"Unofficial, Source and data to build Sonic 3 A.I.R. (Angel Island Revisited) and the Oxygen Engine."}, +{"name":"sonic-mania-decompilation","description":"Unofficial, a complete decompilation of Sonic Mania (2017)."}, +{"name":"sonicvisualiser","description":"Viewing and analysing the contents of music audio files."}, +{"name":"sonixd","description":"A full-featured Subsonic/Jellyfin compatible desktop music player."}, +{"name":"sonos-controller","description":"An Electron based linux app for controlling your sonos system."}, +{"name":"sonusmix","description":"Next-gen Pipewire audio routing tool."}, +{"name":"sort","description":"Sort lines of text files. This is part of \"am-utils\" suite."}, +{"name":"soul-arena","description":"Bleach-based online multiplayer strategy game."}, +{"name":"sound-space-plus","description":"Unofficial AppImage of sound-space-plus, Rhythm-based aim game."}, +{"name":"soundcloud-rpc","description":"A SoundCloud client with Discord Rich Presence and AdBlock."}, +{"name":"sourcetrail","description":"Source explorer to get you productive on unfamiliar source code."}, +{"name":"sozi","description":"A \"zooming\" presentation editor."}, +{"name":"spacebar","description":"Themeable and extendable discord-compatible native Spacebar client."}, +{"name":"spacebar-debug","description":"Extendable discord-compatible native Spacebar client, debug."}, +{"name":"spacecadet","description":"Unofficial. Reverse engineered port of 3D Pinball for Windows XP Space Cadet."}, +{"name":"spacewars","description":"A re-imagining of the classic game Spacewar using Amethyst engine."}, +{"name":"spaghettikart-enhanced","description":"Unofficial, Mario Kart 64 PC game Port."}, +{"name":"spark-wallet","description":"A wallet GUI for c-lightning, accessible over web/mobile/pc."}, +{"name":"speak-to-ai","description":"Speak to AI - native Linux voice-to-text app."}, +{"name":"speaky-miniplayer","description":"A miniplayer with a synthetic radio speaker."}, +{"name":"speed-dreams","description":"A Torcs fork, 3d motorsport simulation and race cars game."}, +{"name":"speedcrunch","description":"Unofficial, a high-precision scientific calculator featuring a fast, keyboard-driven user interface."}, +{"name":"speedyloader","description":"Speeduino universal firmware loader."}, +{"name":"speek","description":"Privacy focused messenger."}, +{"name":"spek","description":"Unofficial AppImage of Spek."}, +{"name":"sphia","description":"A Proxy Handling Intuitive Application."}, +{"name":"spicy-launcher","description":"Cross-platform launcher for Spicy Lobster games."}, +{"name":"spivak","description":"Karaoke player based on GStreamer and Qt5."}, +{"name":"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."}, +{"name":"split","description":"Divide a file into multiple smaller files. This is part of \"am-utils\" suite."}, +{"name":"spm","description":"A simple CLI package manager written in bash mainly for AppImages."}, +{"name":"spmp","description":"A YouTube Music client with a focus on customisation of colours and song metadata."}, +{"name":"sponge-hash-aes256","description":"A sponge-based secure hash function that uses AES-256 as its internal PRF."}, +{"name":"spotifetch","description":"A simple and beautiful CLI fetch tool for spotify, now rusty."}, +{"name":"spotify","description":"Unofficial. A proprietary music streaming service."}, +{"name":"spotify-candidate","description":"Unofficial. A proprietary music streaming service."}, +{"name":"spotify-dl","description":"A command-line utility to download songs and playlists directly from Spotify's servers."}, +{"name":"spotify-edge","description":"Unofficial. A proprietary music streaming service."}, +{"name":"spotify-player","description":"A Spotify player in the terminal with full feature parity."}, +{"name":"spotify-qt","description":"Lightweight Spotify client using Qt."}, +{"name":"spotify-tui","description":"Spotify for the terminal written in Rust."}, +{"name":"spotube","description":"Open source Spotify client that doesn't require Premium."}, +{"name":"spritemate4electron","description":"A simple Electron-wrapper for Esshahn's awesome Spritemate-webapp."}, +{"name":"sptlrx","description":"Synchronized lyrics in your terminal."}, +{"name":"spyglass","description":"A personal search engine to create a searchable library from your personal documents, interests, and more."}, +{"name":"sqlite3","description":"Command-line tool for managing SQLite databases. This is part of \"platform-tools\"."}, +{"name":"sqlitebrowser","description":"DB Browser is a light GUI editor for SQLite databases."}, +{"name":"squirrel-disk","description":"Cross-Platform and Super Fast Disk Usage Analysis Tool."}, +{"name":"srb2","description":"Unofficial, a 3D Sonic the Hedgehog fangame based on a modified version of Doom Legacy."}, +{"name":"srb2k","description":"AppImage Package for Sonic Robo Blast 2 Kart, game."}, +{"name":"srb2kart","description":"Unofficial AppImage of SRB2kart."}, +{"name":"ssh-mitm","description":"Server for security audits supporting public key authentication."}, +{"name":"ssplot","description":"A simple plotting utility for dynamical systems."}, +{"name":"st","description":"Unofficial AppImage of the suckless terminal st."}, +{"name":"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."}, +{"name":"stabilitymatrix","description":"Multi-Platform Package Manager for Stable Diffusion, a deep AI learning model used for converting text to images."}, +{"name":"stacer","description":"Linux System Optimizer and Monitoring."}, +{"name":"stack-wallet","description":"Stack Wallet, a multicoin, cryptocurrency wallet."}, +{"name":"stackandconquer","description":"A challenging tower conquest board game \"Mixtour\" inspired."}, +{"name":"standard-notes","description":"A simple and private place for your notes."}, +{"name":"starc","description":"Story Architect, reinventing the screenwriting software."}, +{"name":"starfox64recomp","description":"Unofficial, a native port of Starfox 64, statically recompiled."}, +{"name":"starship","description":"The minimal, blazing-fast, and infinitely customizable prompt for any shell."}, +{"name":"stash-electron","description":"The friendly secret storage made for teams."}, +{"name":"stat","description":"Display file or file system status. This is part of \"am-utils\" suite."}, +{"name":"station","description":"A single place for all of your web applications."}, +{"name":"statsbook-tool","description":"A tool for error checking WFTDA Statsbooks."}, +{"name":"statuspilatus","description":"Monitor your PC like never before."}, +{"name":"stdbuf","description":"With modified buffering operations for its. This is part of \"am-utils\" suite."}, +{"name":"steam","description":"Unofficial. The ultimate destination for playing, discussing, and creating games."}, +{"name":"steam-rom-manager","description":"An app for managing ROMs in Steam."}, +{"name":"steam-tui","description":"Rust TUI client for steamcmd."}, +{"name":"steamcad","description":"2D CAD especially designed to draw steam locomotives."}, +{"name":"steamdepotdownloadergui","description":"Easily download older versions of games from Steam."}, +{"name":"steem-messenger","description":"Messer for Steem."}, +{"name":"stele","description":"Kiosk app wrapper for museum media exhibits."}, +{"name":"stella","description":"Unofficial, A multi-platform Atari 2600 Emulator."}, +{"name":"stellarium","description":"Planetarium that shows a realistic sky in 3D."}, +{"name":"stellarmaps","description":"Stylized maps from Stellaris saves."}, +{"name":"stew","description":"An independent package manager for compiled binaries."}, +{"name":"sticker-convert","description":"Convert animated stickers."}, +{"name":"stirling-pdf","description":"Unofficial. Powerful, open-source PDF editing platform."}, +{"name":"stockstalk","description":"Your stocks on your desktop."}, +{"name":"stoplight","description":"The kickass API platform."}, +{"name":"storadit","description":"Minimalistic Todo list/notes taking app."}, +{"name":"storaji","description":"The Light/Responsive Inventory Management System."}, +{"name":"storyboarder","description":"Visualize a story as fast you can draw stick figures."}, +{"name":"strace","description":"Trace system calls and signals. This is part of \"am-utils\" suite."}, +{"name":"strans","description":"A powerful command-line utility."}, +{"name":"strata","description":"Semi-automated selection and scaling of time series."}, +{"name":"strawberry","description":"Unofficial AppImage of the strawberry music player."}, +{"name":"streamdock","description":"Streaming service viewer."}, +{"name":"streamlink","description":"Command-line which pipes video streams from various services."}, +{"name":"streamlink-twitch-gui","description":"A multi platform Twitch.tv browser for Streamlink."}, +{"name":"streamon","description":"Create streaming links to instagram live."}, +{"name":"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."}, +{"name":"stretchly","description":"App that reminds you to take breaks when working on your PC."}, +{"name":"strings","description":"Strings is another bad static string library, written in C. This is part of \"am-utils\" suite."}, +{"name":"strip","description":"And other data from object files. This is part of \"am-utils\" suite."}, +{"name":"strongbox","description":"A World of Warcraft Addon Manager aimed at Linux players."}, +{"name":"structure","description":"A knowledge management tool."}, +{"name":"stty","description":"Change and print terminal line settings. This is part of \"am-utils\" suite."}, +{"name":"studymd","description":"Flashcards from Markdown."}, +{"name":"stunt-car-remake","description":"Remake of the old game Stunt Car Racer."}, +{"name":"subillmanager","description":"A simple Flutter app to manage electricity bill."}, +{"name":"substrate-ide","description":"Graphic IDE for developing Substrate blockchains."}, +{"name":"subsurface","description":"Official upstream of the Subsurface divelog program."}, +{"name":"subtitld","description":"Transform your video content creation with Subtitld, the open source software that streamlines your video content creation process."}, +{"name":"subtitle-composer","description":"KF5/Qt Video Subtitle Editor for KDE."}, +{"name":"subtitler","description":"Quickly download subtitles."}, +{"name":"sultanpos","description":"Simple POS for minimarket."}, +{"name":"sum","description":"Checksum and count the blocks in a file. This is part of \"am-utils\" suite."}, +{"name":"summoners.war.exporter","description":"To parse intercepted data from Summoners War."}, +{"name":"sumoco","description":"Simple Unified Model for Orthopaedics."}, +{"name":"sunny","description":"Screenshot software that supports OCR and image translation features."}, +{"name":"sunsama","description":"The daily planner for elite professionals."}, +{"name":"sunshine","description":"Sunshine is a Gamestream host for Moonlight."}, +{"name":"sunvox","description":"Unofficial. Small, fast and powerful modular synthesizer with pattern-based sequencer (tracker)."}, +{"name":"sup","description":"A Slack client with WhatsApp like UI."}, +{"name":"super-zsnes","description":"Unofficial AppImage of SUPER ZSNES."}, +{"name":"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."}, +{"name":"supercell-wx","description":"Supercell Wx is a free, open source advanced weather radar viewer."}, +{"name":"superfile","description":"Pretty fancy and modern terminal file manager."}, +{"name":"supermariowar","description":"Unofficial, a fan-made multiplayer Super Mario Bros. style deathmatch game."}, +{"name":"supermodel","description":"Unofficial, Sega Model 3 arcade emulator."}, +{"name":"supernotes","description":"Enjoy efficient note-taking without the hassle."}, +{"name":"superpaper","description":"A cross-platform multi monitor wallpaper manager."}, +{"name":"superproductivity","description":"An advanced todo list app with integrated Timeboxing."}, +{"name":"superslicer-bin","description":"G-code generator for 3D printers."}, +{"name":"superslicer-prerelease-bin","description":"G-code generator for 3D printers."}, +{"name":"supersonic","description":"A lightweight and full-featured cross-platform desktop client for self-hosted music servers."}, +{"name":"supertag","description":"A tag-based filesystem written in Rust."}, +{"name":"supertux","description":"Classic 2D jump'n run sidescroller game inspired to Super Mario."}, +{"name":"supertuxkart","description":"Free kart racing game focused on Fun!"}, +{"name":"supertuxkart-dev","description":"Free kart racing game focused on Fun! Pre-release."}, +{"name":"surrealist","description":"Surrealist is the ultimate way to visually manage your SurrealDB database."}, +{"name":"suwayomi","description":"A rewrite of Tachiyomi for the Desktop."}, +{"name":"svelte-electron","description":"Create desktop apps with this Svelte boilerplate."}, +{"name":"svgwall","description":"SVG Wallpaper Utility for Xorg."}, +{"name":"sview","description":"3D Stereoscopic media player for videos and images."}, +{"name":"swaglyrics","description":"SwagLyrics AppImage, unofficial."}, +{"name":"swapoff","description":"Enable/disable devices and files for paging and. This is part of \"am-utils\" suite."}, +{"name":"swapon","description":"Enable/disable devices and files for paging and. This is part of \"am-utils\" suite."}, +{"name":"swc-minecraft-launcher","description":"SWC Minecraft Launcher."}, +{"name":"sweeper","description":"System Cleaner. This is part of \"kdeutils\"."}, +{"name":"sweethome3d","description":"An interior design app to draw house plans & arrange furniture."}, +{"name":"swell","description":"Testing for streaming APIs, right at your desktop."}, +{"name":"swiftnessx","description":"Electron application boilerplate based on React/Webpack."}, +{"name":"swifty","description":"Free Offline-first Password Manager."}, +{"name":"swiftynotes","description":"Unofficial AppImage of swiftynotes."}, +{"name":"swish","description":"Command Line Interface for Swisstransfer Infomaniak's free service."}, +{"name":"switchcraft","description":"Switchcraft watches GNOME's light/dark preference and runs your shell commands when the theme changes."}, +{"name":"switchhosts","description":"Switch hosts quickly!"}, +{"name":"switchshuttle","description":"Run predefined commands in various terminal applications."}, +{"name":"swradio","description":"Shortwave receiver for use with sdrplay/hackrf/dabsticks/pmsdr."}, +{"name":"symphonium","description":"A tool to help when learning to play the piano."}, +{"name":"sync","description":"Backup and synchronization service. This is part of \"am-utils\" suite."}, +{"name":"syncmyl2p","description":"L2P synchronisation tool."}, +{"name":"syncplay","description":"Synchronize video playback over network."}, +{"name":"syncthing","description":"Open Source Continuous File Synchronization."}, +{"name":"syncthingctl","description":"Tray control application and Dolphin/Plasma integration for Syncthing."}, +{"name":"syncthingtray","description":"Tray application and Dolphin/Plasma integration for Syncthing."}, +{"name":"synfig","description":"Unofficial. Synfig Studio animation software."}, +{"name":"synthein","description":"A space ship building and combat game."}, +{"name":"synthv1","description":"An old school polyphonic synthesizer."}, +{"name":"system-monitoring-center","description":"Unofficial. Multi-featured system monitor."}, +{"name":"sysz","description":"An fzf terminal UI for systemctl."}, +{"name":"szyszka","description":"Szyszka is fast and powerful file renamer."}, +{"name":"t.viewer","description":"Cross Platform Tizen Log Viewer."}, +{"name":"t3code","description":"T3 Code is a minimal web GUI for coding agents (currently Codex and Claude, more coming soon)."}, +{"name":"tabby","description":"A terminal for a more modern age"}, +{"name":"tablo-tools","description":"Tools to Bulk Delete and Export from Tablo DVR."}, +{"name":"tabularis","description":"A lightweight, developer-focused database management tool."}, +{"name":"tac","description":"Concatenate and print files in reverse. This is part of \"am-utils\" suite."}, +{"name":"tachoparser","description":"Unofficial AppImage of tachoparser, CLI and GUI application for reading DDD tachograph cards."}, +{"name":"tag-editor","description":"Tag Editor, supports MP4, ID3, Vorbis, Opus, FLAC and Matroska."}, +{"name":"tagger","description":"Unofficial. Simple audio tagger with support for various audio formats."}, +{"name":"tagspaces","description":"An offline, open source, document manager with tagging support."}, +{"name":"tagtime-desktop","description":"Time tracking for space cadets, desktop edition."}, +{"name":"tail","description":"Output the last part of files. This is part of \"am-utils\" suite."}, +{"name":"taisei-project","description":"Unofficial, A free and open-source Touhou Project fangame."}, +{"name":"talktype","description":"Linux speech to text app."}, +{"name":"tamga","description":"A 3D sculpting, sketching, and stylized rendering app."}, +{"name":"tangent","description":"A clean and powerful open source notes app."}, +{"name":"tar","description":"Utility used to store, backup, and transport files. This is part of \"am-utils\" suite."}, +{"name":"taradino","description":"Unofficial, SDL2 port of Rise of the Triad."}, +{"name":"taskell","description":"Command-line Kanban board/task manager with support for Trello boards and GitHub projects."}, +{"name":"taskizer","description":"A task management app."}, +{"name":"tasks-org","description":"Private, ad-free task lists. Optional sync with Google Tasks, CalDAV or EteSync."}, +{"name":"tastee-ui","description":"Tool helping you write executable specifications in your lang."}, +{"name":"tauon","description":"Unofficial, a music player for the desktop."}, +{"name":"tb","description":"Tasks, boards & notes for the command-line habitat."}, +{"name":"tbc-video-export","description":"Tool for exporting S-Video and CVBS-type TBCs to video files."}, +{"name":"tc","description":"A desktop chat client for Twitch."}, +{"name":"tdlib-rs","description":"Rust wrapper around the Telegram Database Library."}, +{"name":"teams","description":"Unofficial, Business communication platform developed by Microsoft."}, +{"name":"teamviewer","description":"Deliver remote IT support to your customers and colleagues, anytime, anywhere. Communication, network."}, +{"name":"teamviewer-host","description":"Host utility for TeamViewer, if you want to set up unattended access to a device."}, +{"name":"teamviewer-qs","description":"QuickSupport utility for TeamViewer, if you want to receive support."}, +{"name":"tee","description":"Read from standard input and write to standard output and. This is part of \"am-utils\" suite."}, +{"name":"teledrive","description":"Automatically backup Telegram Saved Messages."}, +{"name":"telegram","description":"Official desktop version of Telegram messaging app."}, +{"name":"telly-skout","description":"A convergent Kirigami TV guide. This is part of \"kdeutils\"."}, +{"name":"tenacity","description":"An easy-to-use, cross-platform multi-track audio editor/recorder."}, +{"name":"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."}, +{"name":"tere","description":"Terminal file explorer."}, +{"name":"terminalos-sim","description":"A terminalOS simulator."}, +{"name":"termora","description":"A terminal emulator and SSH client."}, +{"name":"termshot","description":"Creates screenshots based on terminal command output."}, +{"name":"teslacam-browser","description":"A minimal TeslaCam Browser."}, +{"name":"tesler","description":"The Tesla Sentinel Viewer."}, +{"name":"tess","description":"A hackable, simple, rapid and beautiful terminal."}, +{"name":"tesseract","description":"Tesseract Open Source OCR Engine AppImage."}, +{"name":"test","description":"Check file types and compare values. This is part of \"am-utils\" suite."}, +{"name":"testapp","description":"testapp"}, +{"name":"testdisk","description":"TestDisk & PhotoRec, tools to recover lost partitions and files."}, +{"name":"tetanes","description":"A cross-platform NES emulator written in Rust using wgpu."}, +{"name":"tev","description":"High dynamic range (HDR) image viewer for people who care about colors."}, +{"name":"texmacs","description":"Free scientific text editor, inspired by TeX and GNU Emacs."}, +{"name":"texstudio","description":"LaTeX development environment."}, +{"name":"textnote","description":"Simple tool for creating and organizing daily notes on the command line."}, +{"name":"textosaurus","description":"Cross-platform text editor based on Qt and Scintilla."}, +{"name":"tfcbm","description":"The * Clipboard Manager."}, +{"name":"tgpt","description":"AI Chatbots in terminal without needing API keys."}, +{"name":"the-way","description":"A code snippets manager for your terminal."}, +{"name":"thedesk","description":"Mastodon Client for PC."}, +{"name":"theframe","description":"Animation tool."}, +{"name":"theia-blueprint","description":"Building desktop-based products based on Eclipse Theia."}, +{"name":"thermusqt","description":"Calculate particle composition of hadronic state."}, +{"name":"theweb","description":"Web Browser."}, +{"name":"thief","description":"An innovative cross-platform fishing tool, in chinese."}, +{"name":"thinreports-section-editor","description":"A template editor for Thinreports."}, +{"name":"thlink","description":"Touhou Project Game Netplay Tool."}, +{"name":"thoptv","description":"Enjoy Ultimate Movies, sports Matches, IPL and Latest Shows."}, +{"name":"thorium","description":"Web Browser, a Chromium fork including Widevine and FFmpeg support."}, +{"name":"thorium-client","description":"A locked-down electron kiosk for Thorium."}, +{"name":"thorium-reader","description":"Desktop application to read ebooks."}, +{"name":"thunderbird","description":"Free and open source eMail client, Stable."}, +{"name":"thunderbird-beta","description":"Free and open source eMail client, Beta Edition."}, +{"name":"thunderbird-nightly","description":"Free and open source eMail client, Nightly Edition."}, +{"name":"ticker","description":"Terminal stock ticker with live updates and position tracking."}, +{"name":"ticktick","description":"A To-Do List and Calendar to keep you organized."}, +{"name":"tidal-hifi","description":"The web version of listen.tidal.com running in electron."}, +{"name":"tidybit","description":"TidyBit is a simple handy tool that can organize messy collection of files and move them to a chosen folder."}, +{"name":"tilde-podcast","description":"Podcast client to listen to all you favorite podcasts."}, +{"name":"tiled","description":"Tile map editor."}, +{"name":"tilinggenerator","description":"Generator of regular and irregular tilings."}, +{"name":"timenaut","description":"Desktop time tracking application."}, +{"name":"timeout","description":"Run a command with a time limit. This is part of \"am-utils\" suite."}, +{"name":"tipitaka-pali-reader","description":"A Pali Reading app made in Flutter."}, +{"name":"tixati","description":"A New and Powerful P2P System 100% Free, Simple and Easy to Use Bittorrent Client."}, +{"name":"tkmm","description":"TotK Mod Manager, a mod manager and merger for Tears of the Kingdom."}, +{"name":"tlock","description":"Two-Factor Authentication Tokens Manager in Terminal."}, +{"name":"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."}, +{"name":"tmon","description":"A simple CLI tool for monitoring/reporting CPU temperatures."}, +{"name":"tmux","description":"Tmux AppImage build via Docker."}, +{"name":"tnt","description":"A computer-assisted translation tool."}, +{"name":"tockler","description":"An application that tracks your time by monitoring."}, +{"name":"tod","description":"An unofficial Todoist command line client written in Rust."}, +{"name":"todesktop","description":"Take your web app codebase and transform it into a cross platform desktop app with native functionality."}, +{"name":"todo-bash","description":"Todo list for the Bash command line."}, +{"name":"todoist","description":"The to-do list to organize work & life."}, +{"name":"todorant","description":"Todorant releases."}, +{"name":"todorust","description":"Simple ToDoList made in rust."}, +{"name":"toerings","description":"A clone of Conky Seamod using Tauri."}, +{"name":"toipe","description":"yet another typing test, but crab flavoured."}, +{"name":"tokodon","description":"Unofficial, a modern client for Mastodon and other decentralized servers that implement its API (such as Pixelfed)."}, +{"name":"tomatox","description":"An online free VIP video analysis player, in chinese."}, +{"name":"tonuino-toolbox","description":"SD card manager for your Tonuino."}, +{"name":"toolblex","description":"Bluetooth Low Energy (and Classic) device scanner and analyzer."}, +{"name":"top","description":"Display Linux processes. This is part of \"am-utils\" suite."}, +{"name":"topgrade","description":"Upgrade all the things, this is the universal upgrade manager."}, +{"name":"tor-browser","description":"Privacy-oriented Web Browser for sites blocked in your country."}, +{"name":"tor-browser-alpha","description":"Privacy-oriented Web Browser for sites blocked in your country."}, +{"name":"torcs","description":"The 3D Open Racing Car Game and Simulator."}, +{"name":"torrents_digger","description":"Torrents Digger searches already available torrents from internet."}, +{"name":"torrenttools","description":"Cli tool to inspect/create/edit BitTorrent metafiles."}, +{"name":"toru","description":"Bittorrent streaming CLI tool. Stream anime torrents real-time."}, +{"name":"torzu","description":"Unofficial AppImage of Torzu (fork of yuzu), with optimized builds for modern cpus."}, +{"name":"touch","description":"Change file timestamps. This is part of \"am-utils\" suite."}, +{"name":"touchhle","description":"Unofficial, High-level emulator for iPhone OS apps."}, +{"name":"tput","description":"tput - initialize a terminal, exercise its capabilities, or query terminfo database. This is part of \"am-utils\" suite."}, +{"name":"tr","description":"Translate or delete characters. This is part of \"am-utils\" suite."}, +{"name":"trackaudio","description":"A next generation Audio-For-VATSIM ATC Client."}, +{"name":"trans","description":"CLI translator using Google/Bing/Yandex Translate, etc..."}, +{"name":"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."}, +{"name":"transformer","description":"A command-line utility for splitting large files into chunks/pieces and merging them back together."}, +{"name":"translatium","description":"Translate Any Languages like a Pro."}, +{"name":"transmission-gtk","description":"Unofficial. Fast, easy, and free BitTorrent client, GTK+ GUI."}, +{"name":"transmission-qt","description":"Unofficial, Fast, easy, and free BitTorrent client, Qt GUI."}, +{"name":"transmissionic","description":"Remote for Transmission Daemon."}, +{"name":"trelby","description":"Unofficial, Trelby is simple, fast and elegantly laid out to make screenwriting simple."}, +{"name":"trenchbroom","description":"A modern, cross-platform level editor for Quake engine based games."}, +{"name":"trezor-suite","description":"Trezor Suite desktop application."}, +{"name":"trgui-ng","description":"Remote GUI for Transmission torrent daemon."}, +{"name":"triagem-touch","description":"Novo SGA triage client."}, +{"name":"trilium","description":"Build your personal knowledge base with Trilium Notes."}, +{"name":"trinity-desktop","description":"Desktop wallet for IOTA."}, +{"name":"tropy","description":"Research photo management."}, +{"name":"true","description":"Do nothing, successfully. This is part of \"am-utils\" suite."}, +{"name":"truncate","description":"Shrink or extend the size of a file to the specified. This is part of \"am-utils\" suite."}, +{"name":"tsort","description":"Perform a topological sort. This is part of \"am-utils\" suite."}, +{"name":"tssh","description":"trzsz-ssh is an alternative to ssh client, offers additional features."}, +{"name":"tt","description":"A simple Time Tracker to stay basic and intuitive."}, +{"name":"tts-now","description":"A chinese text-to-speech assistant based on the speech synthesi."}, +{"name":"ttth","description":"An electron based desktop app for online services."}, +{"name":"tty","description":"Print the file name of the terminal connected to standard. This is part of \"am-utils\" suite."}, +{"name":"ttyper","description":"Terminal-based typing test."}, +{"name":"tumblr-downloader-gui","description":"Download Tumblr posts that you liked."}, +{"name":"tumblr-scraper","description":"Scrape a Tumblr profile for user uploadede posts."}, +{"name":"tunepack","description":"Finding and download HQ audio files."}, +{"name":"tura","description":"Tura is an open-source, local-first AI coding agent that works with existing AI subscriptions and coding tools."}, +{"name":"turbowarp","description":"Scratch mod with a compiler to run projects faster."}, +{"name":"tusk","description":"Evernote desktop app."}, +{"name":"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."}, +{"name":"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."}, +{"name":"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."}, +{"name":"tuxfootball","description":"Unofficial, is a great 2D football game for Windows and Linux."}, +{"name":"tuxplorer","description":"Tuxplorer is a terminal based file explorer."}, +{"name":"tuxpuck","description":"Unofficial, hockey-like table game."}, +{"name":"twake","description":"Desktop App for Twake."}, +{"name":"tweaksophia","description":"An app to automatically renew the books of the SophiA system."}, +{"name":"tweet-tray","description":"Tweet quickly from the desktop without any distractions."}, +{"name":"twetter","description":"Client for the pubsub app."}, +{"name":"twitch-wrapper","description":"An Electron wrapper for Twitch.tv."}, +{"name":"typioca","description":"Cozy typing speed tester in terminal."}, +{"name":"uad-ng","description":"GUI Rust wrapper for ADB to debloat non-rooted Android devices."}, +{"name":"ubiquity","description":"A cross-platform markdown editor."}, +{"name":"ubports-installer","description":"A simple tool to install Ubuntu Touch on UBports devices"}, +{"name":"uefitool","description":"Unofficial, UEFI firmware image viewer and editor."}, +{"name":"ueli","description":"Cross-Platform Keystroke Launcher."}, +{"name":"uhk.agent","description":"Configuration app of the Ultimate Hacking Keyboard."}, +{"name":"uivonim","description":"Fork of the Veonim Neovim GUI."}, +{"name":"ul","description":"Translate underline sequences for terminals. This is part of \"am-utils\" suite."}, +{"name":"ultragrid","description":"UltraGrid low-latency audio/video network transmission system."}, +{"name":"ultrascreen","description":"Share your screens with friends."}, +{"name":"umount","description":"Unmount filesystems. This is part of \"am-utils\" suite."}, +{"name":"ums","description":"Universal Media Server. A DLNA, UPnP and HTTP(S) Media Server."}, +{"name":"uname","description":"Print system information. This is part of \"am-utils\" suite."}, +{"name":"uncompress","description":"Zcat - compress and expand data. This is part of \"am-utils\" suite."}, +{"name":"uncov","description":"A tool that collects and processes code coverage reports."}, +{"name":"undertaker141","description":"A free and open-source game-center for linux. Pre-configured Wine and Native Games for Linux."}, +{"name":"unetbootin","description":"Install Linux/BSD distributions to a partition or USB drive."}, +{"name":"unexpand","description":"Convert spaces to tabs. This is part of \"am-utils\" suite."}, +{"name":"ungoogled-chromium","description":"Chromium Web Browser without Google services."}, +{"name":"uniq","description":"Report or omit repeated lines. This is part of \"am-utils\" suite."}, +{"name":"unishellect","description":"JSON parser file and menu customizez Hyper-inspired."}, +{"name":"unityhub","description":"Unofficial AppImage for Unity Hub."}, +{"name":"unleashedrecomp","description":"Unofficial AppImage of UnleashedRecomp (Sonic Unleashed port)"}, +{"name":"unlink","description":"Call the unlink function to remove the specified file. This is part of \"am-utils\" suite."}, +{"name":"unofficial-homestuck-collection","description":"An offline collection of Homestuck and its related works."}, +{"name":"unofficial-zalo","description":"Unofficial Zalo App."}, +{"name":"unreel","description":"A GUI to create Reveal presentations."}, +{"name":"unshare","description":"Run program in new namespaces. This is part of \"am-utils\" suite."}, +{"name":"unveil","description":"Unveil Rs is a tool to create presentations from markdown inspired by reveal.js, mdbook and zola."}, +{"name":"unxz","description":"Xzcat, lzma, unlzma, lzcat - Compress or decompress .xz. This is part of \"am-utils\" suite."}, +{"name":"unyo","description":"Anime streaming and Manga reader desktop app without ads."}, +{"name":"unzip","description":"For extracting and viewing files in .zip archives. This is part of \"am-utils\" suite."}, +{"name":"updatedeployqt","description":"Tool to deploy auto update for qt applications."}, +{"name":"upgit","description":"CLI, another upload hub that supports clipboard. It works well with Typora, Snipaste, VSCode."}, +{"name":"upnote","description":"Stay focused and productive with a clean and clutter-free note space."}, +{"name":"upnotes","description":"A notes app for software developers."}, +{"name":"upscayl","description":"Free and Open Source AI Image Upscaler."}, +{"name":"uptime","description":"Tell how long the system has been running.. This is part of \"am-utils\" suite."}, +{"name":"urbanterror","description":"A team-based tactical game shooter based on the Quake 3 Engine."}, +{"name":"users","description":"Print the user names of users currently logged in to the. This is part of \"am-utils\" suite."}, +{"name":"utilso","description":"Regex Tester, JWT Verify, Image Converter, Format JSON, Decode..."}, +{"name":"uv","description":"An extremely fast Python package and project manager, written in Rust."}, +{"name":"uwufetch","description":"A meme system info tool for Linux, based on nyan/uwu trend."}, +{"name":"uyou","description":"This is a todo list with electron."}, +{"name":"uzdoom","description":"UZDoom is a feature centric port for all Doom engine games, based on GZDoom, adding an advanced renderer and powerful scripting capabilities."}, +{"name":"v2ray-desktop","description":"V2Ray GUI client for Linux."}, +{"name":"valeronoi","description":"Companion app for Valetudo for generating WiFi heat maps."}, +{"name":"vapour","description":"An alternative open source Steam client."}, +{"name":"varia","description":"Unofficial. Aria2-based advanced download manager with support for downloading files, torrents, video and audio + support for Chromium and Firefox extension."}, +{"name":"vcard-studio","description":"A contact management application with support for vCard file format (.vcf)."}, +{"name":"vcloudcam","description":"Solution for the camera systems of gas and fuel stations."}, +{"name":"vcmi","description":"Unofficial AppImage of vcmi open-source engine for Heroes of Might and Magic III"}, +{"name":"vdir","description":"List directory contents. This is part of \"am-utils\" suite."}, +{"name":"vechain","description":"A browser that empowers DApps on VeChain."}, +{"name":"vector","description":"Vector is a decentralized communication platform built on the Nostr Protocol."}, +{"name":"vegeta","description":"HTTP load testing tool and library. It's over 9000!"}, +{"name":"ventoy","description":"Tool to create bootable USB drive for ISO/WIM/IMG/VHDx/EFI files."}, +{"name":"veracrypt","description":"VeraCrypt is a free open source disk encryption software."}, +{"name":"verto","description":"A multi-currency crypto wallet with support for EOS & VTX."}, +{"name":"vesktop","description":"Vesktop gives you the performance of web Discord."}, +{"name":"vgmtrans","description":"A tool to convert proprietary, sequenced videogame music."}, +{"name":"vhc-viewer-wayland","description":"Vulkan Hardware Capability Viewer."}, +{"name":"vhc-viewer-x11","description":"Vulkan Hardware Capability Viewer."}, +{"name":"vhs","description":"Your CLI home video recorder."}, +{"name":"via","description":"Your keyboard's best friend."}, +{"name":"via-desktop","description":"VIA Desktop is an Electron application designed to provide an offline experience for VIA."}, +{"name":"vial","description":"GUI and a QMK fork for configuring your keyboard in real time."}, +{"name":"vibeprint-studio","description":"Unofficial AppImage of Vibeprint Studio."}, +{"name":"viber","description":"Proprietary cross-platform IM and VoIP software."}, +{"name":"viber-enhanced","description":"Unofficial. Enhanced AppImage of proprietary cross-platform IM and VoIP software."}, +{"name":"vice","description":"Unofficial AppImage of VICE."}, +{"name":"vicinae","description":"A high-performance, native launcher for your desktop built with C++ and Qt. Native, fast, extensible."}, +{"name":"vicut","description":"A Vim-based, scriptable, headless text editor for the command line."}, +{"name":"vidbee","description":"Download videos from almost any website worldwide."}, +{"name":"vidcutter","description":"Simple and fast video cutter and joiner."}, +{"name":"viddy","description":"A modern watch command line utility. Time machine and pager etc."}, +{"name":"video-hub","description":"A fastest way to browse and search for videos on your computer."}, +{"name":"video-trimmer","description":"Unofficial. Simple video trimming, with option to trim precisely or to trim without loosing video quality."}, +{"name":"videomass","description":"Free, open source and cross-platform GUI for FFmpeg."}, +{"name":"vieb","description":"Vim Inspired Electron Browser."}, +{"name":"vifm","description":"File manager with curses interface providing Vim-like environment."}, +{"name":"vigad","description":"Extract live-data from your screen."}, +{"name":"vikunja","description":"The open-source, self-hostable to-do app."}, +{"name":"vimeo-dl","description":"A cli tool to download private videos on vimeo. Written in golang."}, +{"name":"viper","description":"Launcher and Updater for TF2 Northstar."}, +{"name":"viper-browser","description":"Fast and lightweight Qt web browser."}, +{"name":"vipster","description":"Visual periodic structure editor."}, +{"name":"vircadia","description":"Open Source continuation of the High Fidelity metaverse."}, +{"name":"virt-manager","description":"Unofficial AppImage of virt-manager, interface for managing virtual machines."}, +{"name":"virtscreen","description":"Make your iPad/tablet/computer into a secondary monitor on Linux."}, +{"name":"virtualbox","description":"Powerful x86 virtualization for enterprise as well as home use."}, +{"name":"visipics","description":"Windows software to find and remove duplicate pictures. Unofficial AppImage built using \"wine32-deploy\" and powered by \"wine\"."}, +{"name":"visual-define-xml-editor","description":"Editor for CDISC Define-XML standard."}, +{"name":"visual-lvm","description":"Visual LVM the remote gui lvm manager for all linux platform."}, +{"name":"visual-studio-code","description":"Unofficial AppImage of Visual Studio Code."}, +{"name":"visualboyadvance-m","description":"Unofficial AppImage of VisualBoyAdvance-M."}, +{"name":"visualfamilytree","description":"Create a family tree with information and pictures."}, +{"name":"vita3k","description":"Experimental PlayStation Vita emulator."}, +{"name":"vitomu","description":"Easy to use video to audio converter."}, +{"name":"viu","description":"Terminal image viewer with native support for iTerm and Kitty."}, +{"name":"vivaldi-snapshot","description":"Unofficial. Advanced Web Browser, Testing Version."}, +{"name":"vivaldi-stable","description":"Unofficial. Advanced Web Browser, Stable Version."}, +{"name":"vivifyscrum","description":"Agile Tool for Professionals."}, +{"name":"vizgraph","description":"A simple tool for Using Graphviz."}, +{"name":"vk-desktop","description":"Cross-platform client VKontakte."}, +{"name":"vk-music-fs","description":"Listen to the music from VK."}, +{"name":"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."}, +{"name":"vkquake","description":"Vulkan Quake game port based on QuakeSpasm."}, +{"name":"vlc","description":"Unofficial. Free and Open Source Video & Media player for Audio, streaming and more."}, +{"name":"vlc-git","description":"Unofficial. Free and Open Source Video & Media player, GIT version."}, +{"name":"vnote","description":"Note-taking application for pleasant Markdown."}, +{"name":"vocabsieve","description":"Simple sentence mining tool for language learning."}, +{"name":"voicevox","description":"Offical Frontend for the free VOICEVOX TTS Engine."}, +{"name":"vokoscreenng","description":"Unofficial, a powerful screencast creator."}, +{"name":"volaris","description":"Volaris-Gui is the wrapper for Volaris, a secure file encryption software."}, +{"name":"vpaint","description":"Experimental vector graphics and 2D animation editor."}, +{"name":"vrcft-avalonia","description":"Cross-platform VRCFaceTracking made with Avalonia."}, +{"name":"vrcx","description":"Friendship management tool for VRChat."}, +{"name":"vrest-ng","description":"Zero code API test automation solution."}, +{"name":"vrew","description":"Your first video editor, your easiest choice."}, +{"name":"vscodium","description":"Community-driven, freely-licensed binary distribution of MS VSCode."}, +{"name":"vt","description":"VirusTotal Command Line Interface."}, +{"name":"vtm","description":"Text-based desktop environment."}, +{"name":"vue-calc","description":"A Simple VueJS's Calculator built with ElectronJS."}, +{"name":"vuerd","description":"A desktop ERD app."}, +{"name":"vup","description":"Private and decentralized cloud storage."}, +{"name":"w2vgrep","description":"semantic-grep for words with similar meaning to the query."}, +{"name":"walc","description":"WhatsApp Linux Client, Unofficial."}, +{"name":"walk","description":"Terminal file manager."}, +{"name":"walker","description":"Multi-Purpose Launcher with a lot of features. Highly Customizable and fast."}, +{"name":"wallettech","description":"BytechCoin GUI Wallet."}, +{"name":"warp","description":"Unofficial. Fast and secure file transfer through internet or local network exchanging a word-based code."}, +{"name":"warp-terminal","description":"Terminal reimagined with AI and collaborative tools."}, +{"name":"warteschlangensimulator","description":"A free, platform independent, discrete-event, stochastic simulator which allows to model queueing systems in form of flowcharts."}, +{"name":"wasistlos","description":"Unofficial, WhatsApp Linux Client, formerly known as \"whatsapp-for-linux\"."}, +{"name":"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."}, +{"name":"watched","description":"A media player and a browser for Excellent entertainment."}, +{"name":"watchflower","description":"Read and plot datas from your Xiaomi devices."}, +{"name":"watchit","description":"Open movies everywhere."}, +{"name":"waterfox","description":"A privacy-focused web browser engineered to give you speed, control, and peace of mind on the internet."}, +{"name":"waydroid-helper","description":"App that provides a user-friendly way to configure Waydroid and install extensions, including Magisk and ARM translation (android)."}, +{"name":"wazo-desktop","description":"Wazo desktop client for wazo VOIP server."}, +{"name":"wc","description":"Print newline, word, and byte counts for each file. This is part of \"am-utils\" suite."}, +{"name":"weakauras","description":"App to provide missing link between Wago.io and World of Warcraft."}, +{"name":"weatherdump","description":"A WeatherDump GUI."}, +{"name":"webamp","description":"Winamp Player 2.9 reimplementation in HTML5 and JS."}, +{"name":"webamp-desktop-enhanced","description":"Unofficial, experimental cross-platform desktop version of Winamp 2.9 reimplementation in electron."}, +{"name":"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."}, +{"name":"webcord","description":"A Discord and Fosscord client implemented without Discord API."}, +{"name":"webcord-enhanced","description":"Unofficial, A Discord and Fosscord client implemented without Discord API."}, +{"name":"webdesktop","description":"WebDesktop make apps with just a text editor and nodejs."}, +{"name":"webkitty","description":"Local web development IDE."}, +{"name":"webrecorder","description":"A complete packaging of Webrecorder hosted service in Electron."}, +{"name":"weektodo","description":"WeekToDo is a Free and Open Source Weekly Planner."}, +{"name":"westeroscraftlauncher","description":"Custom launcher for modded Minecraft, game."}, +{"name":"wethr","description":"Command line weather tool."}, +{"name":"wewechat","description":"Unofficial WeChat client built with React, MobX and Electron."}, +{"name":"wexond","description":"Extensible, fast and innovative web browser with material UI."}, +{"name":"wezterm","description":"A GPU-accelerated terminal emulator and multiplexer."}, +{"name":"wezterm-nightly","description":"A GPU-accelerated terminal emulator and multiplexer."}, +{"name":"wget","description":"Network utility to retrieve files from the web. This is part of \"am-utils\" suite."}, +{"name":"whalebird","description":"An Electron based Mastodon client."}, +{"name":"whatsdesk","description":"Unofficial, An unofficial client of WhatsApp."}, +{"name":"whatsie","description":"Unofficial, feature rich WhatsApp web client based on Qt WebEngine."}, +{"name":"whatstron","description":"Unofficial WhatsApp desktop client for Linux."}, +{"name":"whirlpool-gui","description":"Desktop GUI for Whirlpool by Samourai-Wallet."}, +{"name":"whispering","description":"Press shortcut → speak → get text. Free and open source. More local-first apps soon ❤️."}, +{"name":"who","description":"Show who is logged on. This is part of \"am-utils\" suite."}, +{"name":"whoami","description":"Print effective user name. This is part of \"am-utils\" suite."}, +{"name":"whu-library-seat","description":"Wuhan University Library Assistant, for Jinan University."}, +{"name":"wick-editor","description":"A free and open-source tool for creating games, animations and everything in-between!"}, +{"name":"widelands","description":"Real-time strategy game with singleplayer campaigns."}, +{"name":"wiiu-downloader","description":"Allows to download encrypted wiiu files from nintendo's official servers."}, +{"name":"wikilynx","description":"A simple game browser made using Qt C++ for playing wikipedia speed-runs the right way."}, +{"name":"win11-clipboard-history","description":"A beautiful, Windows 11-style Clipboard History Manager for Linux."}, +{"name":"winboat","description":"Run Windows apps on 🐧 Linux with ✨ seamless integration."}, +{"name":"window-pet","description":"Pet overlay app that lets you have adorable companion such as pets, anime characters on your screen."}, +{"name":"windows2usb","description":"Flash Drive burning utility, MBR/GPT, BIOS/UEFI, FAT32/NTFS."}, +{"name":"windows95","description":"Unofficial. Windows 95 in Electron."}, +{"name":"windusb-gui","description":"A modern, Rust-based graphical tool for creating bootable Windows USB installers on Linux."}, +{"name":"wine","description":"Unofficial. Run Windows programs, select a version from mmtrt/WINE_AppImage."}, +{"name":"wine-devel","description":"Unofficial. Compatibility layer to run x86_64 Windows programs, Dev Edition."}, +{"name":"wine-stable","description":"Unofficial. Compatibility layer to run x86_64 Windows programs, Stable."}, +{"name":"wine-staging","description":"Unofficial. Compatibility layer to run x86_64 Windows programs, Staging."}, +{"name":"wine-staging-ge-proton","description":"Unofficial. Run x86_64 Windows programs, Staging GE Proton."}, +{"name":"wine32-deploy","description":"Tool for creating AppImages for 32-bit Microsoft Windows apps."}, +{"name":"winrar","description":"Unofficial, data compression, encryption and archiving tool."}, +{"name":"wipeout-rewrite","description":"Unofficial, re-implementation of the 1995 PSX game wipEout."}, +{"name":"wire","description":"The most secure collaboration platform."}, +{"name":"wireframesketcher","description":"A wireframing tool that helps designers, developers and product managers. A desktop app and a plug-in for any Eclipse IDE."}, +{"name":"wireguard-gui","description":"A wireguard client GUI for Debian/Linux made with nextauri."}, +{"name":"wireshark","description":"Unofficial, the world's most popular network protocol analyze."}, +{"name":"wishdemo","description":"A μ Tcl/Tk distribution statically linked, AppImage."}, +{"name":"wives","description":"A beautiful, modern & feature-rich Terminal Emulator."}, +{"name":"wiznoteplus","description":"The third party that supports the plug-in is Zhinote client."}, +{"name":"wkp","description":"A CLI tool designed to fetch Wikipedia excerpts written in Rust."}, +{"name":"wled-gui","description":"Cross-platform desktop app for WLED."}, +{"name":"wlx-overlay-s","description":"Access your Wayland/X11 desktop from Monado/WiVRn/SteamVR."}, +{"name":"wnr","description":"Work/Rest Timer. Stricter. Prettier. More features."}, +{"name":"woke","description":"A REST client with grand ambitions and limited scope."}, +{"name":"wolai","description":"A new form of document/note/information system, in chinese."}, +{"name":"wonderlab","description":"A new generation Minecraft launcher."}, +{"name":"wonderwall","description":"Wallpaper manager for Linux."}, +{"name":"woocommerce-pos","description":"Electron Desktop App for WooCommerce POS"}, +{"name":"woof-doom","description":"Woof! is a continuation of the Boom/MBF bloodline of Doom source ports."}, +{"name":"wootility","description":"Utility for configuring Wooting keyboards."}, +{"name":"wooting-analog-midi","description":"Virtual MIDI device for, Wooting analog keyboards."}, +{"name":"wootomation","description":"The official Wooting Macros software."}, +{"name":"wora","description":"A beautiful player for audiophiles."}, +{"name":"workflowy","description":"A notetaking tool."}, +{"name":"wournal","description":"Simple \"digitial paper\" for note taking and PDF annotation. Heavily inspired by Xournal."}, +{"name":"wowup","description":"WowUp the World of Warcraft addon updater."}, +{"name":"wox","description":"A cross-platform launcher that simply works."}, +{"name":"wps-office","description":"Unofficial, Office suite built from the official .deb package."}, +{"name":"wrapbox","description":"An Electron wrapper for web pages."}, +{"name":"wsjtz","description":"AppImage of WSJT-Z – fork of WSJT-X with automation features."}, +{"name":"wsocks","description":"A light websocket based proxy."}, +{"name":"wsrx","description":"Controlled TCP-over-WebSocket forwarding tunnel."}, +{"name":"wtfutil","description":"The personal information dashboard for your terminal."}, +{"name":"wthrr","description":"Weather companion for the terminal."}, +{"name":"wxmaxima","description":"A document based interface for the computer algebra system Maxima."}, +{"name":"wxmedit","description":"A cross-platform Text/Hex Editor, an improved version of MadEdit."}, +{"name":"wyrmhole","description":"A cross-platform GUI wrapper for the p2p magic-wormhole.rs library."}, +{"name":"x-loc","description":"Extra localizations/translations manager for Stardew Valley."}, +{"name":"x-minecraft-launcher","description":"An Open Source Minecraft Launcher with Modern UX."}, +{"name":"x-pixiv","description":"CLI, pixiv downloader."}, +{"name":"xapkdetector","description":"APK/DEX detector that shows an information about build tools, libraries and protection of APK/DEX files."}, +{"name":"xargs","description":"Build and execute command lines from standard input. This is part of \"am-utils\" suite."}, +{"name":"xash3d-fwgs","description":"A game engine aimed to provide compatibility with Half-Life Engine and extend it."}, +{"name":"xash3d-fwgs-enhanced","description":"Unofficial, a game engine aimed to provide compatibility with Half-Life Engine and extend it."}, +{"name":"xbooxp","description":"A nifty software to upload homebrew apps into your Game Boy Advance (GBA) using an xboo cable."}, +{"name":"xbydriver","description":"Xiaobaiyang Cloud Drive - Powered by Alibaba Cloud Drive."}, +{"name":"xchat","description":"Chat with other people using Internet Relay Chat."}, +{"name":"xclock","description":"Unofficial AppImage of xclock."}, +{"name":"xcloud-desktop","description":"An unofficial desktop app for the XCloud web beta."}, +{"name":"xde","description":"The Expo Development Environment."}, +{"name":"xdelta3-cross-gui","description":"A cross-platform GUI for creating xDelta3 patches."}, +{"name":"xdg-ninja","description":"Script that checks your $HOME for unwanted files and directories."}, +{"name":"xelfviewer","description":"A multiplatform ELF file viewer/editor."}, +{"name":"xemu","description":"Original Xbox Emulator."}, +{"name":"xemu-enhanced","description":"Unofficial, original Xbox Emulator for Windows, macOS, and Linux (Active Development)."}, +{"name":"xenia-canary","description":"Unofficial AppImage of xenia-canary Xbox360 emulator."}, +{"name":"xenia-edge","description":"Xbox 360 Emulator Research Project, fork of the Xenia emulator, with the aim of quicker iteration and improvements to Vulkan backend."}, +{"name":"xeyes","description":"Unofficial, a \"follow the mouse\" X demo, using the X SHAPE extension."}, +{"name":"xgetter","description":"Download video on Youtube, Facebook, X(Twitter), Instagram, Tiktok, Bilibili, Douyin and more."}, +{"name":"xilinota","description":"Note-taking app boasting instant syncing among devices and direct keeping of markdown files."}, +{"name":"xiphos","description":"Unofficial, a Bible study tool using GTK."}, +{"name":"xl-converter","description":"Powerful image converter with support for multithreading."}, +{"name":"xlights","description":"A sequencer for Lights and sequences manager."}, +{"name":"xm8","description":"PC-8801 emulator."}, +{"name":"xmachoviewer","description":"XMachOViewer is a Mach-O viewer."}, +{"name":"xmedcon","description":"An open-source toolkit for medical image conversion."}, +{"name":"xmoto","description":"A challenging 2D motocross platform game, where physics play an important role."}, +{"name":"xnconvert","description":"A fast, powerful and free cross-platform batch image converter."}, +{"name":"xnviewmp","description":"Graphic viewer, browser, converter."}, +{"name":"xonsh","description":"Python-powered, cross-platform, Unix-gazing shell."}, +{"name":"xopcodecalc","description":"Opcode calculator / ASM calculator."}, +{"name":"xoreos","description":"Unofficial, A reimplementation of BioWare's Aurora engine."}, +{"name":"xournal++","description":"A C++ handwriting notetaking software with PDF annotation support."}, +{"name":"xournal++nightly","description":"C++ notetaking software with PDF annotation support, DEV."}, +{"name":"xournalpp","description":"Unofficial. Handwriting notetaking software with PDF annotation support. Written in C++ with GTK3."}, +{"name":"xpeviewer","description":"PE file viewer/editor."}, +{"name":"xpipe","description":"Your entire server infrastructure at your fingertips. Manage all your servers from your local desktop. No remote setup required."}, +{"name":"xplist","description":"Cross-platform Plist Editor."}, +{"name":"xplorer","description":"Xplorer, a customizable, modern file manager."}, +{"name":"xsnow","description":"Unofficial, let it snow on your desktop."}, +{"name":"xtomarkdown","description":"A cross-platform GUI application for converting documents to Markdown."}, +{"name":"xtool","description":"Cross-platform Xcode replacement. Build and deploy iOS apps with SwiftPM."}, +{"name":"xtuber","description":"Simple YouTube Downloader."}, +{"name":"xxh","description":"Bring your favorite shell wherever you go through the ssh."}, +{"name":"xyce","description":"Xyce Parallel Electronic Simulator."}, +{"name":"xz","description":"Library and command line tools for XZ and LZMA compressed files. This is part of \"am-utils\" suite."}, +{"name":"xzcat","description":"Xzcat, lzma, unlzma, lzcat - Compress or decompress .xz. This is part of \"am-utils\" suite."}, +{"name":"yaak","description":"The most intuitive desktop API client. Organize and execute REST, GraphQL, WebSockets, Server Sent Events, and gRPC."}, +{"name":"yaf","description":"Yet another system CLI fetch that is minimal and customizable."}, +{"name":"yaka","description":"No fuss todo-list manager with full keyboard navigation."}, +{"name":"yakit","description":"Cyber Security ALL-IN-ONE Platform."}, +{"name":"yakit-legacy","description":"Cyber Security ALL-IN-ONE Platform (legacy)."}, +{"name":"yam","description":"Unofficial Game Updater for the F95Zone platform."}, +{"name":"yamagi-quake-ii","description":"Unofficial, an enhanced client for id Software's Quake II."}, +{"name":"yamata-launcher","description":"A multi-platform game launcher designed to unify game catalogs, downloads, and libraries from multiple ecosystems into a single, extensible application."}, +{"name":"yana","description":"Note-taking app with nested documents, text search/editor, code..."}, +{"name":"yandex-browser","description":"Unofficial Yandex Browser AppImage, Stable."}, +{"name":"yandex-browser-beta","description":"Unofficial Yandex Browser AppImage, Beta."}, +{"name":"yandex-browser-corporate","description":"Unofficial Yandex Browser AppImage, Corporate."}, +{"name":"yandex-music","description":"Personal recommendations, mixes for any occasion and the latest musical releases."}, +{"name":"yangdownloader","description":"Downloads best-quality audio and video from YouTube."}, +{"name":"yank-note","description":"A Hackable Markdown Note Application for Programmers."}, +{"name":"yaya","description":"Yet Another Yahtzee-esque Application."}, +{"name":"yazi","description":"Blazing fast terminal file manager written in Rust."}, +{"name":"yes","description":"Output a string repeatedly until killed. This is part of \"am-utils\" suite."}, +{"name":"yesplaymusic","description":"A third party music player for Netease Music."}, +{"name":"yet-another-open-file-converter","description":"Simple Open Source Video and Image Conventer."}, +{"name":"ym-desktop","description":"The YouTube music desktop app."}, +{"name":"ymir","description":"Unofficial, Sega Saturn emulator."}, +{"name":"yolx","description":"A modern download tool developed with Flutter, powered by Aria 2 at its core."}, +{"name":"youplaytx","description":"A full-screen, dual-pane YouTube audio player for the terminal."}, +{"name":"youtube-download","description":"GUI and CLI for downloading YouTube video/audio."}, +{"name":"youtube-downloader","description":"Download video/audio from youtube (and instagram) videos."}, +{"name":"youtube-music","description":"Unofficial. Amazing electron wrapper for YouTube Music featuring plugins."}, +{"name":"youtube-tui","description":"An aesthetically pleasing YouTube TUI CLI written in Rust."}, +{"name":"youtubeanddownloader","description":"An app to use youtube and download videos as mp3s or mp4s."}, +{"name":"youtubesearchfilter","description":"YouTube searches with/without a pre-filter from CLI."}, +{"name":"yt-dlandcut","description":"Download and cut Youtube videos by providing url and time range."}, +{"name":"yt-dlg","description":"A front-end GUI of the popular youtube-dl written in wxPython."}, +{"name":"yt-dlp","description":"A feature-rich command-line audio/video downloader."}, +{"name":"ytarchive","description":"Garbage Youtube livestream downloader CLI."}, +{"name":"ytdownloader","description":"App for downloading Videos and Audios from hundreds of sites."}, +{"name":"ytermusic","description":"An in terminal youtube music client with focus on privacy, simplicity and performance."}, +{"name":"ytmdesktop","description":"A Desktop App for YouTube Music."}, +{"name":"ytmdesktop2","description":"Unofficial Youtube Music Desktop App, with LastFM support."}, +{"name":"yts-streaming","description":"Stream or play yts and torrent movies."}, +{"name":"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."}, +{"name":"yubikey-manager","description":"Configure your YubiKey over all USB transports."}, +{"name":"yup","description":"Arch Linux AUR Helper with ncurses functionality and better searching and sorting."}, +{"name":"yuview","description":"YUV player with an advanced analytic toolset."}, +{"name":"zap","description":"Delightful command line AppImage package manager for appimage.github.io."}, +{"name":"zapdesktop","description":"Desktop application for the lightning network."}, +{"name":"zapzap","description":"WhatsApp desktop application written in Pyqt6 + PyQt6-WebEngine."}, +{"name":"zapzap-enhanced","description":"Unofficial AppImage of ZapZap WhatsApp client."}, +{"name":"zcat","description":"Zcat - compress or expand files. This is part of \"am-utils\" suite."}, +{"name":"zed","description":"High-performance, multiplayer code editor from the creators of Atom."}, +{"name":"zegarek","description":"A simple clock with millisecond resolution."}, +{"name":"zegrapher","description":"Math graphing software."}, +{"name":"zelda64-recompiled","description":"Unofficial, a native port of the N64 Legend of Zelda games, statically recompiled."}, +{"name":"zellij","description":"A terminal workspace with batteries included."}, +{"name":"zen-app-manager","description":"Zen App Manager is a modern and lightweight startup manager that lets you manage startup applications from a single location."}, +{"name":"zen-browser","description":"Experience tranquillity while browsing the web without tracking."}, +{"name":"zenity","description":"Unofficial, A CLI utility that creates dialog boxes, GTK3 version."}, +{"name":"zenkit","description":"A platform for collaboration and project management."}, +{"name":"zenroomstudio","description":"Extensible IDE which targets multiple dev platforms."}, +{"name":"zettlr","description":"A Markdown Editor for the 21st century."}, +{"name":"zfind","description":"Search files, even inside tar/zip/7z/rar using a SQL-WHERE filter."}, +{"name":"zfxtop","description":"[WIP] fetch top for gen Z with X written by bubbletea enjoyer."}, +{"name":"zk","description":"A plain text note-taking assistant"}, +{"name":"zmk-studio","description":"ZMK Firmware. Modern, open source keyboard firmware."}, +{"name":"zmninja","description":"Ionic app for Home/Commerical Security Surveillance."}, +{"name":"znax","description":"Znax is a cross platform puzzle / arcade game using SDL2 libraries."}, +{"name":"znote","description":"A Beautiful markdown editor inspired by Jupyter."}, +{"name":"zod-engine","description":"Unofficial, an open source remake of the 1996 game Z by the Bitmap Brothers."}, +{"name":"zograscope","description":"Syntax-aware diff that provides a number of additional tools."}, +{"name":"zoo-design-studio","description":"The Zoo Design Studio app."}, +{"name":"zoom","description":"Unofficial. Video Conferencing and Web Conferencing Service."}, +{"name":"zotero","description":"Collect, organize, cite, and share your research sources."}, +{"name":"zoxide","description":"A smarter cd command. Supports all major shells."}, +{"name":"zramen","description":"Manage zram swap space."}, +{"name":"zsnes","description":"Unofficial, a Super Nintendo emulator."}, +{"name":"zsync","description":"Partial/differential file download client over HTTP. This is part of \"am-utils\" suite."}, +{"name":"zsync2","description":"A rewrite of the advanced file download/sync tool zsync."}, +{"name":"zulip","description":"Zulip Desktop Client for Linux."}, +{"name":"zx-poly","description":"a multi-CPU ZX-Spectrum 128 concept platform."}, +{"name":"zxinfo-file-browser","description":"Organize and manage your emulator files for ZX Spectrum."}, +{"name":"zy-player","description":"Video resource player, simple, ad-free and high-value."}, +{"name":"zyfun","description":"ZyPlayer. Cross-platform desktop video player, free and visually appealing."} ] 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..bccf14f0e 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://someapp.io/1.png https://someapp.io/2.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 diff --git a/apps/0ad b/apps/0ad new file mode 100644 index 000000000..31ef6014d --- /dev/null +++ b/apps/0ad @@ -0,0 +1,6 @@ +# 0ad +0 A.D. (pronounced “zero-ey-dee”) is a free, open-source, historical Real Time Strategy (RTS) game currently under development by Wildfire Games, a global group of volunteer game developers. As the leader of an ancient civilization, you must gather the resources you need to raise a military force and dominate your enemies. + + This is the official AppImage. +# SCREENSHOTS: https://github.com/user-attachments/assets/5a91001d-5c56-46e7-a33e-843fcf268248 +# SITES: https://play0ad.com \ No newline at end of file diff --git a/apps/0ad-prerelease b/apps/0ad-prerelease new file mode 100644 index 000000000..ec009a3d1 --- /dev/null +++ b/apps/0ad-prerelease @@ -0,0 +1,6 @@ +# 0ad-prerelease +0 A.D. (pronounced “zero-ey-dee”) is a free, open-source, historical Real Time Strategy (RTS) game currently under development by Wildfire Games, a global group of volunteer game developers. As the leader of an ancient civilization, you must gather the resources you need to raise a military force and dominate your enemies. + + This script installs the latest official development build. For the Stable release, see "0ad". +# SCREENSHOTS: https://upload.wikimedia.org/wikipedia/commons/3/3e/0_A.D._Seleucide.jpg +# SITES: https://play0ad.com \ No newline at end of file diff --git a/apps/0ad-prerelease.md b/apps/0ad-prerelease.md deleted file mode 100644 index c5e226756..000000000 --- a/apps/0ad-prerelease.md +++ /dev/null @@ -1,12 +0,0 @@ -# 0AD-PRERELEASE - - 0 A.D. (pronounced “zero-ey-dee”) is a free, open-source, historical Real Time Strategy (RTS) game currently under development by Wildfire Games, a global group of volunteer game developers. As the leader of an ancient civilization, you must gather the resources you need to raise a military force and dominate your enemies. - - This script installs the latest official development build. For the Stable release, see "0ad". - - ![Seleucide](https://upload.wikimedia.org/wikipedia/commons/3/3e/0_A.D._Seleucide.jpg) - - SITE: https://play0ad.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/0ad.md b/apps/0ad.md deleted file mode 100644 index a0cb0472f..000000000 --- a/apps/0ad.md +++ /dev/null @@ -1,12 +0,0 @@ -# 0AD - - 0 A.D. (pronounced “zero-ey-dee”) is a free, open-source, historical Real Time Strategy (RTS) game currently under development by Wildfire Games, a global group of volunteer game developers. As the leader of an ancient civilization, you must gather the resources you need to raise a military force and dominate your enemies. - - This is the official AppImage. - -![Screenshot](https://github.com/user-attachments/assets/5a91001d-5c56-46e7-a33e-843fcf268248) - - SITE: https://play0ad.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/12to11 b/apps/12to11 new file mode 100644 index 000000000..90381ec72 --- /dev/null +++ b/apps/12to11 @@ -0,0 +1,3 @@ +# 12to11 +Unofficial, tool for running Wayland applications on an X server. +# SITES: https://github.com/pkgforge-dev/12to11-AppImage \ No newline at end of file diff --git a/apps/12to11.md b/apps/12to11.md deleted file mode 100644 index 6601f6032..000000000 --- a/apps/12to11.md +++ /dev/null @@ -1,8 +0,0 @@ -# 12TO11 - - Unofficial, tool for running Wayland applications on an X server. - - SITE: https://github.com/pkgforge-dev/12to11-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/3d-puzzles b/apps/3d-puzzles new file mode 100644 index 000000000..6ff2e62b5 --- /dev/null +++ b/apps/3d-puzzles @@ -0,0 +1,3 @@ +# 3d-puzzles +3D-Puzzles are Rubik, Dogic and Dogic12. +# SITES: https://github.com/volatilflerovium/3D-Puzzles \ No newline at end of file diff --git a/apps/3d-puzzles.md b/apps/3d-puzzles.md deleted file mode 100644 index 226eaf725..000000000 --- a/apps/3d-puzzles.md +++ /dev/null @@ -1,8 +0,0 @@ -# 3D-PUZZLES - - 3D-Puzzles are Rubik, Dogic and Dogic12. - - SITE: https://github.com/volatilflerovium/3D-Puzzles - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/432hz-player b/apps/432hz-player new file mode 100644 index 000000000..2a59cd717 --- /dev/null +++ b/apps/432hz-player @@ -0,0 +1,6 @@ +# 432hz-player +Most music is recorded in 440hz. Many people claim that 432hz resonates more with the heart whereas 440hz resonates more with the brain, and that 432hz music feels better. Try it yourself. Play a music in 440hz and in 432hz, and see which one you prefer. Most people choose the 432hz version, and it's hard to go back to 440hz. + + This application uses a very high-quality pitch-shifting algorithm with low CPU usage. +# SCREENSHOTS: https://images.pling.com/img/00/00/66/21/66/1801758/screenshot-player432hz1.png +# SITES: https://github.com/mysteryx93/NaturalGroundingPlayer \ No newline at end of file diff --git a/apps/432hz-player.md b/apps/432hz-player.md deleted file mode 100644 index e5384f333..000000000 --- a/apps/432hz-player.md +++ /dev/null @@ -1,12 +0,0 @@ -# 432HZ-PLAYER - - Most music is recorded in 440hz. Many people claim that 432hz resonates more with the heart whereas 440hz resonates more with the brain, and that 432hz music feels better. Try it yourself. Play a music in 440hz and in 432hz, and see which one you prefer. Most people choose the 432hz version, and it's hard to go back to 440hz. - - This application uses a very high-quality pitch-shifting algorithm with low CPU usage. - - ![Screenshot](https://images.pling.com/img/00/00/66/21/66/1801758/screenshot-player432hz1.png) - - SITE: https://github.com/mysteryx93/NaturalGroundingPlayer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/5ire b/apps/5ire new file mode 100644 index 000000000..394d11370 --- /dev/null +++ b/apps/5ire @@ -0,0 +1,3 @@ +# 5ire +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. +# SITES: https://github.com/nanbingxyz/5ire \ No newline at end of file diff --git a/apps/5ire.md b/apps/5ire.md deleted file mode 100644 index 94212e84a..000000000 --- a/apps/5ire.md +++ /dev/null @@ -1,8 +0,0 @@ -# 5IRE - - 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. - - SITE: https://github.com/nanbingxyz/5ire - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/7z b/apps/7z new file mode 100644 index 000000000..1b00f0920 --- /dev/null +++ b/apps/7z @@ -0,0 +1,3 @@ +# 7z +Archiver with a high compression ratio. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/7z.md b/apps/7z.md deleted file mode 100644 index a21259712..000000000 --- a/apps/7z.md +++ /dev/null @@ -1,8 +0,0 @@ -# 7Z - - Archiver with a high compression ratio. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/7zip b/apps/7zip new file mode 100644 index 000000000..41a52519e --- /dev/null +++ b/apps/7zip @@ -0,0 +1,7 @@ +# 7zip +7-Zip is a file archiver with a high compression ratio. + + This package includes the commands "7zip" and "7zips". + + For "7z", see the version available in the "Toolpacks" database instead. +# SITES: https://www.7-zip.org \ No newline at end of file diff --git a/apps/7zip.md b/apps/7zip.md deleted file mode 100644 index 85ff84ca5..000000000 --- a/apps/7zip.md +++ /dev/null @@ -1,12 +0,0 @@ -# 7ZIP - - 7-Zip is a file archiver with a high compression ratio. - - This package includes the commands "7zip" and "7zips". - - For "7z", see the version available in the "Toolpacks" database instead. - - SITE: https://www.7-zip.org - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/86box b/apps/86box new file mode 100644 index 000000000..0a85f1c9b --- /dev/null +++ b/apps/86box @@ -0,0 +1,4 @@ +# 86box +86Box is a low level x86 emulator that runs older operating systems and software designed for IBM PC systems and compatibles from 1981 through fairly recent system designs based on the PCI bus. +# SCREENSHOTS: https://upload.wikimedia.org/wikipedia/commons/5/50/86Box_during_machine_boot.png +# SITES: https://github.com/86Box/86Box \ No newline at end of file diff --git a/apps/86box-enhanced b/apps/86box-enhanced new file mode 100644 index 000000000..c40cc7cba --- /dev/null +++ b/apps/86box-enhanced @@ -0,0 +1,3 @@ +# 86box-enhanced +Unofficial, emulator of x86-based machines based on PCem. +# SITES: https://github.com/pkgforge-dev/86box-AppImage-Enhanced \ No newline at end of file diff --git a/apps/86box-enhanced.md b/apps/86box-enhanced.md deleted file mode 100644 index 350080c43..000000000 --- a/apps/86box-enhanced.md +++ /dev/null @@ -1,8 +0,0 @@ -# 86BOX-ENHANCED - - Unofficial, emulator of x86-based machines based on PCem. - - SITE: https://github.com/pkgforge-dev/86box-AppImage-Enhanced - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/86box.md b/apps/86box.md deleted file mode 100644 index 8efc82969..000000000 --- a/apps/86box.md +++ /dev/null @@ -1,10 +0,0 @@ -# 86BOX - - 86Box is a low level x86 emulator that runs older operating systems and software designed for IBM PC systems and compatibles from 1981 through fairly recent system designs based on the PCI bus. - - ![Screenshot](https://upload.wikimedia.org/wikipedia/commons/5/50/86Box_during_machine_boot.png) - - SITE: https://github.com/86Box/86Box - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/9launcher b/apps/9launcher new file mode 100644 index 000000000..e0eb46ef6 --- /dev/null +++ b/apps/9launcher @@ -0,0 +1,3 @@ +# 9launcher +9Launcher is an actively maintained and cross platform remake of Touhou Relauncher! +# SITES: https://github.com/wearrrrr/9Launcher \ No newline at end of file diff --git a/apps/9launcher.md b/apps/9launcher.md deleted file mode 100644 index 057a9b5fe..000000000 --- a/apps/9launcher.md +++ /dev/null @@ -1,8 +0,0 @@ -# 9LAUNCHER - - 9Launcher is an actively maintained and cross platform remake of Touhou Relauncher! - - SITE: https://github.com/wearrrrr/9Launcher - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/aaaaxy b/apps/aaaaxy new file mode 100644 index 000000000..ccd17c3f0 --- /dev/null +++ b/apps/aaaaxy @@ -0,0 +1,3 @@ +# aaaaxy +A nonlinear puzzle platformer taking place in non-Euclidean geometry +# SITES: https://github.com/divVerent/aaaaxy \ No newline at end of file diff --git a/apps/aaaaxy.md b/apps/aaaaxy.md deleted file mode 100644 index fed6010a9..000000000 --- a/apps/aaaaxy.md +++ /dev/null @@ -1,8 +0,0 @@ -# AAAAXY - - A nonlinear puzzle platformer taking place in non-Euclidean geometry - - SITE: https://github.com/divVerent/aaaaxy - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ab-download-manager b/apps/ab-download-manager new file mode 100644 index 000000000..e86738426 --- /dev/null +++ b/apps/ab-download-manager @@ -0,0 +1,3 @@ +# ab-download-manager +A Download Manager that speeds up your downloads. +# SITES: https://github.com/amir1376/ab-download-manager \ No newline at end of file diff --git a/apps/ab-download-manager.md b/apps/ab-download-manager.md deleted file mode 100644 index f225f9024..000000000 --- a/apps/ab-download-manager.md +++ /dev/null @@ -1,8 +0,0 @@ -# AB-DOWNLOAD-MANAGER - - A Download Manager that speeds up your downloads. - - SITE: https://github.com/amir1376/ab-download-manager - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/abaddon b/apps/abaddon new file mode 100644 index 000000000..3a4527644 --- /dev/null +++ b/apps/abaddon @@ -0,0 +1,3 @@ +# abaddon +Unofficial, an alternative Discord client with voice support made with C++ and GTK 3. +# SITES: https://github.com/pkgforge-dev/Abaddon-AppImage \ No newline at end of file diff --git a/apps/abaddon.md b/apps/abaddon.md deleted file mode 100644 index cc077b2c6..000000000 --- a/apps/abaddon.md +++ /dev/null @@ -1,8 +0,0 @@ -# ABADDON - - Unofficial, an alternative Discord client with voice support made with C++ and GTK 3. - - SITE: https://github.com/pkgforge-dev/Abaddon-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/abiword b/apps/abiword new file mode 100644 index 000000000..5909c9e8e --- /dev/null +++ b/apps/abiword @@ -0,0 +1,6 @@ +# abiword +Abiword is a light and free word processing software that will not make you regret the more expensive suite of programs from famous brands. + + This is the unofficial AppImage built on top of JuNest, the lightweight Arch Linux based distro that runs on top of any other Linux distro. +# SCREENSHOTS: http://abiworditalia.altervista.org/immagini/abiword_linux.png +# SITES: https://github.com/ivan-hc/Abiword-appimage \ No newline at end of file diff --git a/apps/abiword.md b/apps/abiword.md deleted file mode 100644 index 9aff8a5dc..000000000 --- a/apps/abiword.md +++ /dev/null @@ -1,12 +0,0 @@ -# ABIWORD - - Abiword is a light and free word processing software that will not make you regret the more expensive suite of programs from famous brands. - - This is the unofficial AppImage built on top of JuNest, the lightweight Arch Linux based distro that runs on top of any other Linux distro. - - ![Screenshot](http://abiworditalia.altervista.org/immagini/abiword_linux.png) - - SITE: https://github.com/ivan-hc/Abiword-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/acestep-cpp-ui b/apps/acestep-cpp-ui new file mode 100644 index 000000000..4691265e8 --- /dev/null +++ b/apps/acestep-cpp-ui @@ -0,0 +1,4 @@ +# acestep-cpp-ui + AceStep-cpp UI, 100% local and free Suno alternative powered by acestep-cpp. Native C++ bundle for local AI music generation with 0% python. +# SITES: https://github.com/audiohacking/acestep-cpp-ui +# SOURCES: https://github.com/audiohacking/acestep-cpp-ui \ No newline at end of file diff --git a/apps/acestep-cpp-ui.md b/apps/acestep-cpp-ui.md deleted file mode 100644 index 92ec195a8..000000000 --- a/apps/acestep-cpp-ui.md +++ /dev/null @@ -1,8 +0,0 @@ -# ACESTEP-CPP-UI - - AceStep-cpp UI, 100% local and free Suno alternative powered by acestep-cpp. Native C++ bundle for local AI music generation with 0% python. - - SITE: https://github.com/audiohacking/acestep-cpp-ui - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/acestream b/apps/acestream new file mode 100644 index 000000000..391bedd51 --- /dev/null +++ b/apps/acestream @@ -0,0 +1,3 @@ +# acestream +Створення бінарника AppImage з AceStream Media +# SITES: https://github.com/bro2020/acestream-appimage \ No newline at end of file diff --git a/apps/acestream.md b/apps/acestream.md deleted file mode 100644 index bbb9b6452..000000000 --- a/apps/acestream.md +++ /dev/null @@ -1,8 +0,0 @@ -# ACESTREAM - - Створення бінарника AppImage з AceStream Media - - SITE: https://github.com/bro2020/acestream-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/acreom b/apps/acreom new file mode 100644 index 000000000..b6bd6cf41 --- /dev/null +++ b/apps/acreom @@ -0,0 +1,3 @@ +# acreom +Acreom desktop app releases +# SITES: https://github.com/Acreom/releases \ No newline at end of file diff --git a/apps/acreom.md b/apps/acreom.md deleted file mode 100644 index 0d624f290..000000000 --- a/apps/acreom.md +++ /dev/null @@ -1,8 +0,0 @@ -# ACREOM - - Acreom desktop app releases - - SITE: https://github.com/Acreom/releases - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/actiona b/apps/actiona new file mode 100644 index 000000000..ba5559aa1 --- /dev/null +++ b/apps/actiona @@ -0,0 +1,3 @@ +# actiona +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. +# SITES: https://github.com/Jmgr/actiona \ No newline at end of file diff --git a/apps/actiona.md b/apps/actiona.md deleted file mode 100644 index 91e65b6cb..000000000 --- a/apps/actiona.md +++ /dev/null @@ -1,8 +0,0 @@ -# ACTIONA - - 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. - - SITE: https://github.com/Jmgr/actiona - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/actual b/apps/actual new file mode 100644 index 000000000..554385e25 --- /dev/null +++ b/apps/actual @@ -0,0 +1,3 @@ +# actual +Actual is a super fast privacy-focused app for managing your finances. +# SITES: https://actualbudget.com/ \ No newline at end of file diff --git a/apps/actual.md b/apps/actual.md deleted file mode 100644 index 2f9cbc957..000000000 --- a/apps/actual.md +++ /dev/null @@ -1,8 +0,0 @@ -# ACTUAL - - Actual is a super fast privacy-focused app for managing your finances. - - SITE: https://actualbudget.com/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/adb b/apps/adb new file mode 100644 index 000000000..cda31da75 --- /dev/null +++ b/apps/adb @@ -0,0 +1,7 @@ +# adb +ADB (Android Debug Bridge) is a part of Platform Tools: + + Command line utilities to manage Android devices, including adb and fastboot. + + This is a transitional script needed to install "platform-tools". +# SITES: https://developer.android.com/studio/releases/platform-tools \ No newline at end of file diff --git a/apps/adb.md b/apps/adb.md deleted file mode 100644 index b36471a8d..000000000 --- a/apps/adb.md +++ /dev/null @@ -1,12 +0,0 @@ -# ADB - - ADB (Android Debug Bridge) is a part of Platform Tools: - - Command line utilities to manage Android devices, including adb and fastboot. - - This is a transitional script needed to install "platform-tools". - - SITE: https://developer.android.com/studio/releases/platform-tools - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/addr2line b/apps/addr2line new file mode 100644 index 000000000..9b9c5da7e --- /dev/null +++ b/apps/addr2line @@ -0,0 +1,4 @@ +# addr2line + Or symbol+offset into file names and. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/addr2line.md b/apps/addr2line.md deleted file mode 100644 index f07439848..000000000 --- a/apps/addr2line.md +++ /dev/null @@ -1,8 +0,0 @@ -# ADDR2LINE - - Or symbol+offset into file names and. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/adobe-flash-player b/apps/adobe-flash-player new file mode 100644 index 000000000..66e6b6627 --- /dev/null +++ b/apps/adobe-flash-player @@ -0,0 +1,3 @@ +# adobe-flash-player +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! +# SITES: https://github.com/pkgforge-dev/Adobe-Flash-Player-AppImage \ No newline at end of file diff --git a/apps/adobe-flash-player.md b/apps/adobe-flash-player.md deleted file mode 100644 index 6c5923cf3..000000000 --- a/apps/adobe-flash-player.md +++ /dev/null @@ -1,8 +0,0 @@ -# ADOBE-FLASH-PLAYER - - 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! - - SITE: https://github.com/pkgforge-dev/Adobe-Flash-Player-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/advanced-passgen b/apps/advanced-passgen new file mode 100644 index 000000000..5c354d182 --- /dev/null +++ b/apps/advanced-passgen @@ -0,0 +1,3 @@ +# advanced-passgen +Advanced Password Generator. +# SITES: https://codedead.com/software/advanced-passgen \ No newline at end of file diff --git a/apps/advanced-passgen.md b/apps/advanced-passgen.md deleted file mode 100644 index 48e32758f..000000000 --- a/apps/advanced-passgen.md +++ /dev/null @@ -1,8 +0,0 @@ -# ADVANCED-PASSGEN - - Advanced Password Generator. - - SITE: https://codedead.com/software/advanced-passgen - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/advanced-rest-client b/apps/advanced-rest-client new file mode 100644 index 000000000..197dbe8df --- /dev/null +++ b/apps/advanced-rest-client @@ -0,0 +1,3 @@ +# advanced-rest-client +Advanced REST Client and API console (by Mulesoft) +# SITES: https://github.com/advanced-rest-client/arc-electron \ No newline at end of file diff --git a/apps/advanced-rest-client.md b/apps/advanced-rest-client.md deleted file mode 100644 index 7d5ff08fb..000000000 --- a/apps/advanced-rest-client.md +++ /dev/null @@ -1,10 +0,0 @@ -# ADVANCED-REST-CLIENT - - Advanced REST Client and API console (by Mulesoft) - - SITE: https://github.com/advanced-rest-client/arc-electron - - DOCUMENTATION: https://docs.advancedrestclient.com/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/aegisub b/apps/aegisub new file mode 100644 index 000000000..56d2862a0 --- /dev/null +++ b/apps/aegisub @@ -0,0 +1,3 @@ +# aegisub +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. +# SITES: https://github.com/arch1t3cht/Aegisub \ No newline at end of file diff --git a/apps/aegisub.md b/apps/aegisub.md deleted file mode 100644 index 04a7146ce..000000000 --- a/apps/aegisub.md +++ /dev/null @@ -1,8 +0,0 @@ -# AEGISUB - - 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. - - SITE: https://github.com/arch1t3cht/Aegisub - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/aerofoil b/apps/aerofoil new file mode 100644 index 000000000..9d5804e7a --- /dev/null +++ b/apps/aerofoil @@ -0,0 +1,3 @@ +# aerofoil +Multiplatform port of Glider PRO. +# SITES: https://github.com/pkgforge-dev/Aerofoil-AppImage \ No newline at end of file diff --git a/apps/aerofoil.md b/apps/aerofoil.md deleted file mode 100644 index bfdac29fa..000000000 --- a/apps/aerofoil.md +++ /dev/null @@ -1,8 +0,0 @@ -# AEROFOIL - - Multiplatform port of Glider PRO. - - SITE: https://github.com/pkgforge-dev/Aerofoil-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/afetch b/apps/afetch new file mode 100644 index 000000000..3aef5dd23 --- /dev/null +++ b/apps/afetch @@ -0,0 +1,3 @@ +# afetch +A CLI system information tool written in Rust. +# SITES: https://github.com/Asthowen/AFetch \ No newline at end of file diff --git a/apps/afetch.md b/apps/afetch.md deleted file mode 100644 index bedffd8a0..000000000 --- a/apps/afetch.md +++ /dev/null @@ -1,8 +0,0 @@ -# AFETCH - - A CLI system information tool written in Rust. - - SITE: https://github.com/Asthowen/AFetch - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/affine b/apps/affine new file mode 100644 index 000000000..efb5886a9 --- /dev/null +++ b/apps/affine @@ -0,0 +1,5 @@ +# affine +There can be more than Notion and Miro. AFFiNE is a next-gen knowledge base that brings planning, sorting and creating all together. Privacy first, open-source, customizable and ready to use. + + This is the Stable build. +# SITES: https://github.com/toeverything/AFFiNE \ No newline at end of file diff --git a/apps/affine-beta b/apps/affine-beta new file mode 100644 index 000000000..8011580b7 --- /dev/null +++ b/apps/affine-beta @@ -0,0 +1,5 @@ +# affine-beta +There can be more than Notion and Miro. AFFiNE is a next-gen knowledge base that brings planning, sorting and creating all together. Privacy first, open-source, customizable and ready to use. + + This is the Beta build. +# SITES: https://github.com/toeverything/AFFiNE \ No newline at end of file diff --git a/apps/affine-beta.md b/apps/affine-beta.md deleted file mode 100644 index 153d9d4e0..000000000 --- a/apps/affine-beta.md +++ /dev/null @@ -1,10 +0,0 @@ -# AFFINE-BETA - - There can be more than Notion and Miro. AFFiNE is a next-gen knowledge base that brings planning, sorting and creating all together. Privacy first, open-source, customizable and ready to use. - - This is the Beta build. - - SITE: https://github.com/toeverything/AFFiNE - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/affine-canary b/apps/affine-canary new file mode 100644 index 000000000..b594bd7f6 --- /dev/null +++ b/apps/affine-canary @@ -0,0 +1,5 @@ +# affine-canary +There can be more than Notion and Miro. AFFiNE is a next-gen knowledge base that brings planning, sorting and creating all together. Privacy first, open-source, customizable and ready to use. + + This is the Canary build. +# SITES: https://github.com/toeverything/AFFiNE \ No newline at end of file diff --git a/apps/affine-canary.md b/apps/affine-canary.md deleted file mode 100644 index d40f13d03..000000000 --- a/apps/affine-canary.md +++ /dev/null @@ -1,10 +0,0 @@ -# AFFINE-CANARY - - There can be more than Notion and Miro. AFFiNE is a next-gen knowledge base that brings planning, sorting and creating all together. Privacy first, open-source, customizable and ready to use. - - This is the Canary build. - - SITE: https://github.com/toeverything/AFFiNE - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/affine.md b/apps/affine.md deleted file mode 100644 index 78e882a1c..000000000 --- a/apps/affine.md +++ /dev/null @@ -1,10 +0,0 @@ -# AFFINE - - There can be more than Notion and Miro. AFFiNE is a next-gen knowledge base that brings planning, sorting and creating all together. Privacy first, open-source, customizable and ready to use. - - This is the Stable build. - - SITE: https://github.com/toeverything/AFFiNE - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/affinity b/apps/affinity new file mode 100644 index 000000000..d046f9fca --- /dev/null +++ b/apps/affinity @@ -0,0 +1,7 @@ +# affinity +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. + + The installer automatically sets up Wine (a compatibility layer for running Windows applications) with all necessary configurations, dependencies, and optimizations. +# SCREENSHOTS: https://github.com/user-attachments/assets/b04e7307-ed95-484d-931a-713aadfe6c47 +# SITES: https://www.affinity.studio/ +# SOURCES: https://github.com/ryzendew/Linux-Affinity-Installer \ No newline at end of file diff --git a/apps/affinity.md b/apps/affinity.md deleted file mode 100644 index 0a37b78d7..000000000 --- a/apps/affinity.md +++ /dev/null @@ -1,14 +0,0 @@ -# AFFINITY - - 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. - - The installer automatically sets up Wine (a compatibility layer for running Windows applications) with all necessary configurations, dependencies, and optimizations. - -![Screenshot](https://github.com/user-attachments/assets/b04e7307-ed95-484d-931a-713aadfe6c47) - - SITE: https://www.affinity.studio/ - - SOURCE: https://github.com/ryzendew/Linux-Affinity-Installer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/agregore b/apps/agregore new file mode 100644 index 000000000..02318c9b2 --- /dev/null +++ b/apps/agregore @@ -0,0 +1,3 @@ +# agregore +A minimal browser for the distributed web (Desktop version) +# SITES: https://github.com/AgregoreWeb/agregore-browser \ No newline at end of file diff --git a/apps/agregore.md b/apps/agregore.md deleted file mode 100644 index 17cc59afd..000000000 --- a/apps/agregore.md +++ /dev/null @@ -1,8 +0,0 @@ -# AGREGORE - - A minimal browser for the distributed web (Desktop version) - - SITE: https://github.com/AgregoreWeb/agregore-browser - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ahk_x11 b/apps/ahk_x11 new file mode 100644 index 000000000..cad7d878e --- /dev/null +++ b/apps/ahk_x11 @@ -0,0 +1,3 @@ +# ahk_x11 +AutoHotkey for Linux (X11-based systems). +# SITES: https://github.com/phil294/AHK_X11 \ No newline at end of file diff --git a/apps/ahk_x11.md b/apps/ahk_x11.md deleted file mode 100644 index 7ac04fdda..000000000 --- a/apps/ahk_x11.md +++ /dev/null @@ -1,8 +0,0 @@ -# AHK_X11 - - AutoHotkey for Linux (X11-based systems). - - SITE: https://github.com/phil294/AHK_X11 - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/ai-bot-workspace b/apps/ai-bot-workspace new file mode 100644 index 000000000..f8d198259 --- /dev/null +++ b/apps/ai-bot-workspace @@ -0,0 +1,3 @@ +# ai-bot-workspace +An Electron application which includes testing workspaces for some Riddles.io +# SITES: https://github.com/jmerle/ai-bot-workspace \ No newline at end of file diff --git a/apps/ai-bot-workspace.md b/apps/ai-bot-workspace.md deleted file mode 100644 index 6aa72879f..000000000 --- a/apps/ai-bot-workspace.md +++ /dev/null @@ -1,8 +0,0 @@ -# AI-BOT-WORKSPACE - - An Electron application which includes testing workspaces for some Riddles.io - - SITE: https://github.com/jmerle/ai-bot-workspace - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/aichat b/apps/aichat new file mode 100644 index 000000000..375746bd6 --- /dev/null +++ b/apps/aichat @@ -0,0 +1,3 @@ +# aichat +All-in-one AI CLI tool that integrates 20+ AI platforms, including OpenAI, Azure-OpenAI, Gemini, Claude, Mistral, Cohere, VertexAI, Bedrock, Ollama, Ernie, Qianwen, Deepseek... +# SITES: https://github.com/sigoden/aichat \ No newline at end of file diff --git a/apps/aichat.md b/apps/aichat.md deleted file mode 100644 index 85d28d1c1..000000000 --- a/apps/aichat.md +++ /dev/null @@ -1,8 +0,0 @@ -# AICHAT - - All-in-one AI CLI tool that integrates 20+ AI platforms, including OpenAI, Azure-OpenAI, Gemini, Claude, Mistral, Cohere, VertexAI, Bedrock, Ollama, Ernie, Qianwen, Deepseek... - - SITE: https://github.com/sigoden/aichat - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/aidm b/apps/aidm new file mode 100644 index 000000000..a9162d37f --- /dev/null +++ b/apps/aidm @@ -0,0 +1,3 @@ +# aidm +AppImage Desktop Maker +# SITES: https://github.com/Alexsussa/AIDM \ No newline at end of file diff --git a/apps/aidm.md b/apps/aidm.md deleted file mode 100644 index 560bd2501..000000000 --- a/apps/aidm.md +++ /dev/null @@ -1,8 +0,0 @@ -# AIDM - - AppImage Desktop Maker - - SITE: https://github.com/Alexsussa/AIDM - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/aillio-ts b/apps/aillio-ts new file mode 100644 index 000000000..17b1ba99a --- /dev/null +++ b/apps/aillio-ts @@ -0,0 +1,3 @@ +# aillio-ts +The desktop application for Aillio Bullet R1 +# SITES: https://github.com/roastworld/roast-time-release \ No newline at end of file diff --git a/apps/aillio-ts.md b/apps/aillio-ts.md deleted file mode 100644 index ba5396b35..000000000 --- a/apps/aillio-ts.md +++ /dev/null @@ -1,8 +0,0 @@ -# AILLIO-TS - - The desktop application for Aillio Bullet R1 - - SITE: https://github.com/roastworld/roast-time-release - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/aim b/apps/aim new file mode 100644 index 000000000..ac90e9a05 --- /dev/null +++ b/apps/aim @@ -0,0 +1,3 @@ +# aim +🎯 A command line download/upload tool with resume. +# SITES: https://github.com/mihaigalos/aim \ No newline at end of file diff --git a/apps/aim.md b/apps/aim.md deleted file mode 100644 index 42802ba52..000000000 --- a/apps/aim.md +++ /dev/null @@ -1,8 +0,0 @@ -# AIM - - 🎯 A command line download/upload tool with resume. - - SITE: https://github.com/mihaigalos/aim - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/air-controller-desktop b/apps/air-controller-desktop new file mode 100644 index 000000000..631da3867 --- /dev/null +++ b/apps/air-controller-desktop @@ -0,0 +1,3 @@ +# air-controller-desktop +A new handy and powerful Android phone assistant,powered by Flutter. +# SITES: http://ac.yhdm360.cn/ \ No newline at end of file diff --git a/apps/air-controller-desktop.md b/apps/air-controller-desktop.md deleted file mode 100644 index af36c049a..000000000 --- a/apps/air-controller-desktop.md +++ /dev/null @@ -1,8 +0,0 @@ -# AIR-CONTROLLER-DESKTOP - - A new handy and powerful Android phone assistant,powered by Flutter. - - SITE: http://ac.yhdm360.cn/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/airspaces b/apps/airspaces new file mode 100644 index 000000000..2ecbd3417 --- /dev/null +++ b/apps/airspaces @@ -0,0 +1,3 @@ +# airspaces +An online map for your X-Plane flight sessions +# SITES: https://github.com/foucdeg/x-plane-map-electron \ No newline at end of file diff --git a/apps/airspaces.md b/apps/airspaces.md deleted file mode 100644 index 51cbe13e1..000000000 --- a/apps/airspaces.md +++ /dev/null @@ -1,8 +0,0 @@ -# AIRSPACES - - An online map for your X-Plane flight sessions - - SITE: https://github.com/foucdeg/x-plane-map-electron - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/aisap b/apps/aisap new file mode 100644 index 000000000..3d4365c94 --- /dev/null +++ b/apps/aisap @@ -0,0 +1,8 @@ +# aisap +AppImage SAndboxing Project (pronounced /eɪsæp/): a Go library to help sandbox AppImages through bwrap. + VERY EARLY DEVELOPMENT! Many parts of this are subject to change and should be expected to until it reaches a more stable form. + + aisap intends to be a simple way to implement Android/Flatpak style sandboxing with AppImages. It has a profile system, but it intends to keep it as basic as possible, making it easier to understand what a program actually requires to run without dealing with the hassle of individually cherry-picking files. + + It currently has a basic re-implementaion of the go-appimage API, so modifying existing GoLang programs to include sandboxing should be fairly painless. +# SITES: https://github.com/mgord9518/aisap \ No newline at end of file diff --git a/apps/aisap.md b/apps/aisap.md deleted file mode 100644 index 8d17b8f7a..000000000 --- a/apps/aisap.md +++ /dev/null @@ -1,17 +0,0 @@ -# AISAP - - AppImage SAndboxing Project (pronounced /eɪsæp/): a Go library to help sandbox AppImages through bwrap. - VERY EARLY DEVELOPMENT! Many parts of this are subject to change and should be expected to until it reaches a more stable form. - - aisap intends to be a simple way to implement Android/Flatpak style sandboxing with AppImages. It has a profile system, but it intends to keep it as basic as possible, making it easier to understand what a program actually requires to run without dealing with the hassle of individually cherry-picking files. - - It currently has a basic re-implementaion of the go-appimage API, so modifying existing GoLang programs to include sandboxing should be fairly painless. - - USAGE: `aisap $APPIMAGE` - - Learn more on the main repository of the project. - - SITE: https://github.com/mgord9518/aisap - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/aisleriot b/apps/aisleriot new file mode 100644 index 000000000..7a2b919f9 --- /dev/null +++ b/apps/aisleriot @@ -0,0 +1,6 @@ +# aisleriot +Aisleriot, also known as sol or solitaire. + + A card game that features over 80 different solitaire-type card games. +# SCREENSHOTS: https://upload.wikimedia.org/wikipedia/commons/0/08/AisleRiot_Solitaire_FreeCell_game_in_Ubuntu-Baltix.png +# SITES: https://github.com/ivan-hc/Aisleriot-appimage \ No newline at end of file diff --git a/apps/aisleriot.md b/apps/aisleriot.md deleted file mode 100644 index 9ae69bc6e..000000000 --- a/apps/aisleriot.md +++ /dev/null @@ -1,12 +0,0 @@ -# AISLERIOT - - Aisleriot, also known as sol or solitaire. - - A card game that features over 80 different solitaire-type card games. - - ![Screenshot](https://upload.wikimedia.org/wikipedia/commons/0/08/AisleRiot_Solitaire_FreeCell_game_in_Ubuntu-Baltix.png) - - SITE: https://github.com/ivan-hc/Aisleriot-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/akasha b/apps/akasha new file mode 100644 index 000000000..36000d619 --- /dev/null +++ b/apps/akasha @@ -0,0 +1,4 @@ +# akasha +AKASHA Foundation is a non-profit born at the intersection of blockchain and collective intelligence. AKASHA nurture projects helping individuals unlock their potential through open systems that expand our collective minds at local, regional and global scales. +# SCREENSHOTS: https://appimage.github.io/database/AKASHA/screenshot.png +# SITES: https://github.com/AKASHAorg \ No newline at end of file diff --git a/apps/akasha.md b/apps/akasha.md deleted file mode 100644 index 1af4cd73a..000000000 --- a/apps/akasha.md +++ /dev/null @@ -1,10 +0,0 @@ -# AKASHA - - AKASHA Foundation is a non-profit born at the intersection of blockchain and collective intelligence. AKASHA nurture projects helping individuals unlock their potential through open systems that expand our collective minds at local, regional and global scales. - - ![Screenshot](https://appimage.github.io/database/AKASHA/screenshot.png) - - SITE: https://github.com/AKASHAorg - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/akhenaten b/apps/akhenaten new file mode 100644 index 000000000..7d177b4a0 --- /dev/null +++ b/apps/akhenaten @@ -0,0 +1,3 @@ +# akhenaten +Unofficial, open-source engine for Pharaoh (+Cleopatra) city-building game. +# SITES: https://github.com/pkgforge-dev/Akhenaten-AppImage \ No newline at end of file diff --git a/apps/akhenaten.md b/apps/akhenaten.md deleted file mode 100644 index 2f90f350b..000000000 --- a/apps/akhenaten.md +++ /dev/null @@ -1,8 +0,0 @@ -# AKHENATEN - - Unofficial, open-source engine for Pharaoh (+Cleopatra) city-building game. - - SITE: https://github.com/pkgforge-dev/Akhenaten-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/akuse b/apps/akuse new file mode 100644 index 000000000..caf9ea449 --- /dev/null +++ b/apps/akuse @@ -0,0 +1,3 @@ +# akuse +🌸 Simple and easy to use anime streaming desktop app without ads. +# SITES: https://github.com/akuse-app/akuse \ No newline at end of file diff --git a/apps/akuse.md b/apps/akuse.md deleted file mode 100644 index 3991f56d8..000000000 --- a/apps/akuse.md +++ /dev/null @@ -1,8 +0,0 @@ -# AKUSE - - 🌸 Simple and easy to use anime streaming desktop app without ads. - - SITE: https://github.com/akuse-app/akuse - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/alacritty b/apps/alacritty new file mode 100644 index 000000000..c8bb757fc --- /dev/null +++ b/apps/alacritty @@ -0,0 +1,4 @@ +# alacritty +Alacritty is a modern terminal emulator that comes with sensible defaults, but allows for extensive configuration. By integrating with other applications, rather than reimplementing their functionality, it manages to provide a flexible set of features with high performance. The supported platforms currently consist of BSD, Linux, macOS and Windows. +# SITES: https://alacritty.org +# SOURCES: https://github.com/pkgforge-dev/alacritty-AppImage \ No newline at end of file diff --git a/apps/alacritty.md b/apps/alacritty.md deleted file mode 100644 index 485879534..000000000 --- a/apps/alacritty.md +++ /dev/null @@ -1,10 +0,0 @@ -# ALACRITTY - - Alacritty is a modern terminal emulator that comes with sensible defaults, but allows for extensive configuration. By integrating with other applications, rather than reimplementing their functionality, it manages to provide a flexible set of features with high performance. The supported platforms currently consist of BSD, Linux, macOS and Windows. - - SITE: https://alacritty.org - - UNOFFICIAL APPIMAGE: https://github.com/pkgforge-dev/alacritty-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/albafetch b/apps/albafetch new file mode 100644 index 000000000..2221b01c3 --- /dev/null +++ b/apps/albafetch @@ -0,0 +1,3 @@ +# albafetch +Faster neofetch alternative, written in C. Still improving :) +# SITES: https://github.com/alba4k/albafetch \ No newline at end of file diff --git a/apps/albafetch.md b/apps/albafetch.md deleted file mode 100644 index 765c22131..000000000 --- a/apps/albafetch.md +++ /dev/null @@ -1,8 +0,0 @@ -# ALBAFETCH - - Faster neofetch alternative, written in C. Still improving :) - - SITE: https://github.com/alba4k/albafetch - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/alduin b/apps/alduin new file mode 100644 index 000000000..a1b1e29df --- /dev/null +++ b/apps/alduin @@ -0,0 +1,3 @@ +# alduin +Alduin is an RSS, Atom and JSON feed aggregator available on Windows and Linux. Open source and free, Alduin has an ergonomic, complete and easy to use interface, which will be suitable for all types of user. +# SITES: https://alduinapp.github.io/ \ No newline at end of file diff --git a/apps/alduin.md b/apps/alduin.md deleted file mode 100644 index 481caf224..000000000 --- a/apps/alduin.md +++ /dev/null @@ -1,8 +0,0 @@ -# ALDUIN - - Alduin is an RSS, Atom and JSON feed aggregator available on Windows and Linux. Open source and free, Alduin has an ergonomic, complete and easy to use interface, which will be suitable for all types of user. - - SITE: https://alduinapp.github.io/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/alephium-wallet b/apps/alephium-wallet new file mode 100644 index 000000000..18955a4e6 --- /dev/null +++ b/apps/alephium-wallet @@ -0,0 +1,3 @@ +# alephium-wallet +The official Alephium wallet for desktop. +# SITES: https://alephium.org/ \ No newline at end of file diff --git a/apps/alephium-wallet.md b/apps/alephium-wallet.md deleted file mode 100644 index f50bfd9d8..000000000 --- a/apps/alephium-wallet.md +++ /dev/null @@ -1,8 +0,0 @@ -# ALEPHIUM-WALLET - - The official Alephium wallet for desktop. - - SITE: https://alephium.org/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/alexandria b/apps/alexandria new file mode 100644 index 000000000..db1be2ba4 --- /dev/null +++ b/apps/alexandria @@ -0,0 +1,3 @@ +# alexandria +A minimalistic cross-platform eBook reader built with Tauri, Epub.js and Typescript. +# SITES: https://github.com/btpf/Alexandria \ No newline at end of file diff --git a/apps/alexandria.md b/apps/alexandria.md deleted file mode 100644 index 13376c853..000000000 --- a/apps/alexandria.md +++ /dev/null @@ -1,8 +0,0 @@ -# ALEXANDRIA - - A minimalistic cross-platform eBook reader built with Tauri, Epub.js and Typescript. - - SITE: https://github.com/btpf/Alexandria - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/alien-tec-ui b/apps/alien-tec-ui new file mode 100644 index 000000000..bf723f3e4 --- /dev/null +++ b/apps/alien-tec-ui @@ -0,0 +1,3 @@ +# alien-tec-ui +Alien-Tec Tron Matrix Like Shell Terminal User Interface. +# SITES: https://sourceforge.net/projects/alien-tec-ui/ \ No newline at end of file diff --git a/apps/alien-tec-ui.md b/apps/alien-tec-ui.md deleted file mode 100644 index 7185d7bfb..000000000 --- a/apps/alien-tec-ui.md +++ /dev/null @@ -1,8 +0,0 @@ -# ALIEN-TEC-UI - - Alien-Tec Tron Matrix Like Shell Terminal User Interface. - - SITE: https://sourceforge.net/projects/alien-tec-ui/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/allusion b/apps/allusion new file mode 100644 index 000000000..6a2e89852 --- /dev/null +++ b/apps/allusion @@ -0,0 +1,3 @@ +# allusion +A free and open source desktop application for managing your visual library +# SITES: https://github.com/allusion-app/Allusion \ No newline at end of file diff --git a/apps/allusion.md b/apps/allusion.md deleted file mode 100644 index 883ddd204..000000000 --- a/apps/allusion.md +++ /dev/null @@ -1,8 +0,0 @@ -# ALLUSION - - A free and open source desktop application for managing your visual library - - SITE: https://github.com/allusion-app/Allusion - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/alma b/apps/alma new file mode 100644 index 000000000..cfbaecb04 --- /dev/null +++ b/apps/alma @@ -0,0 +1,3 @@ +# alma +Elegant AI Provider Orchestration. A beautiful desktop application that unifies your AI experience. Seamlessly switch between OpenAI, Anthropic, Google Gemini, and custom providers. +# SITES: https://github.com/yetone/alma-releases \ No newline at end of file diff --git a/apps/alma.md b/apps/alma.md deleted file mode 100644 index f8e3bf893..000000000 --- a/apps/alma.md +++ /dev/null @@ -1,8 +0,0 @@ -# ALMA - - Elegant AI Provider Orchestration. A beautiful desktop application that unifies your AI experience. Seamlessly switch between OpenAI, Anthropic, Google Gemini, and custom providers. - - SITE: https://github.com/yetone/alma-releases - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/alpine-flatimage b/apps/alpine-flatimage new file mode 100644 index 000000000..fa3080fbb --- /dev/null +++ b/apps/alpine-flatimage @@ -0,0 +1,3 @@ +# alpine-flatimage +FlatImage, a hybrid of Flatpak sandboxing with AppImage portability +# SITES: https://github.com/ruanformigoni/flatimage \ No newline at end of file diff --git a/apps/alpine-flatimage.md b/apps/alpine-flatimage.md deleted file mode 100644 index b1bf48000..000000000 --- a/apps/alpine-flatimage.md +++ /dev/null @@ -1,8 +0,0 @@ -# ALPINE-FLATIMAGE - - FlatImage, a hybrid of Flatpak sandboxing with AppImage portability - - SITE: https://github.com/ruanformigoni/flatimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/alr2appimage b/apps/alr2appimage new file mode 100644 index 000000000..ba7ada3af --- /dev/null +++ b/apps/alr2appimage @@ -0,0 +1,3 @@ +# alr2appimage +Tool for building an AppImage from an Alire crate +# SITES: https://github.com/mgrojo/alr2appimage \ No newline at end of file diff --git a/apps/alr2appimage.md b/apps/alr2appimage.md deleted file mode 100644 index f494ae534..000000000 --- a/apps/alr2appimage.md +++ /dev/null @@ -1,8 +0,0 @@ -# ALR2APPIMAGE - - Tool for building an AppImage from an Alire crate - - SITE: https://github.com/mgrojo/alr2appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/alt-sendme b/apps/alt-sendme new file mode 100644 index 000000000..edf6ca51d --- /dev/null +++ b/apps/alt-sendme @@ -0,0 +1,3 @@ +# alt-sendme +Share files and directories anywhere - Local or Global +# SITES: https://github.com/tonyantony300/alt-sendme \ No newline at end of file diff --git a/apps/alt-sendme.md b/apps/alt-sendme.md deleted file mode 100644 index 081cd7efc..000000000 --- a/apps/alt-sendme.md +++ /dev/null @@ -1,8 +0,0 @@ -# ALT-SENDME - - Share files and directories anywhere - Local or Global - - SITE: https://github.com/tonyantony300/alt-sendme - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/altair b/apps/altair new file mode 100644 index 000000000..d9b03ec3b --- /dev/null +++ b/apps/altair @@ -0,0 +1,3 @@ +# altair +A beautiful feature-rich GraphQL Client for all platforms. +# SITES: https://github.com/altair-graphql/altair \ No newline at end of file diff --git a/apps/altair.md b/apps/altair.md deleted file mode 100644 index 449f34f9e..000000000 --- a/apps/altair.md +++ /dev/null @@ -1,8 +0,0 @@ -# ALTAIR - - A beautiful feature-rich GraphQL Client for all platforms. - - SITE: https://github.com/altair-graphql/altair - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/altersend b/apps/altersend new file mode 100644 index 000000000..ce1067ad7 --- /dev/null +++ b/apps/altersend @@ -0,0 +1,4 @@ +# altersend + Send files directly between devices over the internet - no cloud, no servers, no size limits. +# SITES: https://github.com/denislupookov/altersend +# SOURCES: https://github.com/denislupookov/altersend \ No newline at end of file diff --git a/apps/altersend.md b/apps/altersend.md deleted file mode 100644 index bcfca3c32..000000000 --- a/apps/altersend.md +++ /dev/null @@ -1,8 +0,0 @@ -# ALTERSEND - - Send files directly between devices over the internet - no cloud, no servers, no size limits. - - SITE: https://github.com/denislupookov/altersend - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/altitude b/apps/altitude new file mode 100644 index 000000000..e58a57391 --- /dev/null +++ b/apps/altitude @@ -0,0 +1,3 @@ +# altitude +The Altitude wallet by Linda Project Inc. +# SITES: https://github.com/TheLindaProjectInc/Altitude \ No newline at end of file diff --git a/apps/altitude.md b/apps/altitude.md deleted file mode 100644 index 0cffbe212..000000000 --- a/apps/altitude.md +++ /dev/null @@ -1,8 +0,0 @@ -# ALTITUDE - - The Altitude wallet by Linda Project Inc. - - SITE: https://github.com/TheLindaProjectInc/Altitude - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/altrady b/apps/altrady new file mode 100644 index 000000000..436937f74 --- /dev/null +++ b/apps/altrady @@ -0,0 +1,3 @@ +# altrady +Altrady Crypto Trading Terminal. +# SITES: https://www.altrady.com \ No newline at end of file diff --git a/apps/altrady.md b/apps/altrady.md deleted file mode 100644 index d54d00afe..000000000 --- a/apps/altrady.md +++ /dev/null @@ -1,8 +0,0 @@ -# ALTRADY - - Altrady Crypto Trading Terminal. - - SITE: https://www.altrady.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/altus b/apps/altus new file mode 100644 index 000000000..25c4f6982 --- /dev/null +++ b/apps/altus @@ -0,0 +1,4 @@ +# altus +Desktop client for WhatsApp Web with themes & multiple account support. +# SCREENSHOTS: https://raw.githubusercontent.com/amanharwara/altus/master/img/Altus-Default-Theme.png +# SITES: https://github.com/amanharwara/altus \ No newline at end of file diff --git a/apps/altus.md b/apps/altus.md deleted file mode 100644 index fde378189..000000000 --- a/apps/altus.md +++ /dev/null @@ -1,10 +0,0 @@ -# ALTUS - - Desktop client for WhatsApp Web with themes & multiple account support. - - ![Screenshot](https://raw.githubusercontent.com/amanharwara/altus/master/img/Altus-Default-Theme.png) - - SITE: https://github.com/amanharwara/altus - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/alvr b/apps/alvr new file mode 100644 index 000000000..f861ae236 --- /dev/null +++ b/apps/alvr @@ -0,0 +1,3 @@ +# alvr +Alvr AppImage for linux - Stream VR games from your PC to your headset via Wi-Fi +# SITES: https://github.com/elpinguinoopensource/alvr-appimage \ No newline at end of file diff --git a/apps/alvr.md b/apps/alvr.md deleted file mode 100644 index d27519ec1..000000000 --- a/apps/alvr.md +++ /dev/null @@ -1,8 +0,0 @@ -# ALVR - - Alvr AppImage for linux - Stream VR games from your PC to your headset via Wi-Fi - - SITE: https://github.com/elpinguinoopensource/alvr-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/am-gui b/apps/am-gui new file mode 100644 index 000000000..369f04619 --- /dev/null +++ b/apps/am-gui @@ -0,0 +1,3 @@ +# am-gui +AM-GUI is a graphical Front for AM. +# SITES: https://github.com/Shikakiben/AM-GUI \ No newline at end of file diff --git a/apps/am-gui.md b/apps/am-gui.md deleted file mode 100644 index 5c911c377..000000000 --- a/apps/am-gui.md +++ /dev/null @@ -1,8 +0,0 @@ -# AM-GUI - - AM-GUI is a graphical Front for AM. - - SITE: https://github.com/Shikakiben/AM-GUI - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/amarok b/apps/amarok new file mode 100644 index 000000000..5403359bc --- /dev/null +++ b/apps/amarok @@ -0,0 +1,3 @@ +# amarok +Unofficial, powerful music player that lets you rediscover your music. +# SITES: https://github.com/pkgforge-dev/Amarok-AppImage \ No newline at end of file diff --git a/apps/amarok.md b/apps/amarok.md deleted file mode 100644 index bdc38b078..000000000 --- a/apps/amarok.md +++ /dev/null @@ -1,8 +0,0 @@ -# AMAROK - - Unofficial, powerful music player that lets you rediscover your music. - - SITE: https://github.com/pkgforge-dev/Amarok-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/amazingmarvin b/apps/amazingmarvin new file mode 100644 index 000000000..f2e880e55 --- /dev/null +++ b/apps/amazingmarvin @@ -0,0 +1,3 @@ +# amazingmarvin +Personal productivity app that incorporates principles from behavioral psychology to help you beat procrastination, feel in control and finish your to-do list. +# SITES: https://amazingmarvin.com/ \ No newline at end of file diff --git a/apps/amazingmarvin.md b/apps/amazingmarvin.md deleted file mode 100644 index 2a6e90ba7..000000000 --- a/apps/amazingmarvin.md +++ /dev/null @@ -1,8 +0,0 @@ -# AMAZINGMARVIN - - Personal productivity app that incorporates principles from behavioral psychology to help you beat procrastination, feel in control and finish your to-do list. - - SITE: https://amazingmarvin.com/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ambermoon.net b/apps/ambermoon.net new file mode 100644 index 000000000..60734fc0f --- /dev/null +++ b/apps/ambermoon.net @@ -0,0 +1,3 @@ +# ambermoon.net +Ambermoon rewrite in C# +# SITES: https://github.com/Pyrdacor/Ambermoon.net \ No newline at end of file diff --git a/apps/ambermoon.net.md b/apps/ambermoon.net.md deleted file mode 100644 index 1ff2f65ea..000000000 --- a/apps/ambermoon.net.md +++ /dev/null @@ -1,8 +0,0 @@ -# AMBERMOON.NET - - Ambermoon rewrite in C# - - SITE: https://github.com/Pyrdacor/Ambermoon.net - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/amdgpu_top b/apps/amdgpu_top new file mode 100644 index 000000000..996d5f16b --- /dev/null +++ b/apps/amdgpu_top @@ -0,0 +1,3 @@ +# amdgpu_top +Tool to display AMDGPU usage. +# SITES: https://github.com/Umio-Yasuno/amdgpu_top \ No newline at end of file diff --git a/apps/amdgpu_top.md b/apps/amdgpu_top.md deleted file mode 100644 index a61791e6f..000000000 --- a/apps/amdgpu_top.md +++ /dev/null @@ -1,8 +0,0 @@ -# AMDGPU_TOP - - Tool to display AMDGPU usage. - - SITE: https://github.com/Umio-Yasuno/amdgpu_top - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/amethyst-mod-manager b/apps/amethyst-mod-manager new file mode 100644 index 000000000..1e617f874 --- /dev/null +++ b/apps/amethyst-mod-manager @@ -0,0 +1,4 @@ +# amethyst-mod-manager + A Linux native mod manager for a variety of games. +# SITES: https://github.com/chrisdkn/amethyst-mod-manager +# SOURCES: https://github.com/chrisdkn/amethyst-mod-manager \ No newline at end of file diff --git a/apps/amethyst-mod-manager.md b/apps/amethyst-mod-manager.md deleted file mode 100644 index d87d8b610..000000000 --- a/apps/amethyst-mod-manager.md +++ /dev/null @@ -1,8 +0,0 @@ -# AMETHYST-MOD-MANAGER - - A Linux native mod manager for a variety of games. - - SITE: https://github.com/chrisdkn/amethyst-mod-manager - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/amfora b/apps/amfora new file mode 100644 index 000000000..5bb201eb6 --- /dev/null +++ b/apps/amfora @@ -0,0 +1,3 @@ +# amfora +A fancy terminal browser for the Gemini protocol. +# SITES: https://github.com/makew0rld/amfora \ No newline at end of file diff --git a/apps/amfora.md b/apps/amfora.md deleted file mode 100644 index 12d4c8a47..000000000 --- a/apps/amfora.md +++ /dev/null @@ -1,8 +0,0 @@ -# AMFORA - - A fancy terminal browser for the Gemini protocol. - - SITE: https://github.com/makew0rld/amfora - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/amiberry b/apps/amiberry new file mode 100644 index 000000000..f83f3f716 --- /dev/null +++ b/apps/amiberry @@ -0,0 +1,3 @@ +# amiberry +Unofficial, optimized Amiga emulator. +# SITES: https://github.com/pkgforge-dev/Amiberry-AppImage \ No newline at end of file diff --git a/apps/amiberry.md b/apps/amiberry.md deleted file mode 100644 index 0d4dcf468..000000000 --- a/apps/amiberry.md +++ /dev/null @@ -1,8 +0,0 @@ -# AMIBERRY - - Unofficial, optimized Amiga emulator. - - SITE: https://github.com/pkgforge-dev/Amiberry-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/amplitude-soundboard b/apps/amplitude-soundboard new file mode 100644 index 000000000..350990931 --- /dev/null +++ b/apps/amplitude-soundboard @@ -0,0 +1,3 @@ +# amplitude-soundboard +A sleek, cross-platform soundboard, available. +# SITES: https://github.com/dan0v/AmplitudeSoundboard \ No newline at end of file diff --git a/apps/amplitude-soundboard.md b/apps/amplitude-soundboard.md deleted file mode 100644 index 2799c9d60..000000000 --- a/apps/amplitude-soundboard.md +++ /dev/null @@ -1,8 +0,0 @@ -# AMPLITUDE-SOUNDBOARD - - A sleek, cross-platform soundboard, available. - - SITE: https://github.com/dan0v/AmplitudeSoundboard - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/amule b/apps/amule new file mode 100644 index 000000000..8dfbe278e --- /dev/null +++ b/apps/amule @@ -0,0 +1,4 @@ +# amule + 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. +# SITES: https://github.com/amule-org/amule +# SOURCES: https://github.com/amule-org/amule \ No newline at end of file diff --git a/apps/amule.md b/apps/amule.md deleted file mode 100644 index bce10b72c..000000000 --- a/apps/amule.md +++ /dev/null @@ -1,8 +0,0 @@ -# AMULE - - 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. - - SITE: https://github.com/amule-org/amule - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/amusiz b/apps/amusiz new file mode 100644 index 000000000..7f5a25581 --- /dev/null +++ b/apps/amusiz @@ -0,0 +1,3 @@ +# amusiz +An unofficial and unpretentious Amazon Music client for Linux. +# SITES: https://github.com/mirkobrombin/Amusiz \ No newline at end of file diff --git a/apps/amusiz.md b/apps/amusiz.md deleted file mode 100644 index dbbb9d79c..000000000 --- a/apps/amusiz.md +++ /dev/null @@ -1,8 +0,0 @@ -# AMUSIZ - - An unofficial and unpretentious Amazon Music client for Linux. - - SITE: https://github.com/mirkobrombin/Amusiz - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/anavis b/apps/anavis new file mode 100644 index 000000000..02a316b42 --- /dev/null +++ b/apps/anavis @@ -0,0 +1,3 @@ +# anavis +AnaVis is a tool to visualize musical form. +# SITES: https://anavis.de/ \ No newline at end of file diff --git a/apps/anavis.md b/apps/anavis.md deleted file mode 100644 index 3e9777e21..000000000 --- a/apps/anavis.md +++ /dev/null @@ -1,8 +0,0 @@ -# ANAVIS - - AnaVis is a tool to visualize musical form. - - SITE: https://anavis.de/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/anchor b/apps/anchor new file mode 100644 index 000000000..b47cc7fb7 --- /dev/null +++ b/apps/anchor @@ -0,0 +1,3 @@ +# anchor +An EOSIO Light Wallet with simple tools for basic activities and advanced tools for power users. +# SITES: https://greymass.com/anchor/ \ No newline at end of file diff --git a/apps/anchor.md b/apps/anchor.md deleted file mode 100644 index b6fe9fedb..000000000 --- a/apps/anchor.md +++ /dev/null @@ -1,8 +0,0 @@ -# ANCHOR - - An EOSIO Light Wallet with simple tools for basic activities and advanced tools for power users. - - SITE: https://greymass.com/anchor/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/android-messages-desktop b/apps/android-messages-desktop new file mode 100644 index 000000000..1b8b076d4 --- /dev/null +++ b/apps/android-messages-desktop @@ -0,0 +1,3 @@ +# android-messages-desktop +Messages for web, as a desktop app +# SITES: https://github.com/chrisknepper/android-messages-desktop \ No newline at end of file diff --git a/apps/android-messages-desktop.md b/apps/android-messages-desktop.md deleted file mode 100644 index 6dc00f5c0..000000000 --- a/apps/android-messages-desktop.md +++ /dev/null @@ -1,8 +0,0 @@ -# ANDROID-MESSAGES-DESKTOP - - Messages for web, as a desktop app - - SITE: https://github.com/chrisknepper/android-messages-desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/android-studio b/apps/android-studio new file mode 100644 index 000000000..93eaf33f1 --- /dev/null +++ b/apps/android-studio @@ -0,0 +1,5 @@ +# android-studio +Android Studio as AppImages, by zyrouge. + + This script points to the stable (latest) version. +# SITES: https://github.com/zyrouge/android-studio-appimages \ No newline at end of file diff --git a/apps/android-studio-latest b/apps/android-studio-latest new file mode 100644 index 000000000..d15f129b9 --- /dev/null +++ b/apps/android-studio-latest @@ -0,0 +1,5 @@ +# android-studio-latest +Android Studio as AppImages, by zyrouge. + + This script points to the latest release/pre-release available. +# SITES: https://github.com/zyrouge/android-studio-appimages \ No newline at end of file diff --git a/apps/android-studio-latest.md b/apps/android-studio-latest.md deleted file mode 100644 index 37c880d5c..000000000 --- a/apps/android-studio-latest.md +++ /dev/null @@ -1,10 +0,0 @@ -# ANDROID-STUDIO-LATEST - - Android Studio as AppImages, by zyrouge. - - This script points to the latest release/pre-release available. - - SITE: https://github.com/zyrouge/android-studio-appimages - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/android-studio.md b/apps/android-studio.md deleted file mode 100644 index a4f0b79bd..000000000 --- a/apps/android-studio.md +++ /dev/null @@ -1,10 +0,0 @@ -# ANDROID-STUDIO - - Android Studio as AppImages, by zyrouge. - - This script points to the stable (latest) version. - - SITE: https://github.com/zyrouge/android-studio-appimages - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/android-tools b/apps/android-tools new file mode 100644 index 000000000..9055e7872 --- /dev/null +++ b/apps/android-tools @@ -0,0 +1,3 @@ +# android-tools +Unofficial AppImage of Android Platform Tools (adb, fastboot, etc). +# SITES: https://github.com/Samueru-sama/android-tools-AppImage \ No newline at end of file diff --git a/apps/android-tools.md b/apps/android-tools.md deleted file mode 100644 index 8aade801f..000000000 --- a/apps/android-tools.md +++ /dev/null @@ -1,8 +0,0 @@ -# ANDROID-TOOLS - - Unofficial AppImage of Android Platform Tools (adb, fastboot, etc). - - SITE: https://github.com/Samueru-sama/android-tools-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/android-translation-layer b/apps/android-translation-layer new file mode 100644 index 000000000..67ba950d0 --- /dev/null +++ b/apps/android-translation-layer @@ -0,0 +1,3 @@ +# android-translation-layer +Unofficial, A translation layer that allows running Android apps on a Linux system. +# SITES: https://github.com/pkgforge-dev/android_translation_layer-AppImage \ No newline at end of file diff --git a/apps/android-translation-layer.md b/apps/android-translation-layer.md deleted file mode 100644 index 1ae9cf91f..000000000 --- a/apps/android-translation-layer.md +++ /dev/null @@ -1,8 +0,0 @@ -# ANDROID-TRANSLATION-LAYER - - Unofficial, A translation layer that allows running Android apps on a Linux system. - - SITE: https://github.com/pkgforge-dev/android_translation_layer-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/ani-cli b/apps/ani-cli new file mode 100644 index 000000000..4aebed9f4 --- /dev/null +++ b/apps/ani-cli @@ -0,0 +1,3 @@ +# ani-cli +A cli tool to browse and play anime +# SITES: https://github.com/pystardust/ani-cli \ No newline at end of file diff --git a/apps/ani-cli.md b/apps/ani-cli.md deleted file mode 100644 index 1c5fc45c2..000000000 --- a/apps/ani-cli.md +++ /dev/null @@ -1,8 +0,0 @@ -# ANI-CLI - - A cli tool to browse and play anime - - SITE: https://github.com/pystardust/ani-cli - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/animashooter-junior b/apps/animashooter-junior new file mode 100644 index 000000000..915264583 --- /dev/null +++ b/apps/animashooter-junior @@ -0,0 +1,3 @@ +# animashooter-junior +User-friendly Stop-Motion Animation Software +# SITES: http://www.animashooter.com \ No newline at end of file diff --git a/apps/animashooter-junior.md b/apps/animashooter-junior.md deleted file mode 100644 index e18748c72..000000000 --- a/apps/animashooter-junior.md +++ /dev/null @@ -1,8 +0,0 @@ -# ANIMASHOOTER-JUNIOR - - User-friendly Stop-Motion Animation Software - - SITE: http://www.animashooter.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/animashooter-pioneer b/apps/animashooter-pioneer new file mode 100644 index 000000000..b69e8891a --- /dev/null +++ b/apps/animashooter-pioneer @@ -0,0 +1,3 @@ +# animashooter-pioneer +User-friendly Stop-Motion Animation Software +# SITES: http://www.animashooter.com \ No newline at end of file diff --git a/apps/animashooter-pioneer.md b/apps/animashooter-pioneer.md deleted file mode 100644 index d14f7874f..000000000 --- a/apps/animashooter-pioneer.md +++ /dev/null @@ -1,8 +0,0 @@ -# ANIMASHOOTER-PIONEER - - User-friendly Stop-Motion Animation Software - - SITE: http://www.animashooter.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/animecoin b/apps/animecoin new file mode 100644 index 000000000..5da03f53e --- /dev/null +++ b/apps/animecoin @@ -0,0 +1,3 @@ +# animecoin +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. +# SITES: https://github.com/Animecointeam/Animecoin \ No newline at end of file diff --git a/apps/animecoin.md b/apps/animecoin.md deleted file mode 100644 index 17f4d475f..000000000 --- a/apps/animecoin.md +++ /dev/null @@ -1,8 +0,0 @@ -# ANIMECOIN - - 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. - - SITE: https://github.com/Animecointeam/Animecoin - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/animeko b/apps/animeko new file mode 100644 index 000000000..45674a688 --- /dev/null +++ b/apps/animeko @@ -0,0 +1,3 @@ +# animeko +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. +# SITES: https://github.com/open-ani/animeko \ No newline at end of file diff --git a/apps/animeko.md b/apps/animeko.md deleted file mode 100644 index d5d7cfc03..000000000 --- a/apps/animeko.md +++ /dev/null @@ -1,8 +0,0 @@ -# ANIMEKO - - 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. - - SITE: https://github.com/open-ani/animeko - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/animos b/apps/animos new file mode 100644 index 000000000..280fd5734 --- /dev/null +++ b/apps/animos @@ -0,0 +1,3 @@ +# animos +Clean and minimal Anime-streaming desktop application without any ads. +# SITES: https://animos.cf/ \ No newline at end of file diff --git a/apps/animos.md b/apps/animos.md deleted file mode 100644 index 156ef16e8..000000000 --- a/apps/animos.md +++ /dev/null @@ -1,8 +0,0 @@ -# ANIMOS - - Clean and minimal Anime-streaming desktop application without any ads. - - SITE: https://animos.cf/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/aniship b/apps/aniship new file mode 100644 index 000000000..725843e70 --- /dev/null +++ b/apps/aniship @@ -0,0 +1,3 @@ +# aniship +A convenient and functional unofficial client that allows for easy viewing of anime on PCs and laptops. +# SITES: https://t.me/aniship \ No newline at end of file diff --git a/apps/aniship.md b/apps/aniship.md deleted file mode 100644 index 9bb8cfb02..000000000 --- a/apps/aniship.md +++ /dev/null @@ -1,8 +0,0 @@ -# ANISHIP - - A convenient and functional unofficial client that allows for easy viewing of anime on PCs and laptops. - - SITE: https://t.me/aniship - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ankama-launcher b/apps/ankama-launcher new file mode 100644 index 000000000..da309e003 --- /dev/null +++ b/apps/ankama-launcher @@ -0,0 +1,3 @@ +# ankama-launcher +Ankama is an independent entertainment and digital creation group, and a key player in the gaming world! Since the phenomenal success of its online game DOFUS in 2004 (85 million accounts created worldwide, and more than 40 million in France alone), Ankama has branched out into several different areas, and become a true transmedia group. +# SITES: https://ankama.com \ No newline at end of file diff --git a/apps/ankama-launcher.md b/apps/ankama-launcher.md deleted file mode 100644 index 36baa4984..000000000 --- a/apps/ankama-launcher.md +++ /dev/null @@ -1,8 +0,0 @@ -# ANKAMA-LAUNCHER - - Ankama is an independent entertainment and digital creation group, and a key player in the gaming world! Since the phenomenal success of its online game DOFUS in 2004 (85 million accounts created worldwide, and more than 40 million in France alone), Ankama has branched out into several different areas, and become a true transmedia group. - - SITE: https://ankama.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/anki b/apps/anki new file mode 100644 index 000000000..5ad941175 --- /dev/null +++ b/apps/anki @@ -0,0 +1,6 @@ +# anki +Anki's shared backend and web components, and the Qt frontend. + + This is the unofficial AppImage. +# SITES: https://github.com/ankitects/anki +# SOURCES: https://github.com/pkgforge-dev/anki-AppImage \ No newline at end of file diff --git a/apps/anki.md b/apps/anki.md deleted file mode 100644 index 8c74ee45b..000000000 --- a/apps/anki.md +++ /dev/null @@ -1,12 +0,0 @@ -# ANKI - - Anki's shared backend and web components, and the Qt frontend. - - This is the unofficial AppImage. - - SITE: https://github.com/ankitects/anki - - APPIMAGE: https://github.com/pkgforge-dev/anki-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/another-redis-desktop-manager b/apps/another-redis-desktop-manager new file mode 100644 index 000000000..0c34ca881 --- /dev/null +++ b/apps/another-redis-desktop-manager @@ -0,0 +1,3 @@ +# another-redis-desktop-manager +A faster, better and more stable redis desktop manager. +# SITES: https://github.com/qishibo/AnotherRedisDesktopManager \ No newline at end of file diff --git a/apps/another-redis-desktop-manager.md b/apps/another-redis-desktop-manager.md deleted file mode 100644 index bcaa2b792..000000000 --- a/apps/another-redis-desktop-manager.md +++ /dev/null @@ -1,8 +0,0 @@ -# ANOTHER-REDIS-DESKTOP-MANAGER - - A faster, better and more stable redis desktop manager. - - SITE: https://github.com/qishibo/AnotherRedisDesktopManager - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ansel b/apps/ansel new file mode 100644 index 000000000..e476a01ee --- /dev/null +++ b/apps/ansel @@ -0,0 +1,3 @@ +# ansel +Ansel is an open-source photo-editing software for digital artists, designed to help you achieve your own interpretation of raw digital photographs. +# SITES: https://github.com/aurelienpierreeng/ansel \ No newline at end of file diff --git a/apps/ansel.md b/apps/ansel.md deleted file mode 100644 index 263a57c40..000000000 --- a/apps/ansel.md +++ /dev/null @@ -1,8 +0,0 @@ -# ANSEL - - Ansel is an open-source photo-editing software for digital artists, designed to help you achieve your own interpretation of raw digital photographs. - - SITE: https://github.com/aurelienpierreeng/ansel - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ant-downloader b/apps/ant-downloader new file mode 100644 index 000000000..0caf82ec7 --- /dev/null +++ b/apps/ant-downloader @@ -0,0 +1,4 @@ +# ant-downloader +ANT Downloader is a BitTorrent Client developed by golang, angular 7, and electron. ANT aims to be a lightweight, feature-rich, easy-to-use and nice-looking client. +# SCREENSHOTS: https://appimage.github.io/database/ANT_Downloader/screenshot.png +# SITES: https://github.com/anatasluo/ant \ No newline at end of file diff --git a/apps/ant-downloader.md b/apps/ant-downloader.md deleted file mode 100644 index 87dc2e7d2..000000000 --- a/apps/ant-downloader.md +++ /dev/null @@ -1,10 +0,0 @@ -# ANT-DOWNLOADER - - ANT Downloader is a BitTorrent Client developed by golang, angular 7, and electron. ANT aims to be a lightweight, feature-rich, easy-to-use and nice-looking client. - - ![Screenshot](https://appimage.github.io/database/ANT_Downloader/screenshot.png) - - SITE: https://github.com/anatasluo/ant - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/antares b/apps/antares new file mode 100644 index 000000000..66fe8472e --- /dev/null +++ b/apps/antares @@ -0,0 +1,4 @@ +# antares +Antares is an SQL client based on Electron.js and Vue.js that aims to become a useful tool, especially for developers. Our target is to support as many databases as possible, and all major operating systems, including the ARM versions. +# SCREENSHOTS: https://raw.githubusercontent.com/Fabio286/antares/master/docs/gh-logo.png +# SITES: https://github.com/antares-sql/antares \ No newline at end of file diff --git a/apps/antares.md b/apps/antares.md deleted file mode 100644 index f25bb7b82..000000000 --- a/apps/antares.md +++ /dev/null @@ -1,10 +0,0 @@ -# ANTARES - - Antares is an SQL client based on Electron.js and Vue.js that aims to become a useful tool, especially for developers. Our target is to support as many databases as possible, and all major operating systems, including the ARM versions. - - ![Screenshot](https://raw.githubusercontent.com/Fabio286/antares/master/docs/gh-logo.png) - - SITE: https://github.com/antares-sql/antares - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/antidot b/apps/antidot new file mode 100644 index 000000000..be62cd699 --- /dev/null +++ b/apps/antidot @@ -0,0 +1,3 @@ +# antidot +Cleans up your $HOME from those pesky dotfiles +# SITES: https://github.com/doron-cohen/antidot \ No newline at end of file diff --git a/apps/antidot.md b/apps/antidot.md deleted file mode 100644 index 015a5b641..000000000 --- a/apps/antidot.md +++ /dev/null @@ -1,8 +0,0 @@ -# ANTIDOT - - Cleans up your $HOME from those pesky dotfiles - - SITE: https://github.com/doron-cohen/antidot - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/antigravity b/apps/antigravity new file mode 100644 index 000000000..c19a36938 --- /dev/null +++ b/apps/antigravity @@ -0,0 +1,3 @@ +# antigravity +Google Antigravity IDE. +# SITES: https://antigravity.google \ No newline at end of file diff --git a/apps/antigravity-ide b/apps/antigravity-ide new file mode 100644 index 000000000..d03120a08 --- /dev/null +++ b/apps/antigravity-ide @@ -0,0 +1,4 @@ +# antigravity-ide + Unofficial AppImage of Google Antigravity IDE. +# SITES: https://github.com/pkgforge-dev/antigravity-ide-appimage +# SOURCES: https://github.com/pkgforge-dev/antigravity-ide-appimage \ No newline at end of file diff --git a/apps/antigravity-ide.md b/apps/antigravity-ide.md deleted file mode 100644 index 78ca7d3fb..000000000 --- a/apps/antigravity-ide.md +++ /dev/null @@ -1,8 +0,0 @@ -# ANTIGRAVITY-IDE - - Unofficial AppImage of Google Antigravity IDE. - - SITE: https://github.com/pkgforge-dev/antigravity-ide-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/antigravity.md b/apps/antigravity.md deleted file mode 100644 index f1a20cd89..000000000 --- a/apps/antigravity.md +++ /dev/null @@ -1,8 +0,0 @@ -# ANTIGRAVITY - - Unofficial AppImage of Google Antigravity. - - SITE: https://github.com/pkgforge-dev/Antigravity-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/antimicrox b/apps/antimicrox new file mode 100644 index 000000000..4a63d7531 --- /dev/null +++ b/apps/antimicrox @@ -0,0 +1,3 @@ +# antimicrox +Use a gamepad to control a variety of programs +# SITES: https://github.com/AntiMicroX/antimicrox \ No newline at end of file diff --git a/apps/antimicrox.md b/apps/antimicrox.md deleted file mode 100644 index 4565a0e3b..000000000 --- a/apps/antimicrox.md +++ /dev/null @@ -1,8 +0,0 @@ -# ANTIMICROX - - Use a gamepad to control a variety of programs - - SITE: https://github.com/AntiMicroX/antimicrox - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/antra b/apps/antra new file mode 100644 index 000000000..8c4fa11ff --- /dev/null +++ b/apps/antra @@ -0,0 +1,3 @@ +# antra +A desktop music library builder. Resolves Spotify / Apple Music / Amazon Music URLs → get lossless audio → auto-tags, transcodes, and organizes. No subscriptions. No compromises. +# SITES: https://github.com/anandprtp/antra \ No newline at end of file diff --git a/apps/antra.md b/apps/antra.md deleted file mode 100644 index eb4f58123..000000000 --- a/apps/antra.md +++ /dev/null @@ -1,8 +0,0 @@ -# ANTRA - - A desktop music library builder. Resolves Spotify / Apple Music / Amazon Music URLs → get lossless audio → auto-tags, transcodes, and organizes. No subscriptions. No compromises. - - SITE: https://github.com/anandprtp/antra - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/any-code b/apps/any-code new file mode 100644 index 000000000..abadd52eb --- /dev/null +++ b/apps/any-code @@ -0,0 +1,3 @@ +# any-code +Any Code is a professional desktop application tailored for AI-driven code development workflows, supporting three major AI engines: Claude Code CLI, OpenAI Codex, and Google Gemini CLI. +# SITES: https://github.com/anyme123/Any-code \ No newline at end of file diff --git a/apps/any-code.md b/apps/any-code.md deleted file mode 100644 index 1f415006d..000000000 --- a/apps/any-code.md +++ /dev/null @@ -1,8 +0,0 @@ -# ANY-CODE - - Any Code is a professional desktop application tailored for AI-driven code development workflows, supporting three major AI engines: Claude Code CLI, OpenAI Codex, and Google Gemini CLI. - - SITE: https://github.com/anyme123/Any-code - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/anydesk b/apps/anydesk new file mode 100644 index 000000000..3a8971bb7 --- /dev/null +++ b/apps/anydesk @@ -0,0 +1,9 @@ +# anydesk +AnyDesk - Remote desktop application. + + Access any device at any time. From anywhere. Always secure and fast. + + This is the unofficial AppImage built from the official .deb package. NOTE that Anydesk requires gtk2 libraries installed on the system. +# SCREENSHOTS: https://github.com/user-attachments/assets/00813a9d-2f3c-4d40-a885-bf47a38a2281 +# SITES: https://anydesk.com +# SOURCES: https://github.com/ivan-hc/Anydesk-appimage \ No newline at end of file diff --git a/apps/anydesk.md b/apps/anydesk.md deleted file mode 100644 index 5e92c6367..000000000 --- a/apps/anydesk.md +++ /dev/null @@ -1,16 +0,0 @@ -# ANYDESK - - AnyDesk - Remote desktop application. - - Access any device at any time. From anywhere. Always secure and fast. - - This is the unofficial AppImage built from the official .deb package. NOTE that Anydesk requires gtk2 libraries installed on the system. - - ![Screenshot](https://github.com/user-attachments/assets/00813a9d-2f3c-4d40-a885-bf47a38a2281) - - SITE: https://anydesk.com - - UNOFFICIAL APPIMAGE: https://github.com/ivan-hc/Anydesk-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/anything-llm b/apps/anything-llm new file mode 100644 index 000000000..607508520 --- /dev/null +++ b/apps/anything-llm @@ -0,0 +1,5 @@ +# anything-llm +The ultimate AI business intelligence tool. + + Any LLM, any document, full control, full privacy. +# SITES: https://useanything.com \ No newline at end of file diff --git a/apps/anything-llm.md b/apps/anything-llm.md deleted file mode 100644 index 8a6612fd7..000000000 --- a/apps/anything-llm.md +++ /dev/null @@ -1,10 +0,0 @@ -# ANYTHING-LLM - - The ultimate AI business intelligence tool. - - Any LLM, any document, full control, full privacy. - - SITE: https://useanything.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/anytype b/apps/anytype new file mode 100644 index 000000000..3428481e7 --- /dev/null +++ b/apps/anytype @@ -0,0 +1,5 @@ +# anytype +The everything app for those who celebrate trust & autonomy. Imagine an app where you can do everything. +# SCREENSHOTS: https://anytype.io/assets/usecases/Recipe%20book.jpg https://anytype.io/assets/usecases/Vault.jpg https://anytype.io/assets/usecases/Knowledge%20base.jpg +# SITES: https://anytype.io +# SOURCES: https://github.com/anyproto/anytype-ts \ No newline at end of file diff --git a/apps/anytype.md b/apps/anytype.md deleted file mode 100644 index 002afd1a3..000000000 --- a/apps/anytype.md +++ /dev/null @@ -1,12 +0,0 @@ -# ANYTYPE - - The everything app for those who celebrate trust & autonomy. Imagine an app where you can do everything. - - ![pic1](https://anytype.io/assets/usecases/Recipe%20book.jpg) ![pic2](https://anytype.io/assets/usecases/Vault.jpg) ![pic3](https://anytype.io/assets/usecases/Knowledge%20base.jpg) - - SITE: https://anytype.io - - SOURCE: https://github.com/anyproto/anytype-ts - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/anzeigenchef b/apps/anzeigenchef new file mode 100644 index 000000000..3b5ea4c97 --- /dev/null +++ b/apps/anzeigenchef @@ -0,0 +1,3 @@ +# anzeigenchef +AdsChef manages your classified ads +# SITES: https://anzeigenchef.roundcubes.de \ No newline at end of file diff --git a/apps/anzeigenchef.md b/apps/anzeigenchef.md deleted file mode 100644 index 1cdd91516..000000000 --- a/apps/anzeigenchef.md +++ /dev/null @@ -1,8 +0,0 @@ -# ANZEIGENCHEF - - AdsChef manages your classified ads - - SITE: https://anzeigenchef.roundcubes.de - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/aphelion-wallet b/apps/aphelion-wallet new file mode 100644 index 000000000..7545d5aaa --- /dev/null +++ b/apps/aphelion-wallet @@ -0,0 +1,3 @@ +# aphelion-wallet +The Aphelion desktop wallet application built with Electron. +# SITES: https://github.com/aphtoken/aph-wallet-gui \ No newline at end of file diff --git a/apps/aphelion-wallet.md b/apps/aphelion-wallet.md deleted file mode 100644 index 79fe21d52..000000000 --- a/apps/aphelion-wallet.md +++ /dev/null @@ -1,8 +0,0 @@ -# APHELION-WALLET - - The Aphelion desktop wallet application built with Electron. - - SITE: https://github.com/aphtoken/aph-wallet-gui - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/aphototoollibre b/apps/aphototoollibre new file mode 100644 index 000000000..0b953a865 --- /dev/null +++ b/apps/aphototoollibre @@ -0,0 +1,3 @@ +# aphototoollibre +Photo editing app for GNU/Linux +# SITES: https://github.com/aphototool/A-Photo-Tool-Libre \ No newline at end of file diff --git a/apps/aphototoollibre.md b/apps/aphototoollibre.md deleted file mode 100644 index 6d2add4be..000000000 --- a/apps/aphototoollibre.md +++ /dev/null @@ -1,8 +0,0 @@ -# APHOTOTOOLLIBRE - - Photo editing app for GNU/Linux - - SITE: https://github.com/aphototool/A-Photo-Tool-Libre - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/apidog b/apps/apidog new file mode 100644 index 000000000..f0b9b4cd2 --- /dev/null +++ b/apps/apidog @@ -0,0 +1,3 @@ +# apidog +API design, debugging, testing, and mock tool. +# SITES: https://apidog.canny.io \ No newline at end of file diff --git a/apps/apidog.md b/apps/apidog.md deleted file mode 100644 index 12b8781b9..000000000 --- a/apps/apidog.md +++ /dev/null @@ -1,8 +0,0 @@ -# APIDOG - - API design, debugging, testing, and mock tool. - - SITE: https://apidog.canny.io - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/apiflow b/apps/apiflow new file mode 100644 index 000000000..fa1b7a352 --- /dev/null +++ b/apps/apiflow @@ -0,0 +1,3 @@ +# apiflow +A modern API workspace that works both online and offlinecombining API documentation, testing, mock, and AI-powered automation in one lightweight tool. +# SITES: https://github.com/trueleaf/apiflow \ No newline at end of file diff --git a/apps/apiflow.md b/apps/apiflow.md deleted file mode 100644 index cb737857f..000000000 --- a/apps/apiflow.md +++ /dev/null @@ -1,8 +0,0 @@ -# APIFLOW - - A modern API workspace that works both online and offlinecombining API documentation, testing, mock, and AI-powered automation in one lightweight tool. - - SITE: https://github.com/trueleaf/apiflow - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/apk-editor-studio b/apps/apk-editor-studio new file mode 100644 index 000000000..c1c6b9f0d --- /dev/null +++ b/apps/apk-editor-studio @@ -0,0 +1,5 @@ +# apk-editor-studio +APK Editor Studio is a powerful yet easy to use APK reverse-engineering tool written in C++/Qt. +# SCREENSHOTS: https://qwertycube.com/apk-editor-studio/images/screenshots/1.png +# SITES: https://qwertycube.com/apk-editor-studio +# SOURCES: https://github.com/kefir500/apk-editor-studio \ No newline at end of file diff --git a/apps/apk-editor-studio.md b/apps/apk-editor-studio.md deleted file mode 100644 index 2cd85185f..000000000 --- a/apps/apk-editor-studio.md +++ /dev/null @@ -1,12 +0,0 @@ -# APK-EDITOR-STUDIO - - APK Editor Studio is a powerful yet easy to use APK reverse-engineering tool written in C++/Qt. - - ![Screenshot](https://qwertycube.com/apk-editor-studio/images/screenshots/1.png) - - SITE: https://qwertycube.com/apk-editor-studio - - SOURCE: https://github.com/kefir500/apk-editor-studio - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/apla b/apps/apla new file mode 100644 index 000000000..ec614dea3 --- /dev/null +++ b/apps/apla @@ -0,0 +1,3 @@ +# apla +Project was bootstrapped with Create React App. +# SITES: https://github.com/AplaProject/apla-front \ No newline at end of file diff --git a/apps/apla.md b/apps/apla.md deleted file mode 100644 index 5e2e493cb..000000000 --- a/apps/apla.md +++ /dev/null @@ -1,8 +0,0 @@ -# APLA - - Project was bootstrapped with Create React App. - - SITE: https://github.com/AplaProject/apla-front - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/app-outlet b/apps/app-outlet new file mode 100644 index 000000000..1620f02c7 --- /dev/null +++ b/apps/app-outlet @@ -0,0 +1,4 @@ +# app-outlet +App Outlet is a Universal application store. It easily allows you to search and download applications that runs on most Linux distributions. It currently supports AppImages, Flatpaks and Snaps packages. +# SCREENSHOTS: https://raw.githubusercontent.com/AppOutlet/AppOutlet/main/screenshot/screenshots.png +# SITES: https://appoutlet.github.io \ No newline at end of file diff --git a/apps/app-outlet.md b/apps/app-outlet.md deleted file mode 100644 index 39be698c5..000000000 --- a/apps/app-outlet.md +++ /dev/null @@ -1,10 +0,0 @@ -# APP-OUTLET - - App Outlet is a Universal application store. It easily allows you to search and download applications that runs on most Linux distributions. It currently supports AppImages, Flatpaks and Snaps packages. - - ![Screenshot](https://raw.githubusercontent.com/AppOutlet/AppOutlet/main/screenshot/screenshots.png) - - SITE: https://appoutlet.github.io - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/appflowy b/apps/appflowy new file mode 100644 index 000000000..e6ddda88a --- /dev/null +++ b/apps/appflowy @@ -0,0 +1,3 @@ +# appflowy +Bring projects, wikis, and teams together with AI. AppFlowy is an AI collaborative workspace where you achieve more without losing control of your data. The best open source alternative to Notion. +# SITES: https://github.com/AppFlowy-IO/AppFlowy \ No newline at end of file diff --git a/apps/appflowy.md b/apps/appflowy.md deleted file mode 100644 index 69017c08a..000000000 --- a/apps/appflowy.md +++ /dev/null @@ -1,8 +0,0 @@ -# APPFLOWY - - Bring projects, wikis, and teams together with AI. AppFlowy is an AI collaborative workspace where you achieve more without losing control of your data. The best open source alternative to Notion. - - SITE: https://github.com/AppFlowy-IO/AppFlowy - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/apphub b/apps/apphub new file mode 100644 index 000000000..b95ce4a1d --- /dev/null +++ b/apps/apphub @@ -0,0 +1,5 @@ +# apphub +AppHub is a Linux desktop application that simplifies the installation and management of .appImage packages through an intuitive graphical interface. + + Additionally, it provides the ability to easily uninstall applications installed via AppImage. +# SITES: https://github.com/francesco-gaglione/AppHub \ No newline at end of file diff --git a/apps/apphub.md b/apps/apphub.md deleted file mode 100644 index f4e6a0cf0..000000000 --- a/apps/apphub.md +++ /dev/null @@ -1,10 +0,0 @@ -# APPHUB - - AppHub is a Linux desktop application that simplifies the installation and management of .appImage packages through an intuitive graphical interface. - - Additionally, it provides the ability to easily uninstall applications installed via AppImage. - - SITE: https://github.com/francesco-gaglione/AppHub - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/appimage-builder b/apps/appimage-builder new file mode 100644 index 000000000..beded9f04 --- /dev/null +++ b/apps/appimage-builder @@ -0,0 +1,3 @@ +# appimage-builder +GNU/Linux packaging solution using the AppImage format +# SITES: https://github.com/AppImageCrafters/appimage-builder \ No newline at end of file diff --git a/apps/appimage-builder.md b/apps/appimage-builder.md deleted file mode 100644 index 1d1f1ceb6..000000000 --- a/apps/appimage-builder.md +++ /dev/null @@ -1,8 +0,0 @@ -# APPIMAGE-BUILDER - - GNU/Linux packaging solution using the AppImage format - - SITE: https://github.com/AppImageCrafters/appimage-builder - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/appimage-creator b/apps/appimage-creator new file mode 100644 index 000000000..ca4ee8865 --- /dev/null +++ b/apps/appimage-creator @@ -0,0 +1,3 @@ +# appimage-creator +AppImage Creator is a graphical tool for easily generating AppImage packages on Linux. This program allows users to create an AppImage from a source directory, executable and icon, automatically generating the files and structure necessary for the application to be packaged in AppImage format. +# SITES: https://github.com/Hiko-Seijuro-23/AppImage-creator \ No newline at end of file diff --git a/apps/appimage-creator.md b/apps/appimage-creator.md deleted file mode 100644 index a501e907b..000000000 --- a/apps/appimage-creator.md +++ /dev/null @@ -1,8 +0,0 @@ -# APPIMAGE-CREATOR - - AppImage Creator is a graphical tool for easily generating AppImage packages on Linux. This program allows users to create an AppImage from a source directory, executable and icon, automatically generating the files and structure necessary for the application to be packaged in AppImage format. - - SITE: https://github.com/Hiko-Seijuro-23/AppImage-creator - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/appimagecraft b/apps/appimagecraft new file mode 100644 index 000000000..b06a3d268 --- /dev/null +++ b/apps/appimagecraft @@ -0,0 +1,3 @@ +# appimagecraft +Powerful build script generator with a focus on making AppImages. +# SITES: https://github.com/TheAssassin/appimagecraft \ No newline at end of file diff --git a/apps/appimagecraft.md b/apps/appimagecraft.md deleted file mode 100644 index 0b9b2ccf9..000000000 --- a/apps/appimagecraft.md +++ /dev/null @@ -1,8 +0,0 @@ -# APPIMAGECRAFT - - Powerful build script generator with a focus on making AppImages. - - SITE: https://github.com/TheAssassin/appimagecraft - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/appimagelauncher b/apps/appimagelauncher new file mode 100644 index 000000000..854f4f8af --- /dev/null +++ b/apps/appimagelauncher @@ -0,0 +1,5 @@ +# appimagelauncher +AppImageLauncher is a helper application for Linux distributions serving as a kind of "entry point" for running and integrating AppImages. AppImageLauncher plays well with other applications managing AppImages, for example app stores. However, it doesn't depend on any of those, and can run completely standalone. + + This script provides the command line version. +# SITES: https://github.com/TheAssassin/AppImageLauncher \ No newline at end of file diff --git a/apps/appimagelauncher.md b/apps/appimagelauncher.md deleted file mode 100644 index 5741d5e5c..000000000 --- a/apps/appimagelauncher.md +++ /dev/null @@ -1,19 +0,0 @@ -# APPIMAGELAUNCHER - - AppImageLauncher is a helper application for Linux distributions serving as a kind of "entry point" for running and integrating AppImages. AppImageLauncher plays well with other applications managing AppImages, for example app stores. However, it doesn't depend on any of those, and can run completely standalone. - - This script provides the command line version. - USAGE: appimagelauncher --help - - NOTE, use the following command to open the graphical Settings Manager of AppImageLauncher: - - "appimagelauncher AppImageLauncherSettings" - - and set a different path for your AppImages, as the default one - is ~/Applications, while other tools managed by "AM" and AppMan - can use different paths (for example "appimagedl"). - - SITE: https://github.com/TheAssassin/AppImageLauncher - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/appimagelint b/apps/appimagelint new file mode 100644 index 000000000..7aab68aa7 --- /dev/null +++ b/apps/appimagelint @@ -0,0 +1,3 @@ +# appimagelint +Check AppImages for compatibility, best practices etc. +# SITES: https://github.com/TheAssassin/appimagelint \ No newline at end of file diff --git a/apps/appimagelint.md b/apps/appimagelint.md deleted file mode 100644 index 57f608ce6..000000000 --- a/apps/appimagelint.md +++ /dev/null @@ -1,8 +0,0 @@ -# APPIMAGELINT - - Check AppImages for compatibility, best practices etc. - - SITE: https://github.com/TheAssassin/appimagelint - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/appimagen b/apps/appimagen new file mode 100644 index 000000000..789650db4 --- /dev/null +++ b/apps/appimagen @@ -0,0 +1,5 @@ +# appimagen +A script that generates a custom AppImage from a PPA of your choice for the previous (not the oldest, not the latest) and still supported Ubuntu LTS. + + Powered by appimagetool, pkg2appimage and libunionpreload. +# SITES: https://github.com/ivan-hc/AppImaGen \ No newline at end of file diff --git a/apps/appimagen.md b/apps/appimagen.md deleted file mode 100644 index e95a5398c..000000000 --- a/apps/appimagen.md +++ /dev/null @@ -1,10 +0,0 @@ -# APPIMAGEN - - A script that generates a custom AppImage from a PPA of your choice for the previous (not the oldest, not the latest) and still supported Ubuntu LTS. - - Powered by appimagetool, pkg2appimage and libunionpreload. - - SITE: https://github.com/ivan-hc/AppImaGen - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/appimagepool b/apps/appimagepool new file mode 100644 index 000000000..5a1bd4fd8 --- /dev/null +++ b/apps/appimagepool @@ -0,0 +1,3 @@ +# appimagepool +A simple, modern AppImageHub Client, powered by flutter. +# SITES: https://github.com/prateekmedia/appimagepool \ No newline at end of file diff --git a/apps/appimagepool.md b/apps/appimagepool.md deleted file mode 100644 index 34129cd7c..000000000 --- a/apps/appimagepool.md +++ /dev/null @@ -1,8 +0,0 @@ -# APPIMAGEPOOL - - A simple, modern AppImageHub Client, powered by flutter. - - SITE: https://github.com/prateekmedia/appimagepool - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/appimagetool b/apps/appimagetool new file mode 100644 index 000000000..ed19cb451 --- /dev/null +++ b/apps/appimagetool @@ -0,0 +1,3 @@ +# appimagetool +Appimagetool is used to generate an AppImage from an existing AppDir. +# SITES: https://github.com/AppImage/appimagetool \ No newline at end of file diff --git a/apps/appimagetool.md b/apps/appimagetool.md deleted file mode 100644 index cc9006b13..000000000 --- a/apps/appimagetool.md +++ /dev/null @@ -1,8 +0,0 @@ -# APPIMAGETOOL - - Appimagetool is used to generate an AppImage from an existing AppDir. - - SITE: https://github.com/AppImage/appimagetool - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/appimageupdate b/apps/appimageupdate new file mode 100644 index 000000000..ab3991ddd --- /dev/null +++ b/apps/appimageupdate @@ -0,0 +1,3 @@ +# appimageupdate +A Rust implementation of AppImageUpdate, a tool for updating AppImages using efficient delta updates using zsync. +# SITES: https://github.com/pkgforge-dev/AppImageUpdate \ No newline at end of file diff --git a/apps/appimageupdate.md b/apps/appimageupdate.md deleted file mode 100644 index 7d788d75a..000000000 --- a/apps/appimageupdate.md +++ /dev/null @@ -1,8 +0,0 @@ -# APPIMAGEUPDATE - - A Rust implementation of AppImageUpdate, a tool for updating AppImages using efficient delta updates using zsync. - - SITE: https://github.com/pkgforge-dev/AppImageUpdate - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/appimageupdater b/apps/appimageupdater new file mode 100644 index 000000000..2acbb97e2 --- /dev/null +++ b/apps/appimageupdater @@ -0,0 +1,3 @@ +# appimageupdater +AppImage Updater for Humans built with QML/C++ with Qt5 :heart:. +# SITES: https://github.com/antony-jr/AppImageUpdater \ No newline at end of file diff --git a/apps/appimageupdater.md b/apps/appimageupdater.md deleted file mode 100644 index b26b8ec4a..000000000 --- a/apps/appimageupdater.md +++ /dev/null @@ -1,8 +0,0 @@ -# APPIMAGEUPDATER - - AppImage Updater for Humans built with QML/C++ with Qt5 :heart:. - - SITE: https://github.com/antony-jr/AppImageUpdater - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/appimageupdatetool b/apps/appimageupdatetool new file mode 100644 index 000000000..000a16732 --- /dev/null +++ b/apps/appimageupdatetool @@ -0,0 +1,5 @@ +# appimageupdatetool +AppImageUpdate lets you update AppImages using information embedded in the AppImage itself, if provided by the developer of the AppImage. + + This script allows you to choose between the improved fork and the official AppImage. The fork is provided by the Pkgforge community, with GH rate-limit-bypass & misc QOL changes. +# SITES: \ No newline at end of file diff --git a/apps/appimageupdatetool.md b/apps/appimageupdatetool.md deleted file mode 100644 index f072d62cf..000000000 --- a/apps/appimageupdatetool.md +++ /dev/null @@ -1,12 +0,0 @@ -# APPIMAGEUPDATETOOL - - AppImageUpdate lets you update AppImages using information embedded in the AppImage itself, if provided by the developer of the AppImage. - - This script allows you to choose between the improved fork and the official AppImage. The fork is provided by the Pkgforge community, with GH rate-limit-bypass & misc QOL changes. - - ENANCED FORK: https://github.com/pkgforge-dev/AppImageUpdate-Enhanced-Edition - - OFFICIAL APPIMAGES: https://github.com/AppImage/AppImageUpdate - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/appimg b/apps/appimg new file mode 100644 index 000000000..8f633e523 --- /dev/null +++ b/apps/appimg @@ -0,0 +1,3 @@ +# appimg +Appimg is a lightweight command-line tool that helps you manage AppImage files on Linux. +# SITES: https://github.com/pmnzt/appimage-manager \ No newline at end of file diff --git a/apps/appimg.md b/apps/appimg.md deleted file mode 100644 index 4bd3caa02..000000000 --- a/apps/appimg.md +++ /dev/null @@ -1,8 +0,0 @@ -# APPIMG - - Appimg is a lightweight command-line tool that helps you manage AppImage files on Linux. - - SITE: https://github.com/pmnzt/appimage-manager - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/appinstall b/apps/appinstall new file mode 100644 index 000000000..e2fba720b --- /dev/null +++ b/apps/appinstall @@ -0,0 +1,3 @@ +# appinstall +AppImage Installer is an easy to use and install tool to create app shrotcuts and integrate AppImage binaries to a linux desktop environment (Launcher) +# SITES: https://github.com/Drosaca/appImageInstaller \ No newline at end of file diff --git a/apps/appinstall.md b/apps/appinstall.md deleted file mode 100644 index 0a501b5b7..000000000 --- a/apps/appinstall.md +++ /dev/null @@ -1,8 +0,0 @@ -# APPINSTALL - - AppImage Installer is an easy to use and install tool to create app shrotcuts and integrate AppImage binaries to a linux desktop environment (Launcher) - - SITE: https://github.com/Drosaca/appImageInstaller - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/appium-inspector b/apps/appium-inspector new file mode 100644 index 000000000..4e5515d4b --- /dev/null +++ b/apps/appium-inspector @@ -0,0 +1,3 @@ +# appium-inspector +A GUI inspector for mobile apps and more, powered by a (separately installed) Appium server +# SITES: https://github.com/appium/appium-inspector \ No newline at end of file diff --git a/apps/appium-inspector.md b/apps/appium-inspector.md deleted file mode 100644 index 8f10f554d..000000000 --- a/apps/appium-inspector.md +++ /dev/null @@ -1,8 +0,0 @@ -# APPIUM-INSPECTOR - - A GUI inspector for mobile apps and more, powered by a (separately installed) Appium server - - SITE: https://github.com/appium/appium-inspector - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/appmanager b/apps/appmanager new file mode 100644 index 000000000..d021752f5 --- /dev/null +++ b/apps/appmanager @@ -0,0 +1,3 @@ +# appmanager +MacOS style AppImage installer and management application. +# SITES: https://github.com/kem-a/AppManager \ No newline at end of file diff --git a/apps/appmanager.md b/apps/appmanager.md deleted file mode 100644 index 7a36b8a51..000000000 --- a/apps/appmanager.md +++ /dev/null @@ -1,8 +0,0 @@ -# APPMANAGER - - MacOS style AppImage installer and management application. - - SITE: https://github.com/kem-a/AppManager - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/aptakube b/apps/aptakube new file mode 100644 index 000000000..a440829ee --- /dev/null +++ b/apps/aptakube @@ -0,0 +1,3 @@ +# aptakube +A modern and lightweight Kubernetes desktop client to help you operate workloads on multiple clusters. +# SITES: https://aptakube.com/ \ No newline at end of file diff --git a/apps/aptakube.md b/apps/aptakube.md deleted file mode 100644 index 30c2e2153..000000000 --- a/apps/aptakube.md +++ /dev/null @@ -1,8 +0,0 @@ -# APTAKUBE - - A modern and lightweight Kubernetes desktop client to help you operate workloads on multiple clusters. - - SITE: https://aptakube.com/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/aptly b/apps/aptly new file mode 100644 index 000000000..f6b027ef3 --- /dev/null +++ b/apps/aptly @@ -0,0 +1,3 @@ +# aptly +aptly - Debian repository management tool +# SITES: https://github.com/aptly-dev/aptly \ No newline at end of file diff --git a/apps/aptly.md b/apps/aptly.md deleted file mode 100644 index a6a50d3da..000000000 --- a/apps/aptly.md +++ /dev/null @@ -1,8 +0,0 @@ -# APTLY - - aptly - Debian repository management tool - - SITE: https://github.com/aptly-dev/aptly - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/apx-gcs b/apps/apx-gcs new file mode 100644 index 000000000..f74dd40ee --- /dev/null +++ b/apps/apx-gcs @@ -0,0 +1,5 @@ +# apx-gcs +APX Ground Control + + The purpose of this application is to manage command & control, mission planing, and safety requirements of Unmanned Vehicle (UAV). +# SITES: https://github.com/uavos/apx-gcs \ No newline at end of file diff --git a/apps/apx-gcs.md b/apps/apx-gcs.md deleted file mode 100644 index 0c7537093..000000000 --- a/apps/apx-gcs.md +++ /dev/null @@ -1,10 +0,0 @@ -# APX-GCS - - APX Ground Control - - The purpose of this application is to manage command & control, mission planing, and safety requirements of Unmanned Vehicle (UAV). - - SITE: https://github.com/uavos/apx-gcs - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ar b/apps/ar new file mode 100644 index 000000000..167e960a8 --- /dev/null +++ b/apps/ar @@ -0,0 +1,3 @@ +# ar +Create, modify, and extract from .deb archives. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/ar.md b/apps/ar.md deleted file mode 100644 index b23cb7276..000000000 --- a/apps/ar.md +++ /dev/null @@ -1,8 +0,0 @@ -# AR - - Create, modify, and extract from .deb archives. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/aranym b/apps/aranym new file mode 100644 index 000000000..d96617537 --- /dev/null +++ b/apps/aranym @@ -0,0 +1,3 @@ +# aranym +ARAnyM is a software virtual machine (similar to VirtualBox or Bochs) designed and developed for running 32-bit Atari ST/TT/Falcon operating systems (TOS, FreeMiNT, MagiC and Linux-m68k) and TOS/GEM applications on any kind of hardware - be it an IBM clone (read it as "PC" :-), an Apple, an Unix server, a graphics workstation or even a portable computer. +# SITES: https://aranym.github.io/ \ No newline at end of file diff --git a/apps/aranym.md b/apps/aranym.md deleted file mode 100644 index a340fe9e0..000000000 --- a/apps/aranym.md +++ /dev/null @@ -1,8 +0,0 @@ -# ARANYM - - ARAnyM is a software virtual machine (similar to VirtualBox or Bochs) designed and developed for running 32-bit Atari ST/TT/Falcon operating systems (TOS, FreeMiNT, MagiC and Linux-m68k) and TOS/GEM applications on any kind of hardware - be it an IBM clone (read it as "PC" :-), an Apple, an Unix server, a graphics workstation or even a portable computer. - - SITE: https://aranym.github.io/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/arcade-manager b/apps/arcade-manager new file mode 100644 index 000000000..497391ad4 --- /dev/null +++ b/apps/arcade-manager @@ -0,0 +1,3 @@ +# arcade-manager +Arcade management tool to handle your MAME/FBA romsets +# SITES: https://github.com/cosmo0/arcade-manager \ No newline at end of file diff --git a/apps/arcade-manager.md b/apps/arcade-manager.md deleted file mode 100644 index 8b7ec8ecf..000000000 --- a/apps/arcade-manager.md +++ /dev/null @@ -1,8 +0,0 @@ -# ARCADE-MANAGER - - Arcade management tool to handle your MAME/FBA romsets - - SITE: https://github.com/cosmo0/arcade-manager - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/arcdlp b/apps/arcdlp new file mode 100644 index 000000000..79dff0788 --- /dev/null +++ b/apps/arcdlp @@ -0,0 +1,3 @@ +# arcdlp +Open-source desktop video downloader powered by yt-dlp and electron. Download videos and audio from YouTube, Vimeo, Twitter, and thousands of sites. +# SITES: https://github.com/archisvaze/arcdlp \ No newline at end of file diff --git a/apps/arcdlp.md b/apps/arcdlp.md deleted file mode 100644 index faff02b97..000000000 --- a/apps/arcdlp.md +++ /dev/null @@ -1,8 +0,0 @@ -# ARCDLP - - Open-source desktop video downloader powered by yt-dlp and electron. Download videos and audio from YouTube, Vimeo, Twitter, and thousands of sites. - - SITE: https://github.com/archisvaze/arcdlp - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/arch b/apps/arch new file mode 100644 index 000000000..ff0c9cd10 --- /dev/null +++ b/apps/arch @@ -0,0 +1,4 @@ +# arch + Hardware name (same as uname -m). This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/arch-deployer b/apps/arch-deployer new file mode 100644 index 000000000..8dec64d75 --- /dev/null +++ b/apps/arch-deployer @@ -0,0 +1,3 @@ +# arch-deployer +A script to bulk download an Arch Linux package with all its dependencies to be converted in AppImage. +# SITES: https://github.com/ivan-hc/Arch-Deployer \ No newline at end of file diff --git a/apps/arch-deployer.md b/apps/arch-deployer.md deleted file mode 100644 index 608f3f474..000000000 --- a/apps/arch-deployer.md +++ /dev/null @@ -1,8 +0,0 @@ -# ARCH-DEPLOYER - - A script to bulk download an Arch Linux package with all its dependencies to be converted in AppImage. - - SITE: https://github.com/ivan-hc/Arch-Deployer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/arch-flatimage b/apps/arch-flatimage new file mode 100644 index 000000000..142709b84 --- /dev/null +++ b/apps/arch-flatimage @@ -0,0 +1,3 @@ +# arch-flatimage +FlatImage, a hybrid of Flatpak sandboxing with AppImage portability +# SITES: https://github.com/ruanformigoni/flatimage \ No newline at end of file diff --git a/apps/arch-flatimage.md b/apps/arch-flatimage.md deleted file mode 100644 index d4f1c141c..000000000 --- a/apps/arch-flatimage.md +++ /dev/null @@ -1,8 +0,0 @@ -# ARCH-FLATIMAGE - - FlatImage, a hybrid of Flatpak sandboxing with AppImage portability - - SITE: https://github.com/ruanformigoni/flatimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/arch.md b/apps/arch.md deleted file mode 100644 index 1684ac29f..000000000 --- a/apps/arch.md +++ /dev/null @@ -1,8 +0,0 @@ -# ARCH - - Hardware name (same as uname -m). This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/archimage-cli b/apps/archimage-cli new file mode 100644 index 000000000..8c766fe8e --- /dev/null +++ b/apps/archimage-cli @@ -0,0 +1,17 @@ +# archimage-cli +ArchImage is the bundling of Arch Linux packages into an AppImage using JuNest. + + This allows you to use the latest programs from Arch Linux and AUR on every distribution, old or newer. + + In the past AppImages were built using .deb packages or guessing instructions to make them work. With the "ArchImage" method all you have to do is the reverse, i.e. "delete" what is no longer needed. + + Among the advantages, we have: + - compatibility with all versions of Linux starting from kernel 2.6, therefore also older distributions than those normally indicated by the classic AppImage developers; + - easy and immediate compilation; + - AppRun script very minimal and easy to configure; + - all programs for Arch Linux within AppImage's reach, therefore one of the most extensive software parks in the GNU/Linux panorama. + + This tool is a part of "AM" and AppMan and many AppImages built to complete this collection (like obs-studio, mpv, abiword and handbrake) are built using this solution. + + To learn more visit the main repo of this project. +# SITES: https://github.com/ivan-hc/ArchImage \ No newline at end of file diff --git a/apps/archimage-cli.md b/apps/archimage-cli.md deleted file mode 100644 index df5b9d631..000000000 --- a/apps/archimage-cli.md +++ /dev/null @@ -1,22 +0,0 @@ -# ARCHIMAGE-CLI - - ArchImage is the bundling of Arch Linux packages into an AppImage using JuNest. - - This allows you to use the latest programs from Arch Linux and AUR on every distribution, old or newer. - - In the past AppImages were built using .deb packages or guessing instructions to make them work. With the "ArchImage" method all you have to do is the reverse, i.e. "delete" what is no longer needed. - - Among the advantages, we have: - - compatibility with all versions of Linux starting from kernel 2.6, therefore also older distributions than those normally indicated by the classic AppImage developers; - - easy and immediate compilation; - - AppRun script very minimal and easy to configure; - - all programs for Arch Linux within AppImage's reach, therefore one of the most extensive software parks in the GNU/Linux panorama. - - This tool is a part of "AM" and AppMan and many AppImages built to complete this collection (like obs-studio, mpv, abiword and handbrake) are built using this solution. - - To learn more visit the main repo of this project. - - SITE: https://github.com/ivan-hc/ArchImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/archimede b/apps/archimede new file mode 100644 index 000000000..a1854ae09 --- /dev/null +++ b/apps/archimede @@ -0,0 +1,3 @@ +# archimede +💡 Unobtrusive directory information fetcher. +# SITES: https://github.com/gennaro-tedesco/archimede \ No newline at end of file diff --git a/apps/archimede.md b/apps/archimede.md deleted file mode 100644 index 7516a21f4..000000000 --- a/apps/archimede.md +++ /dev/null @@ -1,8 +0,0 @@ -# ARCHIMEDE - - 💡 Unobtrusive directory information fetcher. - - SITE: https://github.com/gennaro-tedesco/archimede - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/archipel b/apps/archipel new file mode 100644 index 000000000..2639189e4 --- /dev/null +++ b/apps/archipel @@ -0,0 +1,3 @@ +# archipel +Archipel is a decentralized archiving and media library system. It's the centerpiece of Archipel: Somoco, a project to preserve grassroots history. archipel is based on the Dat project and is written in JavaScript. +# SITES: https://github.com/arso-project/archipel \ No newline at end of file diff --git a/apps/archipel.md b/apps/archipel.md deleted file mode 100644 index 752e48a46..000000000 --- a/apps/archipel.md +++ /dev/null @@ -1,8 +0,0 @@ -# ARCHIPEL - - Archipel is a decentralized archiving and media library system. It's the centerpiece of Archipel: Somoco, a project to preserve grassroots history. archipel is based on the Dat project and is written in JavaScript. - - SITE: https://github.com/arso-project/archipel - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/archipelago b/apps/archipelago new file mode 100644 index 000000000..5bf805cae --- /dev/null +++ b/apps/archipelago @@ -0,0 +1,3 @@ +# archipelago +Archipelago Multi-Game Randomizer and Server. +# SITES: https://github.com/ArchipelagoMW/Archipelago \ No newline at end of file diff --git a/apps/archipelago.md b/apps/archipelago.md deleted file mode 100644 index 966e5b568..000000000 --- a/apps/archipelago.md +++ /dev/null @@ -1,8 +0,0 @@ -# ARCHIPELAGO - - Archipelago Multi-Game Randomizer and Server. - - SITE: https://github.com/ArchipelagoMW/Archipelago - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/archisteamfarm b/apps/archisteamfarm new file mode 100644 index 000000000..185b98ab5 --- /dev/null +++ b/apps/archisteamfarm @@ -0,0 +1,3 @@ +# archisteamfarm +C# application with primary purpose of farming Steam cards from multiple accounts simultaneously. +# SITES: https://github.com/JustArchiNET/ArchiSteamFarm \ No newline at end of file diff --git a/apps/archisteamfarm.md b/apps/archisteamfarm.md deleted file mode 100644 index 87c4531cf..000000000 --- a/apps/archisteamfarm.md +++ /dev/null @@ -1,8 +0,0 @@ -# ARCHISTEAMFARM - - C# application with primary purpose of farming Steam cards from multiple accounts simultaneously. - - SITE: https://github.com/JustArchiNET/ArchiSteamFarm - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/archiveweb.page b/apps/archiveweb.page new file mode 100644 index 000000000..dbb098b32 --- /dev/null +++ b/apps/archiveweb.page @@ -0,0 +1,3 @@ +# archiveweb.page +A High-Fidelity Web Archiving Extension for Chrome and Chromium based browsers! +# SITES: https://github.com/webrecorder/archiveweb.page \ No newline at end of file diff --git a/apps/archiveweb.page.md b/apps/archiveweb.page.md deleted file mode 100644 index 63286c091..000000000 --- a/apps/archiveweb.page.md +++ /dev/null @@ -1,8 +0,0 @@ -# ARCHIVEWEB.PAGE - - A High-Fidelity Web Archiving Extension for Chrome and Chromium based browsers! - - SITE: https://github.com/webrecorder/archiveweb.page - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/arduino-ide b/apps/arduino-ide new file mode 100644 index 000000000..e8afd6168 --- /dev/null +++ b/apps/arduino-ide @@ -0,0 +1,3 @@ +# arduino-ide +Arduino IDE - open-source electronics platform. +# SITES: https://github.com/arduino/arduino-ide \ No newline at end of file diff --git a/apps/arduino-ide.md b/apps/arduino-ide.md deleted file mode 100644 index 6afc1358f..000000000 --- a/apps/arduino-ide.md +++ /dev/null @@ -1,8 +0,0 @@ -# ARDUINO-IDE - - Arduino IDE - open-source electronics platform. - - SITE: https://github.com/arduino/arduino-ide - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/arena-tracker b/apps/arena-tracker new file mode 100644 index 000000000..8cb13aab9 --- /dev/null +++ b/apps/arena-tracker @@ -0,0 +1,4 @@ +# arena-tracker +Arena Tracker is a deck Tracker for Hearthstone with arena in focus. It has a free and a premium version that you can unlock by becoming a patron (3$/month). +# SCREENSHOTS: https://raw.githubusercontent.com/supertriodo/Arena-Tracker/master/Readme/inGame.png +# SITES: https://github.com/supertriodo/Arena-Tracker \ No newline at end of file diff --git a/apps/arena-tracker.md b/apps/arena-tracker.md deleted file mode 100644 index 1632402a0..000000000 --- a/apps/arena-tracker.md +++ /dev/null @@ -1,10 +0,0 @@ -# ARENA-TRACKER - - Arena Tracker is a deck Tracker for Hearthstone with arena in focus. It has a free and a premium version that you can unlock by becoming a patron (3$/month). - - ![Screenshot](https://raw.githubusercontent.com/supertriodo/Arena-Tracker/master/Readme/inGame.png) - - SITE: https://github.com/supertriodo/Arena-Tracker - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ares b/apps/ares new file mode 100644 index 000000000..ea1ee8664 --- /dev/null +++ b/apps/ares @@ -0,0 +1,3 @@ +# ares +AppImage for the ares emulator +# SITES: https://github.com/bmsuseluda/ares-emu-appimage \ No newline at end of file diff --git a/apps/ares-emu b/apps/ares-emu new file mode 100644 index 000000000..cd244c18e --- /dev/null +++ b/apps/ares-emu @@ -0,0 +1,4 @@ +# ares-emu + Unofficial AppImage of the ares emulator. +# SITES: https://github.com/pkgforge-dev/ares-emu-appimage +# SOURCES: https://github.com/pkgforge-dev/ares-emu-appimage \ No newline at end of file diff --git a/apps/ares-emu.md b/apps/ares-emu.md deleted file mode 100644 index 6943a9719..000000000 --- a/apps/ares-emu.md +++ /dev/null @@ -1,8 +0,0 @@ -# ARES-EMU - - Unofficial AppImage of the ares emulator. - - SITE: https://github.com/pkgforge-dev/ares-emu-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/ares.md b/apps/ares.md deleted file mode 100644 index e5151af85..000000000 --- a/apps/ares.md +++ /dev/null @@ -1,8 +0,0 @@ -# ARES - - AppImage for the ares emulator - - SITE: https://github.com/bmsuseluda/ares-emu-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/aretext b/apps/aretext new file mode 100644 index 000000000..2cd828e86 --- /dev/null +++ b/apps/aretext @@ -0,0 +1,3 @@ +# aretext +Minimalist text editor with vim-compatible key bindings. +# SITES: https://github.com/aretext/aretext \ No newline at end of file diff --git a/apps/aretext.md b/apps/aretext.md deleted file mode 100644 index f814ec441..000000000 --- a/apps/aretext.md +++ /dev/null @@ -1,8 +0,0 @@ -# ARETEXT - - Minimalist text editor with vim-compatible key bindings. - - SITE: https://github.com/aretext/aretext - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ark b/apps/ark new file mode 100644 index 000000000..a35c8db2c --- /dev/null +++ b/apps/ark @@ -0,0 +1,7 @@ +# ark +Ark manages various archive formats, including tar, gzip, bzip2, rar and zip, as well as CD-ROM images. Ark can be used to browse, extract, create, and modify archives. + + This tool is part of the KDE Utils Suite. +# SCREENSHOTS: https://cdn.kde.org/screenshots/ark/ark.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-utils-appimage \ No newline at end of file diff --git a/apps/ark.desktop.wallet b/apps/ark.desktop.wallet new file mode 100644 index 000000000..16c19bea7 --- /dev/null +++ b/apps/ark.desktop.wallet @@ -0,0 +1,3 @@ +# ark.desktop.wallet +Ark Ecosystem Desktop Wallet +# SITES: https://github.com/ArkEcosystem/desktop-wallet \ No newline at end of file diff --git a/apps/ark.desktop.wallet.md b/apps/ark.desktop.wallet.md deleted file mode 100644 index 630d31a30..000000000 --- a/apps/ark.desktop.wallet.md +++ /dev/null @@ -1,8 +0,0 @@ -# ARK.DESKTOP.WALLET - - Ark Ecosystem Desktop Wallet - - SITE: https://github.com/ArkEcosystem/desktop-wallet - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ark.md b/apps/ark.md deleted file mode 100644 index 8299ba3bf..000000000 --- a/apps/ark.md +++ /dev/null @@ -1,14 +0,0 @@ -# ARK - - Ark manages various archive formats, including tar, gzip, bzip2, rar and zip, as well as CD-ROM images. Ark can be used to browse, extract, create, and modify archives. - - This tool is part of the KDE Utils Suite. - - ![Screenshot](https://cdn.kde.org/screenshots/ark/ark.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-utils-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/arkaway b/apps/arkaway new file mode 100644 index 000000000..dcd6af127 --- /dev/null +++ b/apps/arkaway @@ -0,0 +1,3 @@ +# arkaway +Another Arkanoid clone and make with Pyxel. +# SITES: https://github.com/son-link/arkaway \ No newline at end of file diff --git a/apps/arkaway.md b/apps/arkaway.md deleted file mode 100644 index 02680c5bb..000000000 --- a/apps/arkaway.md +++ /dev/null @@ -1,8 +0,0 @@ -# ARKAWAY - - Another Arkanoid clone and make with Pyxel. - - SITE: https://github.com/son-link/arkaway - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/arma3-unix-launcher b/apps/arma3-unix-launcher new file mode 100644 index 000000000..a7cdd9c92 --- /dev/null +++ b/apps/arma3-unix-launcher @@ -0,0 +1,3 @@ +# arma3-unix-launcher +ArmA 3 Launcher for Linux and Mac. +# SITES: https://github.com/muttleyxd/arma3-unix-launcher \ No newline at end of file diff --git a/apps/arma3-unix-launcher.md b/apps/arma3-unix-launcher.md deleted file mode 100644 index 513247577..000000000 --- a/apps/arma3-unix-launcher.md +++ /dev/null @@ -1,8 +0,0 @@ -# ARMA3-UNIX-LAUNCHER - - ArmA 3 Launcher for Linux and Mac. - - SITE: https://github.com/muttleyxd/arma3-unix-launcher - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/armagetronad b/apps/armagetronad new file mode 100644 index 000000000..970448609 --- /dev/null +++ b/apps/armagetronad @@ -0,0 +1,9 @@ +# armagetronad +Armagetron Advanced is a "Tron" clone in 3D. + + Armagetron is a multiplayer game in 3d that attempts to emulate and expand on the lightcycle sequence from the movie Tron. It's an old school arcade game slung into the 21st century. + + Highlights include a customizable playing arena, HUD, unique graphics, and AI bots. For the more advanced player there are new game modes and a wide variety of physics settings to tweak as well. +# SCREENSHOTS: https://community.linuxmint.com/img/screenshots/armagetronad.png +# SITES: http://www.armagetronad.org +# SOURCES: https://github.com/ArmagetronAd/armagetronad \ No newline at end of file diff --git a/apps/armagetronad.md b/apps/armagetronad.md deleted file mode 100644 index 7c247b3ea..000000000 --- a/apps/armagetronad.md +++ /dev/null @@ -1,16 +0,0 @@ -# ARMAGETRONAD - - Armagetron Advanced is a "Tron" clone in 3D. - - Armagetron is a multiplayer game in 3d that attempts to emulate and expand on the lightcycle sequence from the movie Tron. It's an old school arcade game slung into the 21st century. - - Highlights include a customizable playing arena, HUD, unique graphics, and AI bots. For the more advanced player there are new game modes and a wide variety of physics settings to tweak as well. - - ![Screenshot](https://community.linuxmint.com/img/screenshots/armagetronad.png) - - SITE: http://www.armagetronad.org - - SOURCE: https://github.com/ArmagetronAd/armagetronad - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/armcord b/apps/armcord new file mode 100644 index 000000000..d9b6521c0 --- /dev/null +++ b/apps/armcord @@ -0,0 +1,3 @@ +# armcord +ArmCord is a custom client designed to enhance your Discord experience while keeping everything lightweight. +# SITES: https://github.com/ArmCord/ArmCord \ No newline at end of file diff --git a/apps/armcord.md b/apps/armcord.md deleted file mode 100644 index a3720f693..000000000 --- a/apps/armcord.md +++ /dev/null @@ -1,8 +0,0 @@ -# ARMCORD - - ArmCord is a custom client designed to enhance your Discord experience while keeping everything lightweight. - - SITE: https://github.com/ArmCord/ArmCord - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/artisan b/apps/artisan new file mode 100644 index 000000000..b06c4c4c7 --- /dev/null +++ b/apps/artisan @@ -0,0 +1,3 @@ +# artisan +Visualizes the coffee roasting process +# SITES: https://github.com/artisan-roaster-scope/artisan \ No newline at end of file diff --git a/apps/artisan.md b/apps/artisan.md deleted file mode 100644 index 7601cfdf1..000000000 --- a/apps/artisan.md +++ /dev/null @@ -1,8 +0,0 @@ -# ARTISAN - - Visualizes the coffee roasting process - - SITE: https://github.com/artisan-roaster-scope/artisan - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/artix b/apps/artix new file mode 100644 index 000000000..5fda71b60 --- /dev/null +++ b/apps/artix @@ -0,0 +1,3 @@ +# artix +One app. All your favorite Artix games. +# SITES: https://www.artix.com \ No newline at end of file diff --git a/apps/artix.md b/apps/artix.md deleted file mode 100644 index 3509fd2a3..000000000 --- a/apps/artix.md +++ /dev/null @@ -1,8 +0,0 @@ -# ARTIX - - One app. All your favorite Artix games. - - SITE: https://www.artix.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/arx-libertatis b/apps/arx-libertatis new file mode 100644 index 000000000..27ad00e8e --- /dev/null +++ b/apps/arx-libertatis @@ -0,0 +1,4 @@ +# arx-libertatis + Unofficial AppImage of Arx Libertatis. +# SITES: https://github.com/pkgforge-dev/arx-libertatis-appimage +# SOURCES: https://github.com/pkgforge-dev/arx-libertatis-appimage \ No newline at end of file diff --git a/apps/arx-libertatis.md b/apps/arx-libertatis.md deleted file mode 100644 index 4d0c31aa8..000000000 --- a/apps/arx-libertatis.md +++ /dev/null @@ -1,8 +0,0 @@ -# ARX-LIBERTATIS - - Unofficial AppImage of Arx Libertatis. - - SITE: https://github.com/pkgforge-dev/arx-libertatis-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/as b/apps/as new file mode 100644 index 000000000..6f51d52c1 --- /dev/null +++ b/apps/as @@ -0,0 +1,4 @@ +# as + GNU assembler.. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/as.md b/apps/as.md deleted file mode 100644 index a70406b31..000000000 --- a/apps/as.md +++ /dev/null @@ -1,8 +0,0 @@ -# AS - - GNU assembler.. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/asarui b/apps/asarui new file mode 100644 index 000000000..541c4cab7 --- /dev/null +++ b/apps/asarui @@ -0,0 +1,3 @@ +# asarui +UI for Asar +# SITES: https://github.com/myazarc/AsarUI \ No newline at end of file diff --git a/apps/asarui.md b/apps/asarui.md deleted file mode 100644 index d9f396365..000000000 --- a/apps/asarui.md +++ /dev/null @@ -1,8 +0,0 @@ -# ASARUI - - UI for Asar - - SITE: https://github.com/myazarc/AsarUI - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ascendara b/apps/ascendara new file mode 100644 index 000000000..6f94dcca9 --- /dev/null +++ b/apps/ascendara @@ -0,0 +1,4 @@ +# ascendara + Skip extracting files, navigating setup processes, or any unnecessary hassles. +# SITES: https://github.com/Ascendara/ascendara +# SOURCES: https://github.com/Ascendara/ascendara \ No newline at end of file diff --git a/apps/ascendara.md b/apps/ascendara.md deleted file mode 100644 index da7b353dc..000000000 --- a/apps/ascendara.md +++ /dev/null @@ -1,8 +0,0 @@ -# ASCENDARA - - Skip extracting files, navigating setup processes, or any unnecessary hassles. - - SITE: https://github.com/Ascendara/ascendara - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/asgardex b/apps/asgardex new file mode 100644 index 000000000..a1bdb2139 --- /dev/null +++ b/apps/asgardex @@ -0,0 +1,3 @@ +# asgardex +Thorchain wallet desktop app +# SITES: https://github.com/thorchain/asgardex-electron \ No newline at end of file diff --git a/apps/asgardex.md b/apps/asgardex.md deleted file mode 100644 index f21384d33..000000000 --- a/apps/asgardex.md +++ /dev/null @@ -1,8 +0,0 @@ -# ASGARDEX - - Thorchain wallet desktop app - - SITE: https://github.com/thorchain/asgardex-electron - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/aspect b/apps/aspect new file mode 100644 index 000000000..ae26c353f --- /dev/null +++ b/apps/aspect @@ -0,0 +1,3 @@ +# aspect +Photo organization application with support for peer-to-peer based synchronization across devices. +# SITES: https://aspect.bildhuus.com \ No newline at end of file diff --git a/apps/aspect.md b/apps/aspect.md deleted file mode 100644 index 5fed2a5e7..000000000 --- a/apps/aspect.md +++ /dev/null @@ -1,8 +0,0 @@ -# ASPECT - - Photo organization application with support for peer-to-peer based synchronization across devices. - - SITE: https://aspect.bildhuus.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/asphyxia-core b/apps/asphyxia-core new file mode 100644 index 000000000..3f37ff569 --- /dev/null +++ b/apps/asphyxia-core @@ -0,0 +1,4 @@ +# asphyxia-core + Unofficial AppImage of Asphyxia CORE. +# SITES: https://github.com/pkgforge-dev/asphyxia-core-appimage +# SOURCES: https://github.com/pkgforge-dev/asphyxia-core-appimage \ No newline at end of file diff --git a/apps/asphyxia-core.md b/apps/asphyxia-core.md deleted file mode 100644 index b4abb7313..000000000 --- a/apps/asphyxia-core.md +++ /dev/null @@ -1,8 +0,0 @@ -# ASPHYXIA-CORE - - Unofficial AppImage of Asphyxia CORE. - - SITE: https://github.com/pkgforge-dev/asphyxia-core-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/astroffers b/apps/astroffers new file mode 100644 index 000000000..b47de18e9 --- /dev/null +++ b/apps/astroffers @@ -0,0 +1,3 @@ +# astroffers +Take offers to watch at given nights by the NGC2000 catalog +# SITES: https://github.com/jayhasyee/astroffers \ No newline at end of file diff --git a/apps/astroffers.md b/apps/astroffers.md deleted file mode 100644 index 3bd498e9b..000000000 --- a/apps/astroffers.md +++ /dev/null @@ -1,8 +0,0 @@ -# ASTROFFERS - - Take offers to watch at given nights by the NGC2000 catalog - - SITE: https://github.com/jayhasyee/astroffers - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/astrofox b/apps/astrofox new file mode 100644 index 000000000..825e1d405 --- /dev/null +++ b/apps/astrofox @@ -0,0 +1,3 @@ +# astrofox +Audio reactive motion graphics program +# SITES: https://appimage.github.io/Astrofox/ \ No newline at end of file diff --git a/apps/astrofox.md b/apps/astrofox.md deleted file mode 100644 index 9ea029c77..000000000 --- a/apps/astrofox.md +++ /dev/null @@ -1,8 +0,0 @@ -# ASTROFOX - - Audio reactive motion graphics program - - SITE: https://appimage.github.io/Astrofox/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/asunder b/apps/asunder new file mode 100644 index 000000000..49be3b18b --- /dev/null +++ b/apps/asunder @@ -0,0 +1,7 @@ +# asunder +Asunder is a graphical Audio CD ripper and encoder for Linux. You can use it to save tracks from an Audio CD as any of WAV, MP3, WavPack, Musepack and Monkey's Audio files. + + This is the unofficial AppImage. +# SCREENSHOTS: https://screenshots.debian.net/shrine/screenshot/simage/large-9997c700ffc1e25341d721d77de0aae2.png +# SITES: http://littlesvr.ca/asunder +# SOURCES: https://github.com/pkgforge-dev/Asunder-AppImage \ No newline at end of file diff --git a/apps/asunder.md b/apps/asunder.md deleted file mode 100644 index c587cdc81..000000000 --- a/apps/asunder.md +++ /dev/null @@ -1,14 +0,0 @@ -# ASUNDER - - Asunder is a graphical Audio CD ripper and encoder for Linux. You can use it to save tracks from an Audio CD as any of WAV, MP3, WavPack, Musepack and Monkey's Audio files. - - This is the unofficial AppImage. - - ![Screenshot](https://screenshots.debian.net/shrine/screenshot/simage/large-9997c700ffc1e25341d721d77de0aae2.png) - - SITE: http://littlesvr.ca/asunder - - APPIMAGE: https://github.com/pkgforge-dev/Asunder-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/atomicwallet b/apps/atomicwallet new file mode 100644 index 000000000..7156fd93d --- /dev/null +++ b/apps/atomicwallet @@ -0,0 +1,3 @@ +# atomicwallet +atomic vue-electron +# SITES: https://atomicwallet.io/ \ No newline at end of file diff --git a/apps/atomicwallet.md b/apps/atomicwallet.md deleted file mode 100644 index f06fdbb09..000000000 --- a/apps/atomicwallet.md +++ /dev/null @@ -1,8 +0,0 @@ -# ATOMICWALLET - - atomic vue-electron - - SITE: https://atomicwallet.io/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/atuin b/apps/atuin new file mode 100644 index 000000000..02a4ff85f --- /dev/null +++ b/apps/atuin @@ -0,0 +1,3 @@ +# atuin +Magical shell history +# SITES: https://github.com/atuinsh/atuin \ No newline at end of file diff --git a/apps/atuin.md b/apps/atuin.md deleted file mode 100644 index f4a41742b..000000000 --- a/apps/atuin.md +++ /dev/null @@ -1,8 +0,0 @@ -# ATUIN - - Magical shell history - - SITE: https://github.com/atuinsh/atuin - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/audacious b/apps/audacious new file mode 100644 index 000000000..bbf3ad254 --- /dev/null +++ b/apps/audacious @@ -0,0 +1,6 @@ +# audacious +Audacious is an open source audio player. Originally a descendant of XMMS, Audacious plays your music how you want it, without stealing away your computer’s resources from other tasks. + + This is the unofficial AppImage. +# SITES: https://audacious-media-player.org +# SOURCES: https://github.com/pkgforge-dev/Audacious-AppImage \ No newline at end of file diff --git a/apps/audacious.md b/apps/audacious.md deleted file mode 100644 index ae60adc8b..000000000 --- a/apps/audacious.md +++ /dev/null @@ -1,12 +0,0 @@ -# AUDACIOUS - - Audacious is an open source audio player. Originally a descendant of XMMS, Audacious plays your music how you want it, without stealing away your computer’s resources from other tasks. - - This is the unofficial AppImage. - - SITE: https://audacious-media-player.org - - APPIMAGE: https://github.com/pkgforge-dev/Audacious-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/audacity b/apps/audacity new file mode 100644 index 000000000..85ce268fe --- /dev/null +++ b/apps/audacity @@ -0,0 +1,3 @@ +# audacity +Audacity - Multiplatform Audio Editor. +# SITES: https://www.audacityteam.org \ No newline at end of file diff --git a/apps/audacity-enhanced b/apps/audacity-enhanced new file mode 100644 index 000000000..6f2fce5f8 --- /dev/null +++ b/apps/audacity-enhanced @@ -0,0 +1,3 @@ +# audacity-enhanced +Unofficial, multiplatform Audio Editor. +# SITES: https://github.com/pkgforge-dev/Audacity-AppImage-Enhanced \ No newline at end of file diff --git a/apps/audacity-enhanced.md b/apps/audacity-enhanced.md deleted file mode 100644 index f37185d9a..000000000 --- a/apps/audacity-enhanced.md +++ /dev/null @@ -1,8 +0,0 @@ -# AUDACITY-ENHANCED - - Unofficial, multiplatform Audio Editor. - - SITE: https://github.com/pkgforge-dev/Audacity-AppImage-Enhanced - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/audacity.md b/apps/audacity.md deleted file mode 100644 index deeea8cd7..000000000 --- a/apps/audacity.md +++ /dev/null @@ -1,8 +0,0 @@ -# AUDACITY - - Audacity - Multiplatform Audio Editor. - - SITE: https://www.audacityteam.org - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/audapolis b/apps/audapolis new file mode 100644 index 000000000..eee09f9b5 --- /dev/null +++ b/apps/audapolis @@ -0,0 +1,3 @@ +# audapolis +An editor for spoken-word audio with automatic transcription. +# SITES: https://github.com/bugbakery/audapolis \ No newline at end of file diff --git a/apps/audapolis.md b/apps/audapolis.md deleted file mode 100644 index b12358e53..000000000 --- a/apps/audapolis.md +++ /dev/null @@ -1,8 +0,0 @@ -# AUDAPOLIS - - An editor for spoken-word audio with automatic transcription. - - SITE: https://github.com/bugbakery/audapolis - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/audio-sharing b/apps/audio-sharing new file mode 100644 index 000000000..88ea457f8 --- /dev/null +++ b/apps/audio-sharing @@ -0,0 +1,3 @@ +# audio-sharing +Unofficial. Share audio from the desktop on local network using RTSP protocol. +# SITES: https://github.com/pkgforge-dev/Audio-Sharing-AppImage \ No newline at end of file diff --git a/apps/audio-sharing.md b/apps/audio-sharing.md deleted file mode 100644 index 6eb8a74a0..000000000 --- a/apps/audio-sharing.md +++ /dev/null @@ -1,8 +0,0 @@ -# AUDIO-SHARING - - Unofficial. Share audio from the desktop on local network using RTSP protocol. - - SITE: https://github.com/pkgforge-dev/Audio-Sharing-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/audiomoth-configuration-app b/apps/audiomoth-configuration-app new file mode 100644 index 000000000..d10308125 --- /dev/null +++ b/apps/audiomoth-configuration-app @@ -0,0 +1,3 @@ +# audiomoth-configuration-app +An Electron-based application capable of configuring the functionality of the AudioMoth recording device and setting the onboard clock. +# SITES: https://github.com/OpenAcousticDevices/AudioMoth-Configuration-App \ No newline at end of file diff --git a/apps/audiomoth-configuration-app.md b/apps/audiomoth-configuration-app.md deleted file mode 100644 index a1b6a5109..000000000 --- a/apps/audiomoth-configuration-app.md +++ /dev/null @@ -1,8 +0,0 @@ -# AUDIOMOTH-CONFIGURATION-APP - - An Electron-based application capable of configuring the functionality of the AudioMoth recording device and setting the onboard clock. - - SITE: https://github.com/OpenAcousticDevices/AudioMoth-Configuration-App - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/audiomoth-flash-app b/apps/audiomoth-flash-app new file mode 100644 index 000000000..99fb03c77 --- /dev/null +++ b/apps/audiomoth-flash-app @@ -0,0 +1,3 @@ +# audiomoth-flash-app +An Electron-based application designed to flash the AudioMoth recording device with new firmware. +# SITES: https://github.com/OpenAcousticDevices/AudioMoth-Flash-App \ No newline at end of file diff --git a/apps/audiomoth-flash-app.md b/apps/audiomoth-flash-app.md deleted file mode 100644 index eb1180c30..000000000 --- a/apps/audiomoth-flash-app.md +++ /dev/null @@ -1,8 +0,0 @@ -# AUDIOMOTH-FLASH-APP - - An Electron-based application designed to flash the AudioMoth recording device with new firmware. - - SITE: https://github.com/OpenAcousticDevices/AudioMoth-Flash-App - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/audiomoth-gps-sync-app b/apps/audiomoth-gps-sync-app new file mode 100644 index 000000000..34c1f0e0b --- /dev/null +++ b/apps/audiomoth-gps-sync-app @@ -0,0 +1,3 @@ +# audiomoth-gps-sync-app +An Electron-based application to generate WAV files synchronised with GPS time from the files generated by the AudioMoth-GPS-Sync firmware. +# SITES: https://github.com/OpenAcousticDevices/AudioMoth-GPS-Sync-App \ No newline at end of file diff --git a/apps/audiomoth-gps-sync-app.md b/apps/audiomoth-gps-sync-app.md deleted file mode 100644 index 8eceaf86b..000000000 --- a/apps/audiomoth-gps-sync-app.md +++ /dev/null @@ -1,8 +0,0 @@ -# AUDIOMOTH-GPS-SYNC-APP - - An Electron-based application to generate WAV files synchronised with GPS time from the files generated by the AudioMoth-GPS-Sync firmware. - - SITE: https://github.com/OpenAcousticDevices/AudioMoth-GPS-Sync-App - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/audiomoth-live-app b/apps/audiomoth-live-app new file mode 100644 index 000000000..c304ccba1 --- /dev/null +++ b/apps/audiomoth-live-app @@ -0,0 +1,3 @@ +# audiomoth-live-app +An Electron-based application for recording and analysing live audio from high sample rate microphones, including the AudioMoth USB Microphone. +# SITES: https://github.com/OpenAcousticDevices/AudioMoth-Live-App \ No newline at end of file diff --git a/apps/audiomoth-live-app.md b/apps/audiomoth-live-app.md deleted file mode 100644 index 35a4bfbfe..000000000 --- a/apps/audiomoth-live-app.md +++ /dev/null @@ -1,8 +0,0 @@ -# AUDIOMOTH-LIVE-APP - - An Electron-based application for recording and analysing live audio from high sample rate microphones, including the AudioMoth USB Microphone. - - SITE: https://github.com/OpenAcousticDevices/AudioMoth-Live-App - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/audiomoth-time-app b/apps/audiomoth-time-app new file mode 100644 index 000000000..b2bcb694e --- /dev/null +++ b/apps/audiomoth-time-app @@ -0,0 +1,3 @@ +# audiomoth-time-app +An Electron-based application capable of setting the on-board clock of the AudioMoth recording device. +# SITES: https://github.com/OpenAcousticDevices/AudioMoth-Time-App \ No newline at end of file diff --git a/apps/audiomoth-time-app.md b/apps/audiomoth-time-app.md deleted file mode 100644 index 23d81ccfb..000000000 --- a/apps/audiomoth-time-app.md +++ /dev/null @@ -1,8 +0,0 @@ -# AUDIOMOTH-TIME-APP - - An Electron-based application capable of setting the on-board clock of the AudioMoth recording device. - - SITE: https://github.com/OpenAcousticDevices/AudioMoth-Time-App - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/audiomoth-usb-microphone-app b/apps/audiomoth-usb-microphone-app new file mode 100644 index 000000000..4d830f4b7 --- /dev/null +++ b/apps/audiomoth-usb-microphone-app @@ -0,0 +1,3 @@ +# audiomoth-usb-microphone-app +An Electron-based application capable of configuring the functionality of the AudioMoth-USB-Microphone firmware. +# SITES: https://github.com/OpenAcousticDevices/AudioMoth-USB-Microphone-App \ No newline at end of file diff --git a/apps/audiomoth-usb-microphone-app.md b/apps/audiomoth-usb-microphone-app.md deleted file mode 100644 index ace0e8f94..000000000 --- a/apps/audiomoth-usb-microphone-app.md +++ /dev/null @@ -1,8 +0,0 @@ -# AUDIOMOTH-USB-MICROPHONE-APP - - An Electron-based application capable of configuring the functionality of the AudioMoth-USB-Microphone firmware. - - SITE: https://github.com/OpenAcousticDevices/AudioMoth-USB-Microphone-App - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/audiorelay b/apps/audiorelay new file mode 100644 index 000000000..24a751715 --- /dev/null +++ b/apps/audiorelay @@ -0,0 +1,3 @@ +# audiorelay +Stream audio between your devices. Turn your phone into a microphone or speakers for PC. +# SITES: https://audiorelay.net \ No newline at end of file diff --git a/apps/audiorelay.md b/apps/audiorelay.md deleted file mode 100644 index f9c853267..000000000 --- a/apps/audiorelay.md +++ /dev/null @@ -1,8 +0,0 @@ -# AUDIORELAY - - Stream audio between your devices. Turn your phone into a microphone or speakers for PC. - - SITE: https://audiorelay.net - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/augur b/apps/augur new file mode 100644 index 000000000..0e6346dda --- /dev/null +++ b/apps/augur @@ -0,0 +1,3 @@ +# augur +Augur Desktop Application +# SITES: https://github.com/AugurProject/augur-app \ No newline at end of file diff --git a/apps/augur.md b/apps/augur.md deleted file mode 100644 index 7f9993bb2..000000000 --- a/apps/augur.md +++ /dev/null @@ -1,8 +0,0 @@ -# AUGUR - - Augur Desktop Application - - SITE: https://github.com/AugurProject/augur-app - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/augustus b/apps/augustus new file mode 100644 index 000000000..f895272e6 --- /dev/null +++ b/apps/augustus @@ -0,0 +1,3 @@ +# augustus +An open source re-implementation of the game Caesar III. +# SITES: https://github.com/keriew/augustus \ No newline at end of file diff --git a/apps/augustus-enhanced b/apps/augustus-enhanced new file mode 100644 index 000000000..c8f6f92df --- /dev/null +++ b/apps/augustus-enhanced @@ -0,0 +1,3 @@ +# augustus-enhanced +Unofficial, a fork of the Julius project that intends to incorporate gameplay changes. +# SITES: https://github.com/pkgforge-dev/Augustus-AppImage-Enhanced \ No newline at end of file diff --git a/apps/augustus-enhanced.md b/apps/augustus-enhanced.md deleted file mode 100644 index 75e54c8b1..000000000 --- a/apps/augustus-enhanced.md +++ /dev/null @@ -1,8 +0,0 @@ -# AUGUSTUS-ENHANCED - - Unofficial, a fork of the Julius project that intends to incorporate gameplay changes. - - SITE: https://github.com/pkgforge-dev/Augustus-AppImage-Enhanced - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/augustus.md b/apps/augustus.md deleted file mode 100644 index 95bfa3b47..000000000 --- a/apps/augustus.md +++ /dev/null @@ -1,8 +0,0 @@ -# AUGUSTUS - - An open source re-implementation of the game Caesar III. - - SITE: https://github.com/keriew/augustus - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/aurora b/apps/aurora new file mode 100644 index 000000000..ba085a03d --- /dev/null +++ b/apps/aurora @@ -0,0 +1,3 @@ +# aurora +A utility to control RGB keyboard back-light and charging threshold for Asus TUF-gaming laptops. +# SITES: https://github.com/legacyO7/Aurora \ No newline at end of file diff --git a/apps/aurora.md b/apps/aurora.md deleted file mode 100644 index b9599d3d8..000000000 --- a/apps/aurora.md +++ /dev/null @@ -1,8 +0,0 @@ -# AURORA - - A utility to control RGB keyboard back-light and charging threshold for Asus TUF-gaming laptops. - - SITE: https://github.com/legacyO7/Aurora - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/auryo b/apps/auryo new file mode 100644 index 000000000..9adc4b8f3 --- /dev/null +++ b/apps/auryo @@ -0,0 +1,3 @@ +# auryo +Listen to SoundCloud® from the comfort of your desktop. Use keyboard shortcuts to navigate through your music. Be more productive. +# SITES: https://auryo.com/ \ No newline at end of file diff --git a/apps/auryo.md b/apps/auryo.md deleted file mode 100644 index 9b8e59dc8..000000000 --- a/apps/auryo.md +++ /dev/null @@ -1,8 +0,0 @@ -# AURYO - - Listen to SoundCloud® from the comfort of your desktop. Use keyboard shortcuts to navigate through your music. Be more productive. - - SITE: https://auryo.com/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/authenticator b/apps/authenticator new file mode 100644 index 000000000..1f1138567 --- /dev/null +++ b/apps/authenticator @@ -0,0 +1,3 @@ +# authenticator +Unofficial. An application which generates 2FA code in realtime. +# SITES: https://github.com/pkgforge-dev/Authenticator-AppImage \ No newline at end of file diff --git a/apps/authenticator.md b/apps/authenticator.md deleted file mode 100644 index d6f95af7d..000000000 --- a/apps/authenticator.md +++ /dev/null @@ -1,8 +0,0 @@ -# AUTHENTICATOR - - Unofficial. An application which generates 2FA code in realtime. - - SITE: https://github.com/pkgforge-dev/Authenticator-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/authme b/apps/authme new file mode 100644 index 000000000..07e360548 --- /dev/null +++ b/apps/authme @@ -0,0 +1,3 @@ +# authme +Simple cross-platform two-factor (2FA) authenticator app for desktop. +# SITES: https://github.com/Levminer/authme \ No newline at end of file diff --git a/apps/authme.md b/apps/authme.md deleted file mode 100644 index 5868bfd5b..000000000 --- a/apps/authme.md +++ /dev/null @@ -1,8 +0,0 @@ -# AUTHME - - Simple cross-platform two-factor (2FA) authenticator app for desktop. - - SITE: https://github.com/Levminer/authme - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/authy b/apps/authy new file mode 100644 index 000000000..f19fe523d --- /dev/null +++ b/apps/authy @@ -0,0 +1,3 @@ +# authy +Authy unofficial AppImage, by ryuuzaki42. +# SITES: https://github.com/ryuuzaki42/Authy_AppImage \ No newline at end of file diff --git a/apps/authy.md b/apps/authy.md deleted file mode 100644 index 4e42b1a4b..000000000 --- a/apps/authy.md +++ /dev/null @@ -1,8 +0,0 @@ -# AUTHY - - Authy unofficial AppImage, by ryuuzaki42. - - SITE: https://github.com/ryuuzaki42/Authy_AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/auto-claude b/apps/auto-claude new file mode 100644 index 000000000..dc33f0519 --- /dev/null +++ b/apps/auto-claude @@ -0,0 +1,3 @@ +# auto-claude +Autonomous multi-session AI coding framework that plans, builds, and validates software for you. +# SITES: https://github.com/AndyMik90/Auto-Claude \ No newline at end of file diff --git a/apps/auto-claude.md b/apps/auto-claude.md deleted file mode 100644 index e4030c068..000000000 --- a/apps/auto-claude.md +++ /dev/null @@ -1,8 +0,0 @@ -# AUTO-CLAUDE - - Autonomous multi-session AI coding framework that plans, builds, and validates software for you. - - SITE: https://github.com/AndyMik90/Auto-Claude - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/autoedit2 b/apps/autoedit2 new file mode 100644 index 000000000..012407f9f --- /dev/null +++ b/apps/autoedit2 @@ -0,0 +1,3 @@ +# autoedit2 +autoEdit2 Desktop Client for Linux +# SITES: https://github.com/OpenNewsLabs/autoEdit_2 \ No newline at end of file diff --git a/apps/autoedit2.md b/apps/autoedit2.md deleted file mode 100644 index 7c61e8489..000000000 --- a/apps/autoedit2.md +++ /dev/null @@ -1,8 +0,0 @@ -# AUTOEDIT2 - - autoEdit2 Desktop Client for Linux - - SITE: https://github.com/OpenNewsLabs/autoEdit_2 - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/autosubsync b/apps/autosubsync new file mode 100644 index 000000000..828b029a6 --- /dev/null +++ b/apps/autosubsync @@ -0,0 +1,4 @@ +# autosubsync + Automatic subtitle synchronization tool. +# SITES: https://github.com/denizsafak/AutoSubSync +# SOURCES: https://github.com/denizsafak/AutoSubSync \ No newline at end of file diff --git a/apps/autosubsync.md b/apps/autosubsync.md deleted file mode 100644 index 7c5cc4354..000000000 --- a/apps/autosubsync.md +++ /dev/null @@ -1,8 +0,0 @@ -# AUTOSUBSYNC - - Automatic subtitle synchronization tool. - - SITE: https://github.com/denizsafak/AutoSubSync - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/avantgarde b/apps/avantgarde new file mode 100644 index 000000000..392cef802 --- /dev/null +++ b/apps/avantgarde @@ -0,0 +1,3 @@ +# avantgarde +Avalonia XAML Preview for Linux and Windows. +# SITES: https://github.com/kuiperzone/AvantGarde \ No newline at end of file diff --git a/apps/avantgarde.md b/apps/avantgarde.md deleted file mode 100644 index c33d02cd6..000000000 --- a/apps/avantgarde.md +++ /dev/null @@ -1,8 +0,0 @@ -# AVANTGARDE - - Avalonia XAML Preview for Linux and Windows. - - SITE: https://github.com/kuiperzone/AvantGarde - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/avidemux b/apps/avidemux new file mode 100644 index 000000000..15ec822c2 --- /dev/null +++ b/apps/avidemux @@ -0,0 +1,4 @@ +# avidemux +Avidemux - Multiplatform Video Editor. +# SCREENSHOTS: https://user-images.githubusercontent.com/88724353/235691024-7d2939aa-d6a1-4850-b2f5-687818899ac3.jpg +# SITES: https://github.com/mean00/avidemux2 \ No newline at end of file diff --git a/apps/avidemux-qt b/apps/avidemux-qt new file mode 100644 index 000000000..7bd57fce2 --- /dev/null +++ b/apps/avidemux-qt @@ -0,0 +1,6 @@ +# avidemux-qt +Unofficial, my custom Avidemux Video Editor built to use system themes. + + This is the experimental release that the author of "AM" uses for personal use. +# SCREENSHOTS: https://user-images.githubusercontent.com/88724353/235691165-4b7409d1-0718-44a6-ba9e-f18492afd987.jpg +# SITES: https://github.com/ivan-hc/Avidemux-unofficial-appimage \ No newline at end of file diff --git a/apps/avidemux-qt.md b/apps/avidemux-qt.md deleted file mode 100644 index a11b48da5..000000000 --- a/apps/avidemux-qt.md +++ /dev/null @@ -1,12 +0,0 @@ -# AVIDEMUX-QT - - Unofficial, my custom Avidemux Video Editor built to use system themes. - - This is the experimental release that the author of "AM" uses for personal use. - - ![Screenshot](https://user-images.githubusercontent.com/88724353/235691165-4b7409d1-0718-44a6-ba9e-f18492afd987.jpg) - - SITE: https://github.com/ivan-hc/Avidemux-unofficial-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/avidemux.md b/apps/avidemux.md deleted file mode 100644 index a2b19d2f8..000000000 --- a/apps/avidemux.md +++ /dev/null @@ -1,10 +0,0 @@ -# AVIDEMUX - - Avidemux - Multiplatform Video Editor. - - ![Screenshot](https://user-images.githubusercontent.com/88724353/235691024-7d2939aa-d6a1-4850-b2f5-687818899ac3.jpg) - - SITE: https://github.com/mean00/avidemux2 - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/avogadro2 b/apps/avogadro2 new file mode 100644 index 000000000..bfc69e3e9 --- /dev/null +++ b/apps/avogadro2 @@ -0,0 +1,3 @@ +# avogadro2 +An advanced molecular editor designed for cross-platform use in computational chemistry, molecular modeling, bioinformatics, materials science, and related areas. +# SITES: https://two.avogadro.cc/ \ No newline at end of file diff --git a/apps/avogadro2.md b/apps/avogadro2.md deleted file mode 100644 index 4dfe96c44..000000000 --- a/apps/avogadro2.md +++ /dev/null @@ -1,8 +0,0 @@ -# AVOGADRO2 - - An advanced molecular editor designed for cross-platform use in computational chemistry, molecular modeling, bioinformatics, materials science, and related areas. - - SITE: https://two.avogadro.cc/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/awakened-poe-trade b/apps/awakened-poe-trade new file mode 100644 index 000000000..d410f6914 --- /dev/null +++ b/apps/awakened-poe-trade @@ -0,0 +1,3 @@ +# awakened-poe-trade +Path of Exile trading app for price checking. +# SITES: https://snosme.github.io/awakened-poe-trade/download \ No newline at end of file diff --git a/apps/awakened-poe-trade-enhanced b/apps/awakened-poe-trade-enhanced new file mode 100644 index 000000000..328d46b2c --- /dev/null +++ b/apps/awakened-poe-trade-enhanced @@ -0,0 +1,3 @@ +# awakened-poe-trade-enhanced +Unofficial AppImage of Awakened POE Trade with some fixes and wider OS support. +# SITES: https://github.com/pkgforge-dev/Awakened-POE-Trade-AppImage-Enhanced \ No newline at end of file diff --git a/apps/awakened-poe-trade-enhanced.md b/apps/awakened-poe-trade-enhanced.md deleted file mode 100644 index d2dcae3ea..000000000 --- a/apps/awakened-poe-trade-enhanced.md +++ /dev/null @@ -1,8 +0,0 @@ -# AWAKENED-POE-TRADE-ENHANCED - - Unofficial AppImage of Awakened POE Trade with some fixes and wider OS support. - - SITE: https://github.com/pkgforge-dev/Awakened-POE-Trade-AppImage-Enhanced - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/awakened-poe-trade.md b/apps/awakened-poe-trade.md deleted file mode 100644 index 99b20f629..000000000 --- a/apps/awakened-poe-trade.md +++ /dev/null @@ -1,8 +0,0 @@ -# AWAKENED-POE-TRADE - - Path of Exile trading app for price checking. - - SITE: https://snosme.github.io/awakened-poe-trade/download - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/axe-electrum b/apps/axe-electrum new file mode 100644 index 000000000..b7e0d4e93 --- /dev/null +++ b/apps/axe-electrum @@ -0,0 +1,3 @@ +# axe-electrum +Axe Electrum Wallet +# SITES: https://github.com/AXErunners/electrum-axe \ No newline at end of file diff --git a/apps/axe-electrum.md b/apps/axe-electrum.md deleted file mode 100644 index 926975f83..000000000 --- a/apps/axe-electrum.md +++ /dev/null @@ -1,8 +0,0 @@ -# AXE-ELECTRUM - - Axe Electrum Wallet - - SITE: https://github.com/AXErunners/electrum-axe - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/axolotl b/apps/axolotl new file mode 100644 index 000000000..835d4b7b8 --- /dev/null +++ b/apps/axolotl @@ -0,0 +1,3 @@ +# axolotl +A Signal compatible cross plattform client written in Go and Vuejs. +# SITES: https://github.com/nanu-c/axolotl \ No newline at end of file diff --git a/apps/axolotl.md b/apps/axolotl.md deleted file mode 100644 index 2a4b7e790..000000000 --- a/apps/axolotl.md +++ /dev/null @@ -1,8 +0,0 @@ -# AXOLOTL - - A Signal compatible cross plattform client written in Go and Vuejs. - - SITE: https://github.com/nanu-c/axolotl - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/aya b/apps/aya new file mode 100644 index 000000000..6aabb77cb --- /dev/null +++ b/apps/aya @@ -0,0 +1,3 @@ +# aya +AYA is a desktop application for easily controlling android devices, which can be considered as a GUI wrapper for ADB. +# SITES: https://github.com/liriliri/aya \ No newline at end of file diff --git a/apps/aya.md b/apps/aya.md deleted file mode 100644 index 85b1d0568..000000000 --- a/apps/aya.md +++ /dev/null @@ -1,11 +0,0 @@ -# AYA - - AYA is a desktop application for easily controlling android devices, which can be considered as a GUI wrapper for ADB. - - | ![2025-02-08_13-20](https://github.com/user-attachments/assets/a02eb214-7a59-4aef-bee0-022739f30c95) | ![2025-02-08_13-20_1](https://github.com/user-attachments/assets/516edf16-2619-4bba-8d7d-d2b694f0112c) | ![2025-02-08_13-21](https://github.com/user-attachments/assets/2b9bbd58-23c8-44be-a130-4406091670fc) | - | - | - | - | - - SITE: https://github.com/liriliri/aya - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ayandict b/apps/ayandict new file mode 100644 index 000000000..c635321a7 --- /dev/null +++ b/apps/ayandict @@ -0,0 +1,3 @@ +# ayandict +Simple yet advanced multi-lingual cross-platform offline dictionary for desktop, using Qt and Go. +# SITES: https://github.com/ilius/ayandict \ No newline at end of file diff --git a/apps/ayandict.md b/apps/ayandict.md deleted file mode 100644 index 6ec314f44..000000000 --- a/apps/ayandict.md +++ /dev/null @@ -1,8 +0,0 @@ -# AYANDICT - - Simple yet advanced multi-lingual cross-platform offline dictionary for desktop, using Qt and Go. - - SITE: https://github.com/ilius/ayandict - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/azahar-enhanced b/apps/azahar-enhanced new file mode 100644 index 000000000..4c54afdc9 --- /dev/null +++ b/apps/azahar-enhanced @@ -0,0 +1,3 @@ +# azahar-enhanced +Unofficial AppImage of Azahar, with optimized builds for modern cpus. [Maintainer=@Samueru-sama] +# SITES: https://github.com/pkgforge-dev/Azahar-AppImage-Enhanced \ No newline at end of file diff --git a/apps/azahar-enhanced.md b/apps/azahar-enhanced.md deleted file mode 100644 index 6494c084a..000000000 --- a/apps/azahar-enhanced.md +++ /dev/null @@ -1,8 +0,0 @@ -# AZAHAR-ENHANCED - - Unofficial AppImage of Azahar, with optimized builds for modern cpus. [Maintainer=@Samueru-sama] - - SITE: https://github.com/pkgforge-dev/Azahar-AppImage-Enhanced - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/azaharplus b/apps/azaharplus new file mode 100644 index 000000000..aa3eef2dd --- /dev/null +++ b/apps/azaharplus @@ -0,0 +1,3 @@ +# azaharplus +A fork of the Azahar 3DS emulator with extra features an open-source 3DS emulator project based on Citra. +# SITES: https://github.com/AzaharPlus/AzaharPlus \ No newline at end of file diff --git a/apps/azaharplus-pkg-extractor b/apps/azaharplus-pkg-extractor new file mode 100644 index 000000000..42db41093 --- /dev/null +++ b/apps/azaharplus-pkg-extractor @@ -0,0 +1,3 @@ +# azaharplus-pkg-extractor +Standalone PKG extractor CLI based on code that used to be in ShadPS4 PlayStation 4 emulator written in C++. +# SITES: https://github.com/AzaharPlus/shadPS4Plus \ No newline at end of file diff --git a/apps/azaharplus-pkg-extractor.md b/apps/azaharplus-pkg-extractor.md deleted file mode 100644 index 0d1bb0c03..000000000 --- a/apps/azaharplus-pkg-extractor.md +++ /dev/null @@ -1,8 +0,0 @@ -# AZAHARPLUS-PKG-EXTRACTOR - - Standalone PKG extractor CLI based on code that used to be in ShadPS4 PlayStation 4 emulator written in C++. - - SITE: https://github.com/AzaharPlus/shadPS4Plus - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/azaharplus.md b/apps/azaharplus.md deleted file mode 100644 index 89b236447..000000000 --- a/apps/azaharplus.md +++ /dev/null @@ -1,8 +0,0 @@ -# AZAHARPLUS - - A fork of the Azahar 3DS emulator with extra features an open-source 3DS emulator project based on Citra. - - SITE: https://github.com/AzaharPlus/AzaharPlus - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/b2sum b/apps/b2sum new file mode 100644 index 000000000..70b9d9006 --- /dev/null +++ b/apps/b2sum @@ -0,0 +1,4 @@ +# b2sum + Check BLAKE2 message digest. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/b2sum.md b/apps/b2sum.md deleted file mode 100644 index 11d779e42..000000000 --- a/apps/b2sum.md +++ /dev/null @@ -1,8 +0,0 @@ -# B2SUM - - Check BLAKE2 message digest. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/badlion b/apps/badlion new file mode 100644 index 000000000..e99ef3f82 --- /dev/null +++ b/apps/badlion @@ -0,0 +1,3 @@ +# badlion +The Most Complete All-In-One Mod Library for Minecraft with 100+ Mods, FPS Improvements, and more. +# SITES: https://client.badlion.net/ \ No newline at end of file diff --git a/apps/badlion.md b/apps/badlion.md deleted file mode 100644 index 0b9e232d2..000000000 --- a/apps/badlion.md +++ /dev/null @@ -1,8 +0,0 @@ -# BADLION - - The Most Complete All-In-One Mod Library for Minecraft with 100+ Mods, FPS Improvements, and more. - - SITE: https://client.badlion.net/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/baijimangaviewer b/apps/baijimangaviewer new file mode 100644 index 000000000..c560948b3 --- /dev/null +++ b/apps/baijimangaviewer @@ -0,0 +1,3 @@ +# baijimangaviewer +A modern manga viewer inspired by Quivi that uses Material Design +# SITES: https://github.com/shizkun/manga-viewer \ No newline at end of file diff --git a/apps/baijimangaviewer.md b/apps/baijimangaviewer.md deleted file mode 100644 index 0fe93b4f1..000000000 --- a/apps/baijimangaviewer.md +++ /dev/null @@ -1,8 +0,0 @@ -# BAIJIMANGAVIEWER - - A modern manga viewer inspired by Quivi that uses Material Design - - SITE: https://github.com/shizkun/manga-viewer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/balatro-multiplayer b/apps/balatro-multiplayer new file mode 100644 index 000000000..75490f71f --- /dev/null +++ b/apps/balatro-multiplayer @@ -0,0 +1,3 @@ +# balatro-multiplayer +A Multiplayer Mod for Balatro. +# SITES: https://github.com/Balatro-Multiplayer/Balatro-Multiplayer-Launcher \ No newline at end of file diff --git a/apps/balatro-multiplayer.md b/apps/balatro-multiplayer.md deleted file mode 100644 index 3ba87d0d8..000000000 --- a/apps/balatro-multiplayer.md +++ /dev/null @@ -1,8 +0,0 @@ -# BALATRO-MULTIPLAYER - - A Multiplayer Mod for Balatro. - - SITE: https://github.com/Balatro-Multiplayer/Balatro-Multiplayer-Launcher - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/bambustudio b/apps/bambustudio new file mode 100644 index 000000000..2df5be2f6 --- /dev/null +++ b/apps/bambustudio @@ -0,0 +1,3 @@ +# bambustudio +PC Software for BambuLab's 3D printers +# SITES: https://github.com/bambulab/BambuStudio \ No newline at end of file diff --git a/apps/bambustudio.md b/apps/bambustudio.md deleted file mode 100644 index fea81d859..000000000 --- a/apps/bambustudio.md +++ /dev/null @@ -1,8 +0,0 @@ -# BAMBUSTUDIO - - PC Software for BambuLab's 3D printers - - SITE: https://github.com/bambulab/BambuStudio - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/bananas b/apps/bananas new file mode 100644 index 000000000..3d209a149 --- /dev/null +++ b/apps/bananas @@ -0,0 +1,3 @@ +# bananas +Bananas, Cross-Platform screen sharing made simple. +# SITES: https://github.com/mistweaverco/bananas \ No newline at end of file diff --git a/apps/bananas.md b/apps/bananas.md deleted file mode 100644 index 8687e1c65..000000000 --- a/apps/bananas.md +++ /dev/null @@ -1,8 +0,0 @@ -# BANANAS - - Bananas, Cross-Platform screen sharing made simple. - - SITE: https://github.com/mistweaverco/bananas - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/banban b/apps/banban new file mode 100644 index 000000000..a637b51fe --- /dev/null +++ b/apps/banban @@ -0,0 +1,3 @@ +# banban +A productivity app inspired by GitHub Projects Kanban +# SITES: https://github.com/HubertK05/banban \ No newline at end of file diff --git a/apps/banban.md b/apps/banban.md deleted file mode 100644 index bf036b03c..000000000 --- a/apps/banban.md +++ /dev/null @@ -1,8 +0,0 @@ -# BANBAN - - A productivity app inspired by GitHub Projects Kanban - - SITE: https://github.com/HubertK05/banban - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/bandwhich b/apps/bandwhich new file mode 100644 index 000000000..fcdb14cf8 --- /dev/null +++ b/apps/bandwhich @@ -0,0 +1,3 @@ +# bandwhich +Terminal bandwidth utilization tool +# SITES: https://github.com/imsnif/bandwhich \ No newline at end of file diff --git a/apps/bandwhich.md b/apps/bandwhich.md deleted file mode 100644 index 64260d55e..000000000 --- a/apps/bandwhich.md +++ /dev/null @@ -1,8 +0,0 @@ -# BANDWHICH - - Terminal bandwidth utilization tool - - SITE: https://github.com/imsnif/bandwhich - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/banjo-recompiled b/apps/banjo-recompiled new file mode 100644 index 000000000..22211a15f --- /dev/null +++ b/apps/banjo-recompiled @@ -0,0 +1,3 @@ +# banjo-recompiled +Unofficial, a static recompiled port of N64 Banjo-Kazooie for PC. +# SITES: https://github.com/pkgforge-dev/Banjo-Recompiled-AppImage \ No newline at end of file diff --git a/apps/banjo-recompiled.md b/apps/banjo-recompiled.md deleted file mode 100644 index a4b719396..000000000 --- a/apps/banjo-recompiled.md +++ /dev/null @@ -1,8 +0,0 @@ -# BANJO-RECOMPILED - - Unofficial, a static recompiled port of N64 Banjo-Kazooie for PC. - - SITE: https://github.com/pkgforge-dev/Banjo-Recompiled-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/banjorecomp b/apps/banjorecomp new file mode 100644 index 000000000..9849370d8 --- /dev/null +++ b/apps/banjorecomp @@ -0,0 +1,4 @@ +# banjorecomp + Unofficial AppImage of Banjo: Recompiled. +# SITES: https://github.com/pkgforge-dev/banjorecomp-appimage +# SOURCES: https://github.com/pkgforge-dev/banjorecomp-appimage \ No newline at end of file diff --git a/apps/banjorecomp.md b/apps/banjorecomp.md deleted file mode 100644 index 2ba56eb93..000000000 --- a/apps/banjorecomp.md +++ /dev/null @@ -1,8 +0,0 @@ -# BANJORECOMP - - Unofficial AppImage of Banjo: Recompiled. - - SITE: https://github.com/pkgforge-dev/banjorecomp-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/baobab b/apps/baobab new file mode 100644 index 000000000..b35a9e956 --- /dev/null +++ b/apps/baobab @@ -0,0 +1,4 @@ +# baobab + A graphical directory tree analyzer for the GNOME desktop environment, to keep your disk usage and available space under control. +# SITES: https://github.com/REPLACETHIS +# SOURCES: https://github.com/REPLACETHIS \ No newline at end of file diff --git a/apps/baobab.md b/apps/baobab.md deleted file mode 100644 index 891944174..000000000 --- a/apps/baobab.md +++ /dev/null @@ -1,10 +0,0 @@ -# BAOBAB - - A graphical directory tree analyzer for the GNOME desktop environment, to keep your disk usage and available space under control. - - This script can install the latest release (if any) and a legacy variant. - - SITE (GTK3): https://github.com/ivan-hc/GNOME3-appimages - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/barnacal b/apps/barnacal new file mode 100644 index 000000000..8c7ec5551 --- /dev/null +++ b/apps/barnacal @@ -0,0 +1,3 @@ +# barnacal +A simple menu bar app for viewing a calendar +# SITES: https://github.com/mike-engel/Barnacal \ No newline at end of file diff --git a/apps/barnacal.md b/apps/barnacal.md deleted file mode 100644 index db554abc5..000000000 --- a/apps/barnacal.md +++ /dev/null @@ -1,8 +0,0 @@ -# BARNACAL - - A simple menu bar app for viewing a calendar - - SITE: https://github.com/mike-engel/Barnacal - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/base32 b/apps/base32 new file mode 100644 index 000000000..1efc2cdde --- /dev/null +++ b/apps/base32 @@ -0,0 +1,4 @@ +# base32 + Base32 encode/decode data and print to standard. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/base32.md b/apps/base32.md deleted file mode 100644 index 0f1763e2c..000000000 --- a/apps/base32.md +++ /dev/null @@ -1,8 +0,0 @@ -# BASE32 - - Base32 encode/decode data and print to standard. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/base64 b/apps/base64 new file mode 100644 index 000000000..d45f3bcc5 --- /dev/null +++ b/apps/base64 @@ -0,0 +1,3 @@ +# base64 +Base64 encode/decode data and print to standard. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/base64.md b/apps/base64.md deleted file mode 100644 index 6118d040b..000000000 --- a/apps/base64.md +++ /dev/null @@ -1,8 +0,0 @@ -# BASE64 - - Base64 encode/decode data and print to standard. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/basename b/apps/basename new file mode 100644 index 000000000..dc29e22cc --- /dev/null +++ b/apps/basename @@ -0,0 +1,3 @@ +# basename +Strip directory and suffix from filenames. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/basename.md b/apps/basename.md deleted file mode 100644 index b174f79c8..000000000 --- a/apps/basename.md +++ /dev/null @@ -1,8 +0,0 @@ -# BASENAME - - Strip directory and suffix from filenames. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/basenc b/apps/basenc new file mode 100644 index 000000000..ab4402cfa --- /dev/null +++ b/apps/basenc @@ -0,0 +1,4 @@ +# basenc + Encode and decode with multiple base encodings.. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/basenc.md b/apps/basenc.md deleted file mode 100644 index d9b5f55e9..000000000 --- a/apps/basenc.md +++ /dev/null @@ -1,8 +0,0 @@ -# BASENC - - Encode and decode with multiple base encodings.. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/basilisk2 b/apps/basilisk2 new file mode 100644 index 000000000..c3e02c4c7 --- /dev/null +++ b/apps/basilisk2 @@ -0,0 +1,3 @@ +# basilisk2 +Builds the popular classic Macintosh emulators BasiliskII and SheepShaver from source to create AppImages +# SITES: https://github.com/Korkman/macemu-appimage-builder \ No newline at end of file diff --git a/apps/basilisk2.md b/apps/basilisk2.md deleted file mode 100644 index 46b9bf665..000000000 --- a/apps/basilisk2.md +++ /dev/null @@ -1,8 +0,0 @@ -# BASILISK2 - - Builds the popular classic Macintosh emulators BasiliskII and SheepShaver from source to create AppImages - - SITE: https://github.com/Korkman/macemu-appimage-builder - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/basiliskii-enhanced b/apps/basiliskii-enhanced new file mode 100644 index 000000000..4c9d90021 --- /dev/null +++ b/apps/basiliskii-enhanced @@ -0,0 +1,3 @@ +# basiliskii-enhanced +Unofficial, classic Macintosh emulator BasiliskII. +# SITES: https://github.com/pkgforge-dev/BasiliskII-AppImage-Enhanced \ No newline at end of file diff --git a/apps/basiliskii-enhanced.md b/apps/basiliskii-enhanced.md deleted file mode 100644 index dd1b98012..000000000 --- a/apps/basiliskii-enhanced.md +++ /dev/null @@ -1,8 +0,0 @@ -# BASILISKII-ENHANCED - - Unofficial, classic Macintosh emulator BasiliskII. - - SITE: https://github.com/pkgforge-dev/BasiliskII-AppImage-Enhanced - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/bastyon b/apps/bastyon new file mode 100644 index 000000000..0c4febf68 --- /dev/null +++ b/apps/bastyon @@ -0,0 +1,3 @@ +# bastyon +Decentralized social network based on the blockchain. +# SITES: https://github.com/pocketnetteam/pocketnet.gui \ No newline at end of file diff --git a/apps/bastyon.md b/apps/bastyon.md deleted file mode 100644 index 91f4628ca..000000000 --- a/apps/bastyon.md +++ /dev/null @@ -1,8 +0,0 @@ -# BASTYON - - Decentralized social network based on the blockchain. - - SITE: https://github.com/pocketnetteam/pocketnet.gui - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/bat b/apps/bat new file mode 100644 index 000000000..b2d954b50 --- /dev/null +++ b/apps/bat @@ -0,0 +1,3 @@ +# bat +A cat(1) clone with wings. +# SITES: https://github.com/sharkdp/bat \ No newline at end of file diff --git a/apps/bat-extras b/apps/bat-extras new file mode 100644 index 000000000..5c2655288 --- /dev/null +++ b/apps/bat-extras @@ -0,0 +1,3 @@ +# bat-extras +Bash scripts that integrate bat with various command line tools. +# SITES: https://github.com/eth-p/bat-extras \ No newline at end of file diff --git a/apps/bat-extras.md b/apps/bat-extras.md deleted file mode 100644 index a0079e2af..000000000 --- a/apps/bat-extras.md +++ /dev/null @@ -1,8 +0,0 @@ -# BAT-EXTRAS - - Bash scripts that integrate bat with various command line tools. - - SITE: https://github.com/eth-p/bat-extras - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/bat.md b/apps/bat.md deleted file mode 100644 index acfa5ad3e..000000000 --- a/apps/bat.md +++ /dev/null @@ -1,8 +0,0 @@ -# BAT - - A cat(1) clone with wings. - - SITE: https://github.com/sharkdp/bat - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/batch-explorer b/apps/batch-explorer new file mode 100644 index 000000000..636f13ada --- /dev/null +++ b/apps/batch-explorer @@ -0,0 +1,3 @@ +# batch-explorer +A client tool to help create, debug and monitor Azure Batch Applications. +# SITES: https://azure.github.io/BatchExplorer/ \ No newline at end of file diff --git a/apps/batch-explorer.md b/apps/batch-explorer.md deleted file mode 100644 index 4e514620b..000000000 --- a/apps/batch-explorer.md +++ /dev/null @@ -1,8 +0,0 @@ -# BATCH-EXPLORER - - A client tool to help create, debug and monitor Azure Batch Applications. - - SITE: https://azure.github.io/BatchExplorer/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/battop b/apps/battop new file mode 100644 index 000000000..b273486ed --- /dev/null +++ b/apps/battop @@ -0,0 +1,3 @@ +# battop +Interactive batteries viewer +# SITES: https://github.com/svartalf/rust-battop \ No newline at end of file diff --git a/apps/battop.md b/apps/battop.md deleted file mode 100644 index 52a374178..000000000 --- a/apps/battop.md +++ /dev/null @@ -1,8 +0,0 @@ -# BATTOP - - Interactive batteries viewer - - SITE: https://github.com/svartalf/rust-battop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/bauh b/apps/bauh new file mode 100644 index 000000000..b7cbaa70e --- /dev/null +++ b/apps/bauh @@ -0,0 +1,4 @@ +# bauh +Graphical user interface for managing your Linux applications. Supports AppImage, Arch packages (including AUR), Debian packages, Flatpak, Snap and native Web applications. +# SCREENSHOTS: https://raw.githubusercontent.com/vinifmor/bauh-files/master/pictures/panel-themes.gif +# SITES: https://github.com/vinifmor/bauh \ No newline at end of file diff --git a/apps/bauh.md b/apps/bauh.md deleted file mode 100644 index 694ab9577..000000000 --- a/apps/bauh.md +++ /dev/null @@ -1,10 +0,0 @@ -# BAUH - - Graphical user interface for managing your Linux applications. Supports AppImage, Arch packages (including AUR), Debian packages, Flatpak, Snap and native Web applications. - - ![GIF](https://raw.githubusercontent.com/vinifmor/bauh-files/master/pictures/panel-themes.gif) - - SITE: https://github.com/vinifmor/bauh - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/bazecor b/apps/bazecor new file mode 100644 index 000000000..fbbb624e4 --- /dev/null +++ b/apps/bazecor @@ -0,0 +1,3 @@ +# bazecor +Graphical configurator for Dygma Raise +# SITES: https://github.com/Dygmalab/Bazecor \ No newline at end of file diff --git a/apps/bazecor.md b/apps/bazecor.md deleted file mode 100644 index dafbcc26c..000000000 --- a/apps/bazecor.md +++ /dev/null @@ -1,8 +0,0 @@ -# BAZECOR - - Graphical configurator for Dygma Raise - - SITE: https://github.com/Dygmalab/Bazecor - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/bbg b/apps/bbg new file mode 100644 index 000000000..c54cc6d03 --- /dev/null +++ b/apps/bbg @@ -0,0 +1,3 @@ +# bbg +A static blog generator based on Electron Technology. +# SITES: https://bbg.nekomoe.xyz/ \ No newline at end of file diff --git a/apps/bbg.md b/apps/bbg.md deleted file mode 100644 index a5107cfbd..000000000 --- a/apps/bbg.md +++ /dev/null @@ -1,8 +0,0 @@ -# BBG - - A static blog generator based on Electron Technology. - - SITE: https://bbg.nekomoe.xyz/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/bchat-desktop b/apps/bchat-desktop new file mode 100644 index 000000000..206ee6bd5 --- /dev/null +++ b/apps/bchat-desktop @@ -0,0 +1,3 @@ +# bchat-desktop +About A decentralized cionfidential messaging app that runs on Beldex network. +# SITES: https://github.com/Beldex-Coin/bchat-desktop \ No newline at end of file diff --git a/apps/bchat-desktop.md b/apps/bchat-desktop.md deleted file mode 100644 index 4c227f553..000000000 --- a/apps/bchat-desktop.md +++ /dev/null @@ -1,8 +0,0 @@ -# BCHAT-DESKTOP - - About A decentralized cionfidential messaging app that runs on Beldex network. - - SITE: https://github.com/Beldex-Coin/bchat-desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/bdash b/apps/bdash new file mode 100644 index 000000000..fc3f02ac2 --- /dev/null +++ b/apps/bdash @@ -0,0 +1,3 @@ +# bdash +A simple business intelligence application. +# SITES: https://github.com/bdash-app/bdash \ No newline at end of file diff --git a/apps/bdash.md b/apps/bdash.md deleted file mode 100644 index d47ca769d..000000000 --- a/apps/bdash.md +++ /dev/null @@ -1,8 +0,0 @@ -# BDASH - - A simple business intelligence application. - - SITE: https://github.com/bdash-app/bdash - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/bearly b/apps/bearly new file mode 100644 index 000000000..faadffd78 --- /dev/null +++ b/apps/bearly @@ -0,0 +1,5 @@ +# bearly +The world's best AI at your fingertips. + + Read, write, and learn faster with the world best AI accessible with a hotkey directly on your desktop. Available for Mac, Windows & Linux. +# SITES: https://github.com/bearlyai/releases \ No newline at end of file diff --git a/apps/bearly.md b/apps/bearly.md deleted file mode 100644 index a6322dd60..000000000 --- a/apps/bearly.md +++ /dev/null @@ -1,10 +0,0 @@ -# BEARLY - - The world's best AI at your fingertips. - - Read, write, and learn faster with the world best AI accessible with a hotkey directly on your desktop. Available for Mac, Windows & Linux. - - SITE: https://github.com/bearlyai/releases - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/beatconnect-client b/apps/beatconnect-client new file mode 100644 index 000000000..1650fac0e --- /dev/null +++ b/apps/beatconnect-client @@ -0,0 +1,3 @@ +# beatconnect-client +Beatconnect power for osu irc +# SITES: https://github.com/yadPe/beatconnect_client \ No newline at end of file diff --git a/apps/beatconnect-client.md b/apps/beatconnect-client.md deleted file mode 100644 index 2580fc7d5..000000000 --- a/apps/beatconnect-client.md +++ /dev/null @@ -1,8 +0,0 @@ -# BEATCONNECT-CLIENT - - Beatconnect power for osu irc - - SITE: https://github.com/yadPe/beatconnect_client - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/beatmapexporter b/apps/beatmapexporter new file mode 100644 index 000000000..1adcdc97b --- /dev/null +++ b/apps/beatmapexporter @@ -0,0 +1,3 @@ +# beatmapexporter +osu!lazer beatmap exporter utility. Allowing mass export of beatmaps from the new osu!lazer file storage back into .osz files. +# SITES: https://github.com/kabiiQ/BeatmapExporter \ No newline at end of file diff --git a/apps/beatmapexporter.md b/apps/beatmapexporter.md deleted file mode 100644 index 3d6edfc0f..000000000 --- a/apps/beatmapexporter.md +++ /dev/null @@ -1,8 +0,0 @@ -# BEATMAPEXPORTER - - osu!lazer beatmap exporter utility. Allowing mass export of beatmaps from the new osu!lazer file storage back into .osz files. - - SITE: https://github.com/kabiiQ/BeatmapExporter - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/beatsaber-mod-manager b/apps/beatsaber-mod-manager new file mode 100644 index 000000000..ff3c40242 --- /dev/null +++ b/apps/beatsaber-mod-manager @@ -0,0 +1,3 @@ +# beatsaber-mod-manager +Yet another mod installer for Beat Saber, heavily inspired by ModAssistant. +# SITES: https://github.com/affederaffe/BeatSaberModManager \ No newline at end of file diff --git a/apps/beatsaber-mod-manager.md b/apps/beatsaber-mod-manager.md deleted file mode 100644 index fa510de2e..000000000 --- a/apps/beatsaber-mod-manager.md +++ /dev/null @@ -1,8 +0,0 @@ -# BEATSABER-MOD-MANAGER - - Yet another mod installer for Beat Saber, heavily inspired by ModAssistant. - - SITE: https://github.com/affederaffe/BeatSaberModManager - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/beaver-notes b/apps/beaver-notes new file mode 100644 index 000000000..9855a4009 --- /dev/null +++ b/apps/beaver-notes @@ -0,0 +1,3 @@ +# beaver-notes +Build your knowledge one log at a time +# SITES: https://github.com/Beaver-Notes/Beaver-Notes \ No newline at end of file diff --git a/apps/beaver-notes.md b/apps/beaver-notes.md deleted file mode 100644 index 07d342843..000000000 --- a/apps/beaver-notes.md +++ /dev/null @@ -1,8 +0,0 @@ -# BEAVER-NOTES - - Build your knowledge one log at a time - - SITE: https://github.com/Beaver-Notes/Beaver-Notes - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/beekeeper-studio b/apps/beekeeper-studio new file mode 100644 index 000000000..689ec0ea1 --- /dev/null +++ b/apps/beekeeper-studio @@ -0,0 +1,3 @@ +# beekeeper-studio +An easy-to use SQL query editor and database UI for Mac, Windows, and Linux +# SITES: https://github.com/beekeeper-studio/beekeeper-studio \ No newline at end of file diff --git a/apps/beekeeper-studio.md b/apps/beekeeper-studio.md deleted file mode 100644 index 87c1c2dda..000000000 --- a/apps/beekeeper-studio.md +++ /dev/null @@ -1,8 +0,0 @@ -# BEEKEEPER-STUDIO - - An easy-to use SQL query editor and database UI for Mac, Windows, and Linux - - SITE: https://github.com/beekeeper-studio/beekeeper-studio - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/beeref b/apps/beeref new file mode 100644 index 000000000..ea01b572e --- /dev/null +++ b/apps/beeref @@ -0,0 +1,4 @@ +# beeref +BeeRef Reference Image Viewer. +# SCREENSHOTS: https://github.com/rbreu/beeref/blob/main/images/screenshot.png +# SITES: https://github.com/rbreu/beeref \ No newline at end of file diff --git a/apps/beeref.md b/apps/beeref.md deleted file mode 100644 index c2382ee73..000000000 --- a/apps/beeref.md +++ /dev/null @@ -1,10 +0,0 @@ -# BEEREF - - BeeRef Reference Image Viewer. - - ![Screenshot](https://github.com/rbreu/beeref/blob/main/images/screenshot.png) - - SITE: https://github.com/rbreu/beeref - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/bemoji b/apps/bemoji new file mode 100644 index 000000000..7acd39205 --- /dev/null +++ b/apps/bemoji @@ -0,0 +1,3 @@ +# bemoji +Emoji picker that remembers your favorites, with support for bemenu/wofi/rofi/dmenu and wayland/X11. +# SITES: https://github.com/marty-oehme/bemoji \ No newline at end of file diff --git a/apps/bemoji.md b/apps/bemoji.md deleted file mode 100644 index 96f297c83..000000000 --- a/apps/bemoji.md +++ /dev/null @@ -1,8 +0,0 @@ -# BEMOJI - - Emoji picker that remembers your favorites, with support for bemenu/wofi/rofi/dmenu and wayland/X11. - - SITE: https://github.com/marty-oehme/bemoji - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/bench-cli b/apps/bench-cli new file mode 100644 index 000000000..5307961af --- /dev/null +++ b/apps/bench-cli @@ -0,0 +1,3 @@ +# bench-cli +CLI tool to benchmark commands, written in `Fortran`. +# SITES: https://github.com/Lateralus138/bench-cli \ No newline at end of file diff --git a/apps/bench-cli.md b/apps/bench-cli.md deleted file mode 100644 index 991c4d202..000000000 --- a/apps/bench-cli.md +++ /dev/null @@ -1,8 +0,0 @@ -# BENCH-CLI - - CLI tool to benchmark commands, written in `Fortran`. - - SITE: https://github.com/Lateralus138/bench-cli - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/berserkerquake2 b/apps/berserkerquake2 new file mode 100644 index 000000000..bc214811c --- /dev/null +++ b/apps/berserkerquake2 @@ -0,0 +1,3 @@ +# berserkerquake2 +Berserker@Quake2 game engine, ported to SDL2 library. +# SITES: https://github.com/tx00100xt/BerserkerQuake2 \ No newline at end of file diff --git a/apps/berserkerquake2.md b/apps/berserkerquake2.md deleted file mode 100644 index e3c3d90b2..000000000 --- a/apps/berserkerquake2.md +++ /dev/null @@ -1,8 +0,0 @@ -# BERSERKERQUAKE2 - - Berserker@Quake2 game engine, ported to SDL2 library. - - SITE: https://github.com/tx00100xt/BerserkerQuake2 - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/better-osu-skills b/apps/better-osu-skills new file mode 100644 index 000000000..1b7fbb2f3 --- /dev/null +++ b/apps/better-osu-skills @@ -0,0 +1,3 @@ +# better-osu-skills +Gets results from the osu!Skills training page and PMs them on osu! Using your own IRC credentials. +# SITES: https://github.com/straightcurve/better-osuskills \ No newline at end of file diff --git a/apps/better-osu-skills.md b/apps/better-osu-skills.md deleted file mode 100644 index bfad45076..000000000 --- a/apps/better-osu-skills.md +++ /dev/null @@ -1,8 +0,0 @@ -# BETTER-OSU-SKILLS - - Gets results from the osu!Skills training page and PMs them on osu! Using your own IRC credentials. - - SITE: https://github.com/straightcurve/better-osuskills - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/betterbird b/apps/betterbird new file mode 100644 index 000000000..2e37cc7b8 --- /dev/null +++ b/apps/betterbird @@ -0,0 +1,3 @@ +# betterbird +Unofficial, Betterbird is a fine-tuned version of Mozilla Thunderbird, a free and open-source email client. +# SITES: https://github.com/ivan-hc/Betterbird-appimage \ No newline at end of file diff --git a/apps/betterbird.md b/apps/betterbird.md deleted file mode 100644 index 0edb42ded..000000000 --- a/apps/betterbird.md +++ /dev/null @@ -1,8 +0,0 @@ -# BETTERBIRD - - Unofficial, Betterbird is a fine-tuned version of Mozilla Thunderbird, a free and open-source email client. - - SITE: https://github.com/ivan-hc/Betterbird-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/bettercrewlink b/apps/bettercrewlink new file mode 100644 index 000000000..cee8acf1c --- /dev/null +++ b/apps/bettercrewlink @@ -0,0 +1,3 @@ +# bettercrewlink +Free, open, Among Us proximity voice chat +# SITES: https://github.com/OhMyGuus/BetterCrewLink \ No newline at end of file diff --git a/apps/bettercrewlink.md b/apps/bettercrewlink.md deleted file mode 100644 index b06156bb2..000000000 --- a/apps/bettercrewlink.md +++ /dev/null @@ -1,8 +0,0 @@ -# BETTERCREWLINK - - Free, open, Among Us proximity voice chat - - SITE: https://github.com/OhMyGuus/BetterCrewLink - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/bettermediainfo-enhanced b/apps/bettermediainfo-enhanced new file mode 100644 index 000000000..ce9d468c2 --- /dev/null +++ b/apps/bettermediainfo-enhanced @@ -0,0 +1,4 @@ +# bettermediainfo-enhanced + Unofficial AppImage of BetterMediaInfo. +# SITES: https://github.com/pkgforge-dev/bettermediainfo-appimage-enhanced +# SOURCES: https://github.com/pkgforge-dev/bettermediainfo-appimage-enhanced \ No newline at end of file diff --git a/apps/bettermediainfo-enhanced.md b/apps/bettermediainfo-enhanced.md deleted file mode 100644 index d6b50cf8b..000000000 --- a/apps/bettermediainfo-enhanced.md +++ /dev/null @@ -1,8 +0,0 @@ -# BETTERMEDIAINFO-ENHANCED - - Unofficial AppImage of BetterMediaInfo. - - SITE: https://github.com/pkgforge-dev/bettermediainfo-appimage-enhanced - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/bettersis b/apps/bettersis new file mode 100644 index 000000000..ce1955dbe --- /dev/null +++ b/apps/bettersis @@ -0,0 +1,3 @@ +# bettersis +The modern shell for SIS (the circuit simulator and optimizer) +# SITES: https://github.com/mario33881/betterSIS \ No newline at end of file diff --git a/apps/bettersis.md b/apps/bettersis.md deleted file mode 100644 index 08b42ac5c..000000000 --- a/apps/bettersis.md +++ /dev/null @@ -1,8 +0,0 @@ -# BETTERSIS - - The modern shell for SIS (the circuit simulator and optimizer) - - SITE: https://github.com/mario33881/betterSIS - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/betterx b/apps/betterx new file mode 100644 index 000000000..15c897848 --- /dev/null +++ b/apps/betterx @@ -0,0 +1,3 @@ +# betterx +Enhance your X (formerly Twitter) experience with BetterX Desktop! +# SITES: https://github.com/Feur-Inc/BetterX-Desktop \ No newline at end of file diff --git a/apps/betterx.md b/apps/betterx.md deleted file mode 100644 index 44096a7fb..000000000 --- a/apps/betterx.md +++ /dev/null @@ -1,8 +0,0 @@ -# BETTERX - - Enhance your X (formerly Twitter) experience with BetterX Desktop! - - SITE: https://github.com/Feur-Inc/BetterX-Desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/beurerscalemanager b/apps/beurerscalemanager new file mode 100644 index 000000000..9bce9b226 --- /dev/null +++ b/apps/beurerscalemanager @@ -0,0 +1,3 @@ +# beurerscalemanager +AppImage packaging project for BeurerScaleManager. +# SITES: https://github.com/daald/beurerscalemanager-appimage \ No newline at end of file diff --git a/apps/beurerscalemanager.md b/apps/beurerscalemanager.md deleted file mode 100644 index 97b8c84aa..000000000 --- a/apps/beurerscalemanager.md +++ /dev/null @@ -1,8 +0,0 @@ -# BEURERSCALEMANAGER - - AppImage packaging project for BeurerScaleManager. - - SITE: https://github.com/daald/beurerscalemanager-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/beyond-all-reason b/apps/beyond-all-reason new file mode 100644 index 000000000..93ce96a64 --- /dev/null +++ b/apps/beyond-all-reason @@ -0,0 +1,9 @@ +# beyond-all-reason +3D Real-Time Strategy Redefined. The Total Annihilation Inspired RTS you've been waiting for. + + Explore the Scale and Realism: + - All units and projectiles are simulated in real-time. + - The game offers fully simulated projectile ballistics, explosion physics and terrain deformation. + - Enjoy an immersive RTS experience, whether you are commanding individual units, or armies of thousands. + - Take control as you engage in an epic struggle for domination! +# SITES: https://www.beyondallreason.info \ No newline at end of file diff --git a/apps/beyond-all-reason.md b/apps/beyond-all-reason.md deleted file mode 100644 index 57ed76673..000000000 --- a/apps/beyond-all-reason.md +++ /dev/null @@ -1,14 +0,0 @@ -# BEYOND-ALL-REASON - - 3D Real-Time Strategy Redefined. The Total Annihilation Inspired RTS you've been waiting for. - - Explore the Scale and Realism: - - All units and projectiles are simulated in real-time. - - The game offers fully simulated projectile ballistics, explosion physics and terrain deformation. - - Enjoy an immersive RTS experience, whether you are commanding individual units, or armies of thousands. - - Take control as you engage in an epic struggle for domination! - - SITE: https://www.beyondallreason.info - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/bezique b/apps/bezique new file mode 100644 index 000000000..7846193f3 --- /dev/null +++ b/apps/bezique @@ -0,0 +1,3 @@ +# bezique +Plays bezique against the AI +# SITES: https://github.com/Sriep/Bezique \ No newline at end of file diff --git a/apps/bezique.md b/apps/bezique.md deleted file mode 100644 index 5558b852f..000000000 --- a/apps/bezique.md +++ /dev/null @@ -1,8 +0,0 @@ -# BEZIQUE - - Plays bezique against the AI - - SITE: https://github.com/Sriep/Bezique - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/bforartists b/apps/bforartists new file mode 100644 index 000000000..a6e218274 --- /dev/null +++ b/apps/bforartists @@ -0,0 +1,3 @@ +# bforartists +3D modeling, animation, rendering and post-production +# SITES: https://github.com/Bforartists/Bforartists \ No newline at end of file diff --git a/apps/bforartists.md b/apps/bforartists.md deleted file mode 100644 index 0fad05e12..000000000 --- a/apps/bforartists.md +++ /dev/null @@ -1,8 +0,0 @@ -# BFORARTISTS - - 3D modeling, animation, rendering and post-production - - SITE: https://github.com/Bforartists/Bforartists - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/biblemultithelife b/apps/biblemultithelife new file mode 100644 index 000000000..c6076dc1c --- /dev/null +++ b/apps/biblemultithelife @@ -0,0 +1,3 @@ +# biblemultithelife +Bible multi languages, free, offline, no advertising, in English, French, Italian, Spanish, Portuguese. +# SITES: https://www.biblemulti.org \ No newline at end of file diff --git a/apps/biblemultithelife.md b/apps/biblemultithelife.md deleted file mode 100644 index a7df177bf..000000000 --- a/apps/biblemultithelife.md +++ /dev/null @@ -1,8 +0,0 @@ -# BIBLEMULTITHELIFE - - Bible multi languages, free, offline, no advertising. - - SITE: https://biblemulti.org - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/biblemultithesonofman b/apps/biblemultithesonofman new file mode 100644 index 000000000..8c076e3ca --- /dev/null +++ b/apps/biblemultithesonofman @@ -0,0 +1,4 @@ +# biblemultithesonofman + Offline Bible for Terminal. +# SITES: https://github.com/https://biblemulti.org +# SOURCES: https://github.com/https://biblemulti.org \ No newline at end of file diff --git a/apps/biblemultithesonofman.md b/apps/biblemultithesonofman.md deleted file mode 100644 index 69d95de56..000000000 --- a/apps/biblemultithesonofman.md +++ /dev/null @@ -1,8 +0,0 @@ -# BIBLEMULTITHESONOFMAN - - Offline Bible for Terminal. - - SITE: https://biblemulti.org - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/bibletime b/apps/bibletime new file mode 100644 index 000000000..073d2aa95 --- /dev/null +++ b/apps/bibletime @@ -0,0 +1,3 @@ +# bibletime +Unofficial, a Bible study application based on the Sword library and Qt toolkit. +# SITES: https://github.com/pkgforge-dev/BibleTime-AppImage \ No newline at end of file diff --git a/apps/bibletime.md b/apps/bibletime.md deleted file mode 100644 index e42400020..000000000 --- a/apps/bibletime.md +++ /dev/null @@ -1,8 +0,0 @@ -# BIBLETIME - - Unofficial, a Bible study application based on the Sword library and Qt toolkit. - - SITE: https://github.com/pkgforge-dev/BibleTime-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/bidirectional b/apps/bidirectional new file mode 100644 index 000000000..7460eb85b --- /dev/null +++ b/apps/bidirectional @@ -0,0 +1,3 @@ +# bidirectional +Write Arabic text on apps that don't support the bidirectional text. +# SITES: https://github.com/samirdjelal/bidirectional \ No newline at end of file diff --git a/apps/bidirectional.md b/apps/bidirectional.md deleted file mode 100644 index 30ede0b32..000000000 --- a/apps/bidirectional.md +++ /dev/null @@ -1,8 +0,0 @@ -# BIDIRECTIONAL - - Write Arabic text on apps that don't support the bidirectional text. - - SITE: https://github.com/samirdjelal/bidirectional - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/bigpemu b/apps/bigpemu new file mode 100644 index 000000000..45eb8d59e --- /dev/null +++ b/apps/bigpemu @@ -0,0 +1,4 @@ +# bigpemu + Unofficial AppImage of BigPEmu. +# SITES: https://github.com/pkgforge-dev/bigpemu-appimage +# SOURCES: https://github.com/pkgforge-dev/bigpemu-appimage \ No newline at end of file diff --git a/apps/bigpemu.md b/apps/bigpemu.md deleted file mode 100644 index a81750730..000000000 --- a/apps/bigpemu.md +++ /dev/null @@ -1,8 +0,0 @@ -# BIGPEMU - - Unofficial AppImage of BigPEmu. - - SITE: https://github.com/pkgforge-dev/bigpemu-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/bili-liveluckdraw b/apps/bili-liveluckdraw new file mode 100644 index 000000000..4ca9e6939 --- /dev/null +++ b/apps/bili-liveluckdraw @@ -0,0 +1,3 @@ +# bili-liveluckdraw +A Bilibili live stream lottery tool that draws winners based on keywords retrieved from the chat comments. It is built using Electron + React + Vite. +# SITES: https://github.com/grtsinry43/Bili-LiveLuckDraw \ No newline at end of file diff --git a/apps/bili-liveluckdraw.md b/apps/bili-liveluckdraw.md deleted file mode 100644 index d317ca684..000000000 --- a/apps/bili-liveluckdraw.md +++ /dev/null @@ -1,8 +0,0 @@ -# BILI-LIVELUCKDRAW - - A Bilibili live stream lottery tool that draws winners based on keywords retrieved from the chat comments. It is built using Electron + React + Vite. - - SITE: https://github.com/grtsinry43/Bili-LiveLuckDraw - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/bilibili b/apps/bilibili new file mode 100644 index 000000000..63cd90fbb --- /dev/null +++ b/apps/bilibili @@ -0,0 +1,5 @@ +# bilibili +Bilibili official desktop client. + + 基于哔哩哔哩官方客户端移植的Linux版本,支持漫游 +# SITES: https://github.com/msojocs/bilibili-linux \ No newline at end of file diff --git a/apps/bilibili.md b/apps/bilibili.md deleted file mode 100644 index feb8f3e4b..000000000 --- a/apps/bilibili.md +++ /dev/null @@ -1,10 +0,0 @@ -# BILIBILI - - Bilibili official desktop client. - - 基于哔哩哔哩官方客户端移植的Linux版本,支持漫游 - - SITE: https://github.com/msojocs/bilibili-linux - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/bilibilivideodownload b/apps/bilibilivideodownload new file mode 100644 index 000000000..3dd6e02d9 --- /dev/null +++ b/apps/bilibilivideodownload @@ -0,0 +1,3 @@ +# bilibilivideodownload +Bilibili video downloader. +# SITES: https://github.com/blogwy/BilibiliVideoDownload \ No newline at end of file diff --git a/apps/bilibilivideodownload.md b/apps/bilibilivideodownload.md deleted file mode 100644 index f3af44fab..000000000 --- a/apps/bilibilivideodownload.md +++ /dev/null @@ -1,8 +0,0 @@ -# BILIBILIVIDEODOWNLOAD - - Bilibili video downloader. - - SITE: https://github.com/blogwy/BilibiliVideoDownload - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/biliup-app b/apps/biliup-app new file mode 100644 index 000000000..bf19c751b --- /dev/null +++ b/apps/biliup-app @@ -0,0 +1,3 @@ +# biliup-app +Bilibili uploader, supports Windows, Linux, macOS. +# SITES: https://github.com/ForgQi/biliup-app \ No newline at end of file diff --git a/apps/biliup-app.md b/apps/biliup-app.md deleted file mode 100644 index a236b6c40..000000000 --- a/apps/biliup-app.md +++ /dev/null @@ -1,8 +0,0 @@ -# BILIUP-APP - - Bilibili uploader, supports Windows, Linux, macOS. - - SITE: https://github.com/ForgQi/biliup-app - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/billard-gl b/apps/billard-gl new file mode 100644 index 000000000..88021a1ee --- /dev/null +++ b/apps/billard-gl @@ -0,0 +1,7 @@ +# billard-gl +3D billiards game. Play a game of 8-ball or 9-ball, either in training mode or against a friend. For beginners, the game features a tutorial, introducing them to the user-interface and controls. + + Help is also available for those who do not know the rules for an 8-ball or 9-ball game. +# SCREENSHOTS: https://github.com/user-attachments/assets/23350821-453a-46b8-b3b4-d636fb21b206 +# SITES: https://sourceforge.net/projects/billardgl +# SOURCES: https://github.com/ivan-hc/billard-gl-appimage \ No newline at end of file diff --git a/apps/billard-gl.md b/apps/billard-gl.md deleted file mode 100644 index 15d10cac0..000000000 --- a/apps/billard-gl.md +++ /dev/null @@ -1,15 +0,0 @@ -# BILLARD-GL - - 3D billiards game. Play a game of 8-ball or 9-ball, either in training mode or against a friend. For beginners, the game features a tutorial, introducing them to the user-interface and controls. - - Help is also available for those who do not know the rules for an 8-ball or 9-ball game. - -![Screenshot](https://github.com/user-attachments/assets/23350821-453a-46b8-b3b4-d636fb21b206) - - - SITE: https://sourceforge.net/projects/billardgl - - APPIMAGE: https://github.com/ivan-hc/billard-gl-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/billyfrontier b/apps/billyfrontier new file mode 100644 index 000000000..c2b8b4f8a --- /dev/null +++ b/apps/billyfrontier @@ -0,0 +1,3 @@ +# billyfrontier +Pangea Software’s Billy Frontier for modern systems. +# SITES: https://github.com/jorio/BillyFrontier \ No newline at end of file diff --git a/apps/billyfrontier.md b/apps/billyfrontier.md deleted file mode 100644 index 8cb849b53..000000000 --- a/apps/billyfrontier.md +++ /dev/null @@ -1,8 +0,0 @@ -# BILLYFRONTIER - - Pangea Software’s Billy Frontier for modern systems. - - SITE: https://github.com/jorio/BillyFrontier - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/bin b/apps/bin new file mode 100644 index 000000000..f688f2d78 --- /dev/null +++ b/apps/bin @@ -0,0 +1,3 @@ +# bin +Effortless binary manager +# SITES: https://github.com/marcosnils/bin \ No newline at end of file diff --git a/apps/bin.md b/apps/bin.md deleted file mode 100644 index 6e0170137..000000000 --- a/apps/bin.md +++ /dev/null @@ -1,8 +0,0 @@ -# BIN - - Effortless binary manager - - SITE: https://github.com/marcosnils/bin - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/binclock b/apps/binclock new file mode 100644 index 000000000..2f8d10fe0 --- /dev/null +++ b/apps/binclock @@ -0,0 +1,3 @@ +# binclock +binary clock in terminal +# SITES: https://github.com/TeddyDD/binclock \ No newline at end of file diff --git a/apps/binclock.md b/apps/binclock.md deleted file mode 100644 index 31b21e759..000000000 --- a/apps/binclock.md +++ /dev/null @@ -1,8 +0,0 @@ -# BINCLOCK - - binary clock in terminal - - SITE: https://github.com/TeddyDD/binclock - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/binfinder b/apps/binfinder new file mode 100644 index 000000000..4ac0124a9 --- /dev/null +++ b/apps/binfinder @@ -0,0 +1,3 @@ +# binfinder +Find binary files not installed through package manager +# SITES: https://github.com/aquasecurity/binfinder \ No newline at end of file diff --git a/apps/binfinder.md b/apps/binfinder.md deleted file mode 100644 index 82ac04c67..000000000 --- a/apps/binfinder.md +++ /dev/null @@ -1,8 +0,0 @@ -# BINFINDER - - Find binary files not installed through package manager - - SITE: https://github.com/aquasecurity/binfinder - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/bingada b/apps/bingada new file mode 100644 index 000000000..683e83549 --- /dev/null +++ b/apps/bingada @@ -0,0 +1,3 @@ +# bingada +Bingo application in GTKAda +# SITES: https://github.com/jfuica/bingada \ No newline at end of file diff --git a/apps/bingada.md b/apps/bingada.md deleted file mode 100644 index 8b6624974..000000000 --- a/apps/bingada.md +++ /dev/null @@ -1,8 +0,0 @@ -# BINGADA - - Bingo application in GTKAda - - SITE: https://github.com/jfuica/bingada - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/binglite b/apps/binglite new file mode 100644 index 000000000..17b2251ce --- /dev/null +++ b/apps/binglite @@ -0,0 +1,3 @@ +# binglite +A lightweight new Bing (AI chat) desktop application based on Tauri. +# SITES: https://github.com/I-Info/BingLite \ No newline at end of file diff --git a/apps/binglite.md b/apps/binglite.md deleted file mode 100644 index 5154b8fa4..000000000 --- a/apps/binglite.md +++ /dev/null @@ -1,8 +0,0 @@ -# BINGLITE - - A lightweight new Bing (AI chat) desktop application based on Tauri. - - SITE: https://github.com/I-Info/BingLite - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/bioanimation b/apps/bioanimation new file mode 100644 index 000000000..cebde771d --- /dev/null +++ b/apps/bioanimation @@ -0,0 +1,3 @@ +# bioanimation +CCNY Electrochemical Gradient Simulator +# SITES: https://github.com/ccnydss/bioanimation \ No newline at end of file diff --git a/apps/bioanimation.md b/apps/bioanimation.md deleted file mode 100644 index bf940bcb1..000000000 --- a/apps/bioanimation.md +++ /dev/null @@ -1,8 +0,0 @@ -# BIOANIMATION - - CCNY Electrochemical Gradient Simulator - - SITE: https://github.com/ccnydss/bioanimation - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/biplanes-revival b/apps/biplanes-revival new file mode 100644 index 000000000..90faa58de --- /dev/null +++ b/apps/biplanes-revival @@ -0,0 +1,3 @@ +# biplanes-revival +An old cellphone arcade recreated for PC. +# SITES: https://github.com/regular-dev/biplanes-revival \ No newline at end of file diff --git a/apps/biplanes-revival.md b/apps/biplanes-revival.md deleted file mode 100644 index 8cb4065d5..000000000 --- a/apps/biplanes-revival.md +++ /dev/null @@ -1,8 +0,0 @@ -# BIPLANES-REVIVAL - - An old cellphone arcade recreated for PC. - - SITE: https://github.com/regular-dev/biplanes-revival - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/birds-kitchen b/apps/birds-kitchen new file mode 100644 index 000000000..e1f2f2a43 --- /dev/null +++ b/apps/birds-kitchen @@ -0,0 +1,3 @@ +# birds-kitchen +recipe manager +# SITES: https://github.com/fredserva/birdskitchen \ No newline at end of file diff --git a/apps/birds-kitchen.md b/apps/birds-kitchen.md deleted file mode 100644 index a589ac37a..000000000 --- a/apps/birds-kitchen.md +++ /dev/null @@ -1,8 +0,0 @@ -# BIRDS-KITCHEN - - recipe manager - - SITE: https://github.com/fredserva/birdskitchen - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/bitbox-wallet b/apps/bitbox-wallet new file mode 100644 index 000000000..ac71f90d3 --- /dev/null +++ b/apps/bitbox-wallet @@ -0,0 +1,3 @@ +# bitbox-wallet +BitBox cryptocurrency hardware wallet desktop app with Bitcoin, Segwit, Bech32 and native Litecoin support in an AppImage. +# SITES: https://bitbox.swiss/app/ \ No newline at end of file diff --git a/apps/bitbox-wallet.md b/apps/bitbox-wallet.md deleted file mode 100644 index 46f519656..000000000 --- a/apps/bitbox-wallet.md +++ /dev/null @@ -1,8 +0,0 @@ -# BITBOX-WALLET - - BitBox cryptocurrency hardware wallet desktop app with Bitcoin, Segwit, Bech32 and native Litecoin support in an AppImage. - - SITE: https://bitbox.swiss/app/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/bitshares b/apps/bitshares new file mode 100644 index 000000000..7467f25b2 --- /dev/null +++ b/apps/bitshares @@ -0,0 +1,3 @@ +# bitshares +Advanced wallet interface for the BitShares financial blockchain. +# SITES: https://github.com/bitshares/bitshares-ui \ No newline at end of file diff --git a/apps/bitshares.md b/apps/bitshares.md deleted file mode 100644 index 72488e82d..000000000 --- a/apps/bitshares.md +++ /dev/null @@ -1,8 +0,0 @@ -# BITSHARES - - Advanced wallet interface for the BitShares financial blockchain. - - SITE: https://github.com/bitshares/bitshares-ui - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/bitwarden b/apps/bitwarden new file mode 100644 index 000000000..01cad37c0 --- /dev/null +++ b/apps/bitwarden @@ -0,0 +1,3 @@ +# bitwarden +Bitwarden client apps (web, browser extension, desktop, and cli). +# SITES: https://github.com/bitwarden/clients \ No newline at end of file diff --git a/apps/bitwarden.md b/apps/bitwarden.md deleted file mode 100644 index 830e1e1ea..000000000 --- a/apps/bitwarden.md +++ /dev/null @@ -1,8 +0,0 @@ -# BITWARDEN - - Bitwarden client apps (web, browser extension, desktop, and cli). - - SITE: https://github.com/bitwarden/clients - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/biying b/apps/biying new file mode 100644 index 000000000..352fbf70f --- /dev/null +++ b/apps/biying @@ -0,0 +1,3 @@ +# biying +Biying Wallpaper for Linux +# SITES: https://github.com/iovxw/biying \ No newline at end of file diff --git a/apps/biying.md b/apps/biying.md deleted file mode 100644 index 7bf8a6c54..000000000 --- a/apps/biying.md +++ /dev/null @@ -1,8 +0,0 @@ -# BIYING - - Biying Wallpaper for Linux - - SITE: https://github.com/iovxw/biying - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/bk b/apps/bk new file mode 100644 index 000000000..4006c5e28 --- /dev/null +++ b/apps/bk @@ -0,0 +1,3 @@ +# bk +Terminal Epub reader +# SITES: https://github.com/aeosynth/bk \ No newline at end of file diff --git a/apps/bk.md b/apps/bk.md deleted file mode 100644 index ef97fb360..000000000 --- a/apps/bk.md +++ /dev/null @@ -1,8 +0,0 @@ -# BK - - Terminal Epub reader - - SITE: https://github.com/aeosynth/bk - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/black-chocobo b/apps/black-chocobo new file mode 100644 index 000000000..00eb217ff --- /dev/null +++ b/apps/black-chocobo @@ -0,0 +1,3 @@ +# black-chocobo +FF7 Save Game Editor. +# SITES: https://github.com/sithlord48/blackchocobo \ No newline at end of file diff --git a/apps/black-chocobo.md b/apps/black-chocobo.md deleted file mode 100644 index f46522371..000000000 --- a/apps/black-chocobo.md +++ /dev/null @@ -1,8 +0,0 @@ -# BLACK-CHOCOBO - - FF7 Save Game Editor. - - SITE: https://github.com/sithlord48/blackchocobo - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/blacknut b/apps/blacknut new file mode 100644 index 000000000..f07ac1c82 --- /dev/null +++ b/apps/blacknut @@ -0,0 +1,3 @@ +# blacknut +Cloud gaming client (binary AppImage) +# SITES: https://www.blacknut.com \ No newline at end of file diff --git a/apps/blacknut.md b/apps/blacknut.md deleted file mode 100644 index a0ab65697..000000000 --- a/apps/blacknut.md +++ /dev/null @@ -1,8 +0,0 @@ -# BLACKNUT - - Cloud gaming client (binary AppImage) - - SITE: https://www.blacknut.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/blank b/apps/blank new file mode 100644 index 000000000..84f9a5be3 --- /dev/null +++ b/apps/blank @@ -0,0 +1,3 @@ +# blank +:pencil: Blank is a minimalist, opinionated markdown editor made for writing +# SITES: https://github.com/FPurchess/blank \ No newline at end of file diff --git a/apps/blank.md b/apps/blank.md deleted file mode 100644 index 83767d1a5..000000000 --- a/apps/blank.md +++ /dev/null @@ -1,8 +0,0 @@ -# BLANK - - :pencil: Blank is a minimalist, opinionated markdown editor made for writing - - SITE: https://github.com/FPurchess/blank - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/blastem b/apps/blastem new file mode 100644 index 000000000..9e6586ed3 --- /dev/null +++ b/apps/blastem @@ -0,0 +1,3 @@ +# blastem +Clone of Mercurial Repo. +# SITES: https://github.com/mantralunar/blastem \ No newline at end of file diff --git a/apps/blastem.md b/apps/blastem.md deleted file mode 100644 index 7543f8faa..000000000 --- a/apps/blastem.md +++ /dev/null @@ -1,8 +0,0 @@ -# BLASTEM - - Clone of Mercurial Repo. - - SITE: https://github.com/mantralunar/blastem - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/blender b/apps/blender new file mode 100644 index 000000000..b83c6d926 --- /dev/null +++ b/apps/blender @@ -0,0 +1,7 @@ +# blender +Blender is a free and open-source 3D computer graphics software toolset used for creating animated films, visual effects, art, 3D printed models, motion graphics, interactive 3D applications, virtual reality, and computer games. Blender's features include 3D modeling, UV unwrapping, texturing, raster graphics editing, rigging and skinning, fluid and smoke simulation, particle simulation, soft body simulation, sculpting, animating, match moving, rendering, motion graphics, video editing, and compositing. + + This is the latest Stable version. +# SCREENSHOTS: https://upload.wikimedia.org/wikipedia/commons/3/33/Blender_3.1.0_screenshot.png +# SITES: https://www.blender.org +# SOURCES: https://github.com/ivan-hc/Blender-appimage \ No newline at end of file diff --git a/apps/blender-alpha b/apps/blender-alpha new file mode 100644 index 000000000..5c6ce130f --- /dev/null +++ b/apps/blender-alpha @@ -0,0 +1,7 @@ +# blender-alpha +Blender is a free and open-source 3D computer graphics software toolset used for creating animated films, visual effects, art, 3D printed models, motion graphics, interactive 3D applications, virtual reality, and computer games. Blender's features include 3D modeling, UV unwrapping, texturing, raster graphics editing, rigging and skinning, fluid and smoke simulation, particle simulation, soft body simulation, sculpting, animating, match moving, rendering, motion graphics, video editing, and compositing. + + This is the latest Alpha version. +# SCREENSHOTS: https://upload.wikimedia.org/wikipedia/commons/3/33/Blender_3.1.0_screenshot.png +# SITES: https://www.blender.org +# SOURCES: https://github.com/ivan-hc/Blender-appimage \ No newline at end of file diff --git a/apps/blender-alpha.md b/apps/blender-alpha.md deleted file mode 100644 index 33fc3eb1d..000000000 --- a/apps/blender-alpha.md +++ /dev/null @@ -1,14 +0,0 @@ -# BLENDER-ALPHA - - Blender is a free and open-source 3D computer graphics software toolset used for creating animated films, visual effects, art, 3D printed models, motion graphics, interactive 3D applications, virtual reality, and computer games. Blender's features include 3D modeling, UV unwrapping, texturing, raster graphics editing, rigging and skinning, fluid and smoke simulation, particle simulation, soft body simulation, sculpting, animating, match moving, rendering, motion graphics, video editing, and compositing. - - This is the latest Alpha version. - - ![Screenshot](https://upload.wikimedia.org/wikipedia/commons/3/33/Blender_3.1.0_screenshot.png) - - SITE: https://www.blender.org - - UNOFFICIAL APPIMAGE: https://github.com/ivan-hc/Blender-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/blender-beta b/apps/blender-beta new file mode 100644 index 000000000..2f8d54dca --- /dev/null +++ b/apps/blender-beta @@ -0,0 +1,7 @@ +# blender-beta +Blender is a free and open-source 3D computer graphics software toolset used for creating animated films, visual effects, art, 3D printed models, motion graphics, interactive 3D applications, virtual reality, and computer games. Blender's features include 3D modeling, UV unwrapping, texturing, raster graphics editing, rigging and skinning, fluid and smoke simulation, particle simulation, soft body simulation, sculpting, animating, match moving, rendering, motion graphics, video editing, and compositing. + + This is the latest Beta version. +# SCREENSHOTS: https://upload.wikimedia.org/wikipedia/commons/3/33/Blender_3.1.0_screenshot.png +# SITES: https://www.blender.org +# SOURCES: https://github.com/ivan-hc/Blender-appimage \ No newline at end of file diff --git a/apps/blender-beta.md b/apps/blender-beta.md deleted file mode 100644 index 28210ee27..000000000 --- a/apps/blender-beta.md +++ /dev/null @@ -1,14 +0,0 @@ -# BLENDER-BETA - - Blender is a free and open-source 3D computer graphics software toolset used for creating animated films, visual effects, art, 3D printed models, motion graphics, interactive 3D applications, virtual reality, and computer games. Blender's features include 3D modeling, UV unwrapping, texturing, raster graphics editing, rigging and skinning, fluid and smoke simulation, particle simulation, soft body simulation, sculpting, animating, match moving, rendering, motion graphics, video editing, and compositing. - - This is the latest Beta version. - - ![Screenshot](https://upload.wikimedia.org/wikipedia/commons/3/33/Blender_3.1.0_screenshot.png) - - SITE: https://www.blender.org - - UNOFFICIAL APPIMAGE: https://github.com/ivan-hc/Blender-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/blender-rc b/apps/blender-rc new file mode 100644 index 000000000..f72e93bc5 --- /dev/null +++ b/apps/blender-rc @@ -0,0 +1,7 @@ +# blender-rc +Blender is a free and open-source 3D computer graphics software toolset used for creating animated films, visual effects, art, 3D printed models, motion graphics, interactive 3D applications, virtual reality, and computer games. Blender's features include 3D modeling, UV unwrapping, texturing, raster graphics editing, rigging and skinning, fluid and smoke simulation, particle simulation, soft body simulation, sculpting, animating, match moving, rendering, motion graphics, video editing, and compositing. + + This is the latest Release Candidate (RC). +# SCREENSHOTS: https://upload.wikimedia.org/wikipedia/commons/3/33/Blender_3.1.0_screenshot.png +# SITES: https://www.blender.org +# SOURCES: https://github.com/ivan-hc/Blender-appimage \ No newline at end of file diff --git a/apps/blender-rc.md b/apps/blender-rc.md deleted file mode 100644 index a15046b5c..000000000 --- a/apps/blender-rc.md +++ /dev/null @@ -1,14 +0,0 @@ -# BLENDER-RC - - Blender is a free and open-source 3D computer graphics software toolset used for creating animated films, visual effects, art, 3D printed models, motion graphics, interactive 3D applications, virtual reality, and computer games. Blender's features include 3D modeling, UV unwrapping, texturing, raster graphics editing, rigging and skinning, fluid and smoke simulation, particle simulation, soft body simulation, sculpting, animating, match moving, rendering, motion graphics, video editing, and compositing. - - This is the latest Release Candidate (RC). - - ![Screenshot](https://upload.wikimedia.org/wikipedia/commons/3/33/Blender_3.1.0_screenshot.png) - - SITE: https://www.blender.org - - UNOFFICIAL APPIMAGE: https://github.com/ivan-hc/Blender-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/blender.md b/apps/blender.md deleted file mode 100644 index 379a8cf13..000000000 --- a/apps/blender.md +++ /dev/null @@ -1,14 +0,0 @@ -# BLENDER - - Blender is a free and open-source 3D computer graphics software toolset used for creating animated films, visual effects, art, 3D printed models, motion graphics, interactive 3D applications, virtual reality, and computer games. Blender's features include 3D modeling, UV unwrapping, texturing, raster graphics editing, rigging and skinning, fluid and smoke simulation, particle simulation, soft body simulation, sculpting, animating, match moving, rendering, motion graphics, video editing, and compositing. - - This is the latest Stable version. - - ![Screenshot](https://upload.wikimedia.org/wikipedia/commons/3/33/Blender_3.1.0_screenshot.png) - - SITE: https://www.blender.org - - UNOFFICIAL APPIMAGE: https://github.com/ivan-hc/Blender-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/blensor b/apps/blensor new file mode 100644 index 000000000..fa823b2be --- /dev/null +++ b/apps/blensor @@ -0,0 +1,3 @@ +# blensor +Free Open Source Simulation Package for Light Detection and Ranging (LIDAR/LADAR) and Kinect sensors. 3D modeling, animation, rendering and post-production. +# SITES: https://www.blensor.org \ No newline at end of file diff --git a/apps/blensor.md b/apps/blensor.md deleted file mode 100644 index 31466d4c2..000000000 --- a/apps/blensor.md +++ /dev/null @@ -1,8 +0,0 @@ -# BLENSOR - - Free Open Source Simulation Package for Light Detection and Ranging (LIDAR/LADAR) and Kinect sensors. 3D modeling, animation, rendering and post-production. - - SITE: https://www.blensor.org - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/blimp b/apps/blimp new file mode 100644 index 000000000..a987a246d --- /dev/null +++ b/apps/blimp @@ -0,0 +1,3 @@ +# blimp +Customizable terminal UI for monitoring weather information, application status, network latency, and more +# SITES: https://github.com/merlinfuchs/blimp \ No newline at end of file diff --git a/apps/blimp.md b/apps/blimp.md deleted file mode 100644 index c348d1ba3..000000000 --- a/apps/blimp.md +++ /dev/null @@ -1,8 +0,0 @@ -# BLIMP - - Customizable terminal UI for monitoring weather information, application status, network latency, and more - - SITE: https://github.com/merlinfuchs/blimp - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/blink b/apps/blink new file mode 100644 index 000000000..2db0b4645 --- /dev/null +++ b/apps/blink @@ -0,0 +1,3 @@ +# blink +GUI of live indexed grep for source code. Fuzzy suggestion in auto complete. Files locator, search and replace. Index management for multiple projects. +# SITES: https://github.com/ychclone/blink \ No newline at end of file diff --git a/apps/blink.md b/apps/blink.md deleted file mode 100644 index 6bcfe8782..000000000 --- a/apps/blink.md +++ /dev/null @@ -1,8 +0,0 @@ -# BLINK - - GUI of live indexed grep for source code. Fuzzy suggestion in auto complete. Files locator, search and replace. Index management for multiple projects. - - SITE: https://github.com/ychclone/blink - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/blizzard-4 b/apps/blizzard-4 new file mode 100644 index 000000000..4a8304303 --- /dev/null +++ b/apps/blizzard-4 @@ -0,0 +1,3 @@ +# blizzard-4 +Emulator & toolchain for the Blizzard 4 16-bit computer. +# SITES: https://github.com/danielfspencer/blizzard-4 \ No newline at end of file diff --git a/apps/blizzard-4.md b/apps/blizzard-4.md deleted file mode 100644 index b4d18d540..000000000 --- a/apps/blizzard-4.md +++ /dev/null @@ -1,8 +0,0 @@ -# BLIZZARD-4 - - Emulator & toolchain for the Blizzard 4 16-bit computer. - - SITE: https://github.com/danielfspencer/blizzard-4 - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/blob-dl b/apps/blob-dl new file mode 100644 index 000000000..dfc9133ba --- /dev/null +++ b/apps/blob-dl @@ -0,0 +1,3 @@ +# blob-dl +Blob-dl is a yt-dlp interface used to download video and audio files from YouTube +# SITES: https://github.com/MicheleCioccarelli/blob-dl \ No newline at end of file diff --git a/apps/blob-dl.md b/apps/blob-dl.md deleted file mode 100644 index 77d6021c9..000000000 --- a/apps/blob-dl.md +++ /dev/null @@ -1,8 +0,0 @@ -# BLOB-DL - - Blob-dl is a yt-dlp interface used to download video and audio files from YouTube - - SITE: https://github.com/MicheleCioccarelli/blob-dl - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/blobdrop b/apps/blobdrop new file mode 100644 index 000000000..aa3191b95 --- /dev/null +++ b/apps/blobdrop @@ -0,0 +1,3 @@ +# blobdrop +Drag and drop files directly out of the terminal. +# SITES: https://github.com/vimpostor/blobdrop \ No newline at end of file diff --git a/apps/blobdrop.md b/apps/blobdrop.md deleted file mode 100644 index cc664c3cc..000000000 --- a/apps/blobdrop.md +++ /dev/null @@ -1,8 +0,0 @@ -# BLOBDROP - - Drag and drop files directly out of the terminal. - - SITE: https://github.com/vimpostor/blobdrop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/block-dx b/apps/block-dx new file mode 100644 index 000000000..971ef896a --- /dev/null +++ b/apps/block-dx @@ -0,0 +1,4 @@ +# block-dx +Block DX - P2P Decentralized exchange powered by + Blocknet's XBridge Protocol +# SITES: https://blockdx.com/ \ No newline at end of file diff --git a/apps/block-dx.md b/apps/block-dx.md deleted file mode 100644 index 9f53eb8e9..000000000 --- a/apps/block-dx.md +++ /dev/null @@ -1,9 +0,0 @@ -# BLOCK-DX - - Block DX - P2P Decentralized exchange powered by - Blocknet's XBridge Protocol - - SITE: https://blockdx.com/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/blockbench b/apps/blockbench new file mode 100644 index 000000000..a5aec0aad --- /dev/null +++ b/apps/blockbench @@ -0,0 +1,3 @@ +# blockbench +Blockbench is a free, modern model editor for boxy models and pixel art textures. Models can be exported for Minecraft Java and Bedrock Edition as well as most game engines and other 3D applications. Blockbench features a modern and intuitive UI, plugin support and innovative features. It is the industry standard for creating custom 3D models for the Minecraft Marketplace. +# SITES: https://www.blockbench.net/ \ No newline at end of file diff --git a/apps/blockbench.md b/apps/blockbench.md deleted file mode 100644 index bc923cf64..000000000 --- a/apps/blockbench.md +++ /dev/null @@ -1,8 +0,0 @@ -# BLOCKBENCH - - Blockbench is a free, modern model editor for boxy models and pixel art textures. Models can be exported for Minecraft Java and Bedrock Edition as well as most game engines and other 3D applications. Blockbench features a modern and intuitive UI, plugin support and innovative features. It is the industry standard for creating custom 3D models for the Minecraft Marketplace. - - SITE: https://www.blockbench.net/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/blockstream-green b/apps/blockstream-green new file mode 100644 index 000000000..19cbfec3d --- /dev/null +++ b/apps/blockstream-green @@ -0,0 +1,3 @@ +# blockstream-green +Blockstream Green is a non-custodial Bitcoin wallet, compatible with Blockstream Jade hardware wallet +# SITES: https://blockstream.com/green/ \ No newline at end of file diff --git a/apps/blockstream-green.md b/apps/blockstream-green.md deleted file mode 100644 index 79032710d..000000000 --- a/apps/blockstream-green.md +++ /dev/null @@ -1,8 +0,0 @@ -# BLOCKSTREAM-GREEN - - Blockstream Green is a non-custodial Bitcoin wallet, compatible with Blockstream Jade hardware wallet - - SITE: https://blockstream.com/green/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/bloks b/apps/bloks new file mode 100644 index 000000000..a4f29bafc --- /dev/null +++ b/apps/bloks @@ -0,0 +1,3 @@ +# bloks +An electron-vue project +# SITES: https://github.com/eoscafe/bloks-desktop \ No newline at end of file diff --git a/apps/bloks.md b/apps/bloks.md deleted file mode 100644 index 15c14e6d8..000000000 --- a/apps/bloks.md +++ /dev/null @@ -1,8 +0,0 @@ -# BLOKS - - An electron-vue project - - SITE: https://github.com/eoscafe/bloks-desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/bloomee b/apps/bloomee new file mode 100644 index 000000000..f994527d9 --- /dev/null +++ b/apps/bloomee @@ -0,0 +1,3 @@ +# bloomee +🌸Bloomee is a cross-platform music app designed to bring you ad-free tunes from various sources. 🌼🎵 +# SITES: https://github.com/HemantKArya/BloomeeTunes \ No newline at end of file diff --git a/apps/bloomee.md b/apps/bloomee.md deleted file mode 100644 index c09e87d13..000000000 --- a/apps/bloomee.md +++ /dev/null @@ -1,8 +0,0 @@ -# BLOOMEE - - 🌸Bloomee is a cross-platform music app designed to bring you ad-free tunes from various sources. 🌼🎵 - - SITE: https://github.com/HemantKArya/BloomeeTunes - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/bloomrpc b/apps/bloomrpc new file mode 100644 index 000000000..e98b32809 --- /dev/null +++ b/apps/bloomrpc @@ -0,0 +1,3 @@ +# bloomrpc +GRPC GUI client +# SITES: https://github.com/uw-labs/bloomrpc \ No newline at end of file diff --git a/apps/bloomrpc.md b/apps/bloomrpc.md deleted file mode 100644 index 4fcf0190b..000000000 --- a/apps/bloomrpc.md +++ /dev/null @@ -1,8 +0,0 @@ -# BLOOMRPC - - GRPC GUI client - - SITE: https://github.com/uw-labs/bloomrpc - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/blowfish b/apps/blowfish new file mode 100644 index 000000000..50dfc140f --- /dev/null +++ b/apps/blowfish @@ -0,0 +1,4 @@ +# blowfish +Desktop app to retrieve and display your total Ocean Token balances. +# SITES: https://getblow.fish +# SOURCES: https://github.com/kremalicious/blowfish \ No newline at end of file diff --git a/apps/blowfish.md b/apps/blowfish.md deleted file mode 100644 index 25b99b2e6..000000000 --- a/apps/blowfish.md +++ /dev/null @@ -1,10 +0,0 @@ -# BLOWFISH - - Desktop app to retrieve and display your total Ocean Token balances. - - SITE: https://getblow.fish - - SOURCE: https://github.com/kremalicious/blowfish - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/blueglow b/apps/blueglow new file mode 100644 index 000000000..8838f8c42 --- /dev/null +++ b/apps/blueglow @@ -0,0 +1,3 @@ +# blueglow +A simple system tray application to watch github notifications +# SITES: https://github.com/antony-jr/blue-glow \ No newline at end of file diff --git a/apps/blueglow.md b/apps/blueglow.md deleted file mode 100644 index ad0ebb8a0..000000000 --- a/apps/blueglow.md +++ /dev/null @@ -1,8 +0,0 @@ -# BLUEGLOW - - A simple system tray application to watch github notifications - - SITE: https://github.com/antony-jr/blue-glow - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/bluetuith b/apps/bluetuith new file mode 100644 index 000000000..44c5239fd --- /dev/null +++ b/apps/bluetuith @@ -0,0 +1,3 @@ +# bluetuith +A TUI bluetooth manager for Linux. +# SITES: https://github.com/darkhz/bluetuith \ No newline at end of file diff --git a/apps/bluetuith.md b/apps/bluetuith.md deleted file mode 100644 index ab828c93a..000000000 --- a/apps/bluetuith.md +++ /dev/null @@ -1,8 +0,0 @@ -# BLUETUITH - - A TUI bluetooth manager for Linux. - - SITE: https://github.com/darkhz/bluetuith - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/bm64recomp-enhanced b/apps/bm64recomp-enhanced new file mode 100644 index 000000000..e6b582dab --- /dev/null +++ b/apps/bm64recomp-enhanced @@ -0,0 +1,4 @@ +# bm64recomp-enhanced + Unofficial AppImage of Bomberman 64 Recompiled. +# SITES: https://github.com/pkgforge-dev/bm64recomp-appimage-enhanced +# SOURCES: https://github.com/pkgforge-dev/bm64recomp-appimage-enhanced \ No newline at end of file diff --git a/apps/bm64recomp-enhanced.md b/apps/bm64recomp-enhanced.md deleted file mode 100644 index b89c22a69..000000000 --- a/apps/bm64recomp-enhanced.md +++ /dev/null @@ -1,8 +0,0 @@ -# BM64RECOMP-ENHANCED - - Unofficial AppImage of Bomberman 64 Recompiled. - - SITE: https://github.com/pkgforge-dev/bm64recomp-appimage-enhanced - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/bmherorecomp-enhanced b/apps/bmherorecomp-enhanced new file mode 100644 index 000000000..bbc3c6d9a --- /dev/null +++ b/apps/bmherorecomp-enhanced @@ -0,0 +1,4 @@ +# bmherorecomp-enhanced + Unofficial AppImage of Bomberman Hero Recompiled. +# SITES: https://github.com/pkgforge-dev/bmherorecomp-appimage-enhanced +# SOURCES: https://github.com/pkgforge-dev/bmherorecomp-appimage-enhanced \ No newline at end of file diff --git a/apps/bmherorecomp-enhanced.md b/apps/bmherorecomp-enhanced.md deleted file mode 100644 index 0c26ff3b1..000000000 --- a/apps/bmherorecomp-enhanced.md +++ /dev/null @@ -1,8 +0,0 @@ -# BMHERORECOMP-ENHANCED - - Unofficial AppImage of Bomberman Hero Recompiled. - - SITE: https://github.com/pkgforge-dev/bmherorecomp-appimage-enhanced - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/boardgamestar b/apps/boardgamestar new file mode 100644 index 000000000..aaa4a7e8e --- /dev/null +++ b/apps/boardgamestar @@ -0,0 +1,3 @@ +# boardgamestar +A platform for playing digital boardgames. +# SITES: https://boardgamestar.com/ \ No newline at end of file diff --git a/apps/boardgamestar.md b/apps/boardgamestar.md deleted file mode 100644 index bd313cea2..000000000 --- a/apps/boardgamestar.md +++ /dev/null @@ -1,8 +0,0 @@ -# BOARDGAMESTAR - - A platform for playing digital boardgames. - - SITE: https://boardgamestar.com/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/bodacious b/apps/bodacious new file mode 100644 index 000000000..cc24f8bd4 --- /dev/null +++ b/apps/bodacious @@ -0,0 +1,3 @@ +# bodacious +A bodacious music player. +# SITES: https://github.com/bleonard252/bodacious \ No newline at end of file diff --git a/apps/bodacious.md b/apps/bodacious.md deleted file mode 100644 index 8c527012b..000000000 --- a/apps/bodacious.md +++ /dev/null @@ -1,8 +0,0 @@ -# BODACIOUS - - A bodacious music player. - - SITE: https://github.com/bleonard252/bodacious - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/bodhi b/apps/bodhi new file mode 100644 index 000000000..cd2dff609 --- /dev/null +++ b/apps/bodhi @@ -0,0 +1,3 @@ +# bodhi +Bodhi Prediction Market app +# SITES: https://github.com/bodhiproject/bodhi-app \ No newline at end of file diff --git a/apps/bodhi.md b/apps/bodhi.md deleted file mode 100644 index 067e0848a..000000000 --- a/apps/bodhi.md +++ /dev/null @@ -1,8 +0,0 @@ -# BODHI - - Bodhi Prediction Market app - - SITE: https://github.com/bodhiproject/bodhi-app - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/boilr b/apps/boilr new file mode 100644 index 000000000..8f261c8d9 --- /dev/null +++ b/apps/boilr @@ -0,0 +1,3 @@ +# boilr +Synchronize games from other platforms into your Steam library. +# SITES: https://github.com/PhilipK/BoilR \ No newline at end of file diff --git a/apps/boilr.md b/apps/boilr.md deleted file mode 100644 index 823132ed7..000000000 --- a/apps/boilr.md +++ /dev/null @@ -1,8 +0,0 @@ -# BOILR - - Synchronize games from other platforms into your Steam library. - - SITE: https://github.com/PhilipK/BoilR - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/bomber b/apps/bomber new file mode 100644 index 000000000..65001978b --- /dev/null +++ b/apps/bomber @@ -0,0 +1,12 @@ +# bomber +Bomber is a game where you fly a spaceship and attempt to bomb the buildings below you. Each pass the spaceship makes, it gets lower and lower. If you've not destroyed a building in your path, you will crash into it. + + This game is part of the KDE Games suite. + + USAGE (from the command line): + + kdegames -h (shows the list of games) + kdegames $GAME (launches the selected game) +# SCREENSHOTS: https://cdn.kde.org/screenshots/bomber/bomber.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-games-suite-appimage \ No newline at end of file diff --git a/apps/bomber.md b/apps/bomber.md deleted file mode 100644 index f1c4d3cfd..000000000 --- a/apps/bomber.md +++ /dev/null @@ -1,19 +0,0 @@ -# BOMBER - - Bomber is a game where you fly a spaceship and attempt to bomb the buildings below you. Each pass the spaceship makes, it gets lower and lower. If you've not destroyed a building in your path, you will crash into it. - - This game is part of the KDE Games suite. - - USAGE (from the command line): - - kdegames -h (shows the list of games) - kdegames $GAME (launches the selected game) - - ![Screenshot](https://cdn.kde.org/screenshots/bomber/bomber.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-games-suite-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/bongocat b/apps/bongocat new file mode 100644 index 000000000..0de116af0 --- /dev/null +++ b/apps/bongocat @@ -0,0 +1,3 @@ +# bongocat +BongoCat 是一个可爱的互动桌面宠物应用,让你的桌面充满乐趣! +# SITES: https://github.com/ayangweb/BongoCat \ No newline at end of file diff --git a/apps/bongocat.md b/apps/bongocat.md deleted file mode 100644 index 86d083c4c..000000000 --- a/apps/bongocat.md +++ /dev/null @@ -1,8 +0,0 @@ -# BONGOCAT - - BongoCat 是一个可爱的互动桌面宠物应用,让你的桌面充满乐趣! - - SITE: https://github.com/ayangweb/BongoCat - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/book-manager b/apps/book-manager new file mode 100644 index 000000000..eee3f4c46 --- /dev/null +++ b/apps/book-manager @@ -0,0 +1,4 @@ +# book-manager +A simple crossplatfotm desktop app to manage personal library. +# SITES: https://book-manager.bdtechies.com +# SOURCES: https://github.com/bdTechies/book-manager \ No newline at end of file diff --git a/apps/book-manager.md b/apps/book-manager.md deleted file mode 100644 index 0fb77c1c8..000000000 --- a/apps/book-manager.md +++ /dev/null @@ -1,10 +0,0 @@ -# BOOK-MANAGER - - A simple crossplatfotm desktop app to manage personal library. - - SITE: https://book-manager.bdtechies.com - - SOURCE: https://github.com/bdTechies/book-manager - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/bookdb b/apps/bookdb new file mode 100644 index 000000000..fe56d1f60 --- /dev/null +++ b/apps/bookdb @@ -0,0 +1,4 @@ +# bookdb + A book catalog database for personal collections. Can import data from Readerware 4. +# SITES: https://github.com/cadwal/BookDB +# SOURCES: https://github.com/cadwal/BookDB \ No newline at end of file diff --git a/apps/bookdb.md b/apps/bookdb.md deleted file mode 100644 index 1c4211132..000000000 --- a/apps/bookdb.md +++ /dev/null @@ -1,8 +0,0 @@ -# BOOKDB - - A book catalog database for personal collections. Can import data from Readerware 4. - - SITE: https://github.com/cadwal/BookDB - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/bookmarks-manager b/apps/bookmarks-manager new file mode 100644 index 000000000..a00a93946 --- /dev/null +++ b/apps/bookmarks-manager @@ -0,0 +1,3 @@ +# bookmarks-manager +Edit bookmarks, check url. +# SITES: https://github.com/Hunlongyu/bookmarks-manager \ No newline at end of file diff --git a/apps/bookmarks-manager.md b/apps/bookmarks-manager.md deleted file mode 100644 index 160b85e55..000000000 --- a/apps/bookmarks-manager.md +++ /dev/null @@ -1,8 +0,0 @@ -# BOOKMARKS-MANAGER - - Edit bookmarks, check url. - - SITE: https://github.com/Hunlongyu/bookmarks-manager - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/boost-note b/apps/boost-note new file mode 100644 index 000000000..854c7f85f --- /dev/null +++ b/apps/boost-note @@ -0,0 +1,3 @@ +# boost-note +Boost Note is a document driven project management tool that maximizes remote DevOps team velocity. +# SITES: https://github.com/BoostIO/BoostNote-App \ No newline at end of file diff --git a/apps/boost-note.md b/apps/boost-note.md deleted file mode 100644 index c5f0bce34..000000000 --- a/apps/boost-note.md +++ /dev/null @@ -1,8 +0,0 @@ -# BOOST-NOTE - - Boost Note is a document driven project management tool that maximizes remote DevOps team velocity. - - SITE: https://github.com/BoostIO/BoostNote-App - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/boostchanger b/apps/boostchanger new file mode 100644 index 000000000..2bdbe1564 --- /dev/null +++ b/apps/boostchanger @@ -0,0 +1,3 @@ +# boostchanger +With this app you can control CPU turbo boost and the settings of the cpu speed in order to consuming less battery voltage on Linux. +# SITES: https://github.com/nbebaw/boostchanger \ No newline at end of file diff --git a/apps/boostchanger.md b/apps/boostchanger.md deleted file mode 100644 index c86e1d9b7..000000000 --- a/apps/boostchanger.md +++ /dev/null @@ -1,8 +0,0 @@ -# BOOSTCHANGER - - With this app you can control CPU turbo boost and the settings of the cpu speed in order to consuming less battery voltage on Linux. - - SITE: https://github.com/nbebaw/boostchanger - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/botclient b/apps/botclient new file mode 100644 index 000000000..ecc8b9b6f --- /dev/null +++ b/apps/botclient @@ -0,0 +1,3 @@ +# botclient +A discord botclient built with Electron, React and discord.js. +# SITES: https://github.com/DarkGuy10/BotClient \ No newline at end of file diff --git a/apps/botclient.md b/apps/botclient.md deleted file mode 100644 index 4d0496508..000000000 --- a/apps/botclient.md +++ /dev/null @@ -1,8 +0,0 @@ -# BOTCLIENT - - A discord botclient built with Electron, React and discord.js. - - SITE: https://github.com/DarkGuy10/BotClient - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/botframework-emulator b/apps/botframework-emulator new file mode 100644 index 000000000..2d6212a32 --- /dev/null +++ b/apps/botframework-emulator @@ -0,0 +1,3 @@ +# botframework-emulator +A desktop application that allows users to locally test and debug chat bots built with the Bot Framework SDK. +# SITES: https://aka.ms/botemulator \ No newline at end of file diff --git a/apps/botframework-emulator.md b/apps/botframework-emulator.md deleted file mode 100644 index e1fe8cd04..000000000 --- a/apps/botframework-emulator.md +++ /dev/null @@ -1,8 +0,0 @@ -# BOTFRAMEWORK-EMULATOR - - A desktop application that allows users to locally test and debug chat bots built with the Bot Framework SDK. - - SITE: https://aka.ms/botemulator - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/bottlebats b/apps/bottlebats new file mode 100644 index 000000000..b1720f71a --- /dev/null +++ b/apps/bottlebats @@ -0,0 +1,3 @@ +# bottlebats +Client for the 2018 edition of the BottleBats AI competition +# SITES: https://github.com/ZeusWPI/MOZAIC \ No newline at end of file diff --git a/apps/bottlebats.md b/apps/bottlebats.md deleted file mode 100644 index 9bdb32384..000000000 --- a/apps/bottlebats.md +++ /dev/null @@ -1,8 +0,0 @@ -# BOTTLEBATS - - Client for the 2018 edition of the BottleBats AI competition - - SITE: https://github.com/ZeusWPI/MOZAIC - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/bottles b/apps/bottles new file mode 100644 index 000000000..281f31dd3 --- /dev/null +++ b/apps/bottles @@ -0,0 +1,8 @@ +# bottles +Bottles - Profile manager for WINE to easily install Windows apps. + + Easily manage wine prefixes in a new way. Run Windows software and games on Linux. + + This is the Unofficial AppImage built using "Conty" (see "conty"). +# SITES: https://usebottles.com +# SOURCES: https://github.com/bottlesdevs/Bottles https://github.com/ivan-hc/Bottles-appimage \ No newline at end of file diff --git a/apps/bottles.md b/apps/bottles.md deleted file mode 100644 index 371f32a52..000000000 --- a/apps/bottles.md +++ /dev/null @@ -1,19 +0,0 @@ -# BOTTLES - - Bottles - Profile manager for WINE to easily install Windows apps. - - Easily manage wine prefixes in a new way. Run Windows software and games on Linux. - - This is the Unofficial AppImage built using "Conty" (see "conty"). - - | ![Screenshot](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io/assets/88724353/b710774a-b412-439d-a90c-db576db3ce12) | ![Screenshot](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io/assets/88724353/a14d4623-54c7-406b-a188-190d3b28e457) | ![Screenshot](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io/assets/88724353/5b74004d-2970-4ede-afca-f72325e2d82e) | ![Screenshot](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io/assets/88724353/35e6b7c4-ea7c-4eb7-9869-e7f1e6fb629c) - | - | - | - | - | - - SITE: https://usebottles.com - - SOURCE: https://github.com/bottlesdevs/Bottles - - UNOFFICIAL APPIMAGE: https://github.com/ivan-hc/Bottles-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/bottom b/apps/bottom new file mode 100644 index 000000000..fa90809ac --- /dev/null +++ b/apps/bottom @@ -0,0 +1,3 @@ +# bottom +Yet another cross-platform graphical process/system monitor. +# SITES: https://github.com/ClementTsang/bottom \ No newline at end of file diff --git a/apps/bottom.md b/apps/bottom.md deleted file mode 100644 index 87c298c17..000000000 --- a/apps/bottom.md +++ /dev/null @@ -1,8 +0,0 @@ -# BOTTOM - - Yet another cross-platform graphical process/system monitor. - - SITE: https://github.com/ClementTsang/bottom - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/bovo b/apps/bovo new file mode 100644 index 000000000..d1e74625f --- /dev/null +++ b/apps/bovo @@ -0,0 +1,12 @@ +# bovo +Opponents alternate in placing their pieces on the board trying to connect five pieces in an unbroken row while trying to block the opponent's pieces. + + This game is part of the KDE Games suite. + + USAGE (from the command line): + + kdegames -h (shows the list of games) + kdegames $GAME (launches the selected game) +# SCREENSHOTS: https://cdn.kde.org/screenshots/bovo/bovo.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-games-suite-appimage \ No newline at end of file diff --git a/apps/bovo.md b/apps/bovo.md deleted file mode 100644 index 5f1fb96c9..000000000 --- a/apps/bovo.md +++ /dev/null @@ -1,19 +0,0 @@ -# BOVO - - Opponents alternate in placing their pieces on the board trying to connect five pieces in an unbroken row while trying to block the opponent's pieces. - - This game is part of the KDE Games suite. - - USAGE (from the command line): - - kdegames -h (shows the list of games) - kdegames $GAME (launches the selected game) - - ![Screenshot](https://cdn.kde.org/screenshots/bovo/bovo.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-games-suite-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/boxxy b/apps/boxxy new file mode 100644 index 000000000..1c38ef3fb --- /dev/null +++ b/apps/boxxy @@ -0,0 +1,3 @@ +# boxxy +boxxy puts bad Linux applications in a box with only their files. +# SITES: https://github.com/queer/boxxy \ No newline at end of file diff --git a/apps/boxxy.md b/apps/boxxy.md deleted file mode 100644 index 558cfddf1..000000000 --- a/apps/boxxy.md +++ /dev/null @@ -1,8 +0,0 @@ -# BOXXY - - boxxy puts bad Linux applications in a box with only their files. - - SITE: https://github.com/queer/boxxy - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/brainverse b/apps/brainverse new file mode 100644 index 000000000..437a45139 --- /dev/null +++ b/apps/brainverse @@ -0,0 +1,3 @@ +# brainverse +Electronic Lab Notebook for Reproducible Neuro Imaging Research +# SITES: https://github.com/ReproNim/brainverse \ No newline at end of file diff --git a/apps/brainverse.md b/apps/brainverse.md deleted file mode 100644 index 9a1a4c0c2..000000000 --- a/apps/brainverse.md +++ /dev/null @@ -1,8 +0,0 @@ -# BRAINVERSE - - Electronic Lab Notebook for Reproducible Neuro Imaging Research - - SITE: https://github.com/ReproNim/brainverse - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/brainwaves b/apps/brainwaves new file mode 100644 index 000000000..511a3bb6d --- /dev/null +++ b/apps/brainwaves @@ -0,0 +1,3 @@ +# brainwaves +EEG Desktop Application +# SITES: https://github.com/makebrainwaves/BrainWaves \ No newline at end of file diff --git a/apps/brainwaves.md b/apps/brainwaves.md deleted file mode 100644 index 278799c5d..000000000 --- a/apps/brainwaves.md +++ /dev/null @@ -1,8 +0,0 @@ -# BRAINWAVES - - EEG Desktop Application - - SITE: https://github.com/makebrainwaves/BrainWaves - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/brave b/apps/brave new file mode 100644 index 000000000..6bb18412f --- /dev/null +++ b/apps/brave @@ -0,0 +1,11 @@ +# brave +Brave - A privacy oriented Web Browser based on Chromium. + + The new Brave browser blocks ads and trackers that slow you down and invade your privacy. + + Discover a new way of thinking about how the web can work. + + This is the unofficial AppImage built on top of the official "stable" release. +# SCREENSHOTS: https://upload.wikimedia.org/wikipedia/commons/8/83/Brave_Browser_Welcome_Page.png +# SITES: https://brave.com +# SOURCES: https://github.com/brave/brave-browser https://github.com/ivan-hc/Brave-appimage \ No newline at end of file diff --git a/apps/brave-beta b/apps/brave-beta new file mode 100644 index 000000000..f7a67a9f8 --- /dev/null +++ b/apps/brave-beta @@ -0,0 +1,9 @@ +# brave-beta +Brave - A privacy oriented Web Browser based on Chromium. + + Brave Beta is an early preview for new versions of Brave. + + This is the unofficial AppImage built on top of the official "beta" release. +# SCREENSHOTS: https://upload.wikimedia.org/wikipedia/commons/8/83/Brave_Browser_Welcome_Page.png +# SITES: https://brave.com +# SOURCES: https://github.com/brave/brave-browser https://github.com/ivan-hc/Brave-appimage \ No newline at end of file diff --git a/apps/brave-beta.md b/apps/brave-beta.md deleted file mode 100644 index 1293ddb62..000000000 --- a/apps/brave-beta.md +++ /dev/null @@ -1,18 +0,0 @@ -# BRAVE-BETA - - Brave - A privacy oriented Web Browser based on Chromium. - - Brave Beta is an early preview for new versions of Brave. - - This is the unofficial AppImage built on top of the official "beta" release. - - ![Screenshot](https://upload.wikimedia.org/wikipedia/commons/8/83/Brave_Browser_Welcome_Page.png) - - SITE: https://brave.com - - SOURCE: https://github.com/brave/brave-browser - - APPIMAGE: https://github.com/ivan-hc/Brave-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/brave-nightly b/apps/brave-nightly new file mode 100644 index 000000000..73109617e --- /dev/null +++ b/apps/brave-nightly @@ -0,0 +1,11 @@ +# brave-nightly +Brave - A privacy oriented Web Browser based on Chromium. + + Nightly is the testing and development version of Brave. The releases are updated every night and may contain bugs that can result in data loss. + + Nightly automatically sends crash reports when things go wrong. + + This is the unofficial AppImage built on top of the official "nightly" release. +# SCREENSHOTS: https://upload.wikimedia.org/wikipedia/commons/8/83/Brave_Browser_Welcome_Page.png +# SITES: https://brave.com +# SOURCES: https://github.com/brave/brave-browser https://github.com/ivan-hc/Brave-appimage \ No newline at end of file diff --git a/apps/brave-nightly.md b/apps/brave-nightly.md deleted file mode 100644 index 5f8ce981d..000000000 --- a/apps/brave-nightly.md +++ /dev/null @@ -1,20 +0,0 @@ -# BRAVE-NIGHTLY - - Brave - A privacy oriented Web Browser based on Chromium. - - Nightly is the testing and development version of Brave. The releases are updated every night and may contain bugs that can result in data loss. - - Nightly automatically sends crash reports when things go wrong. - - This is the unofficial AppImage built on top of the official "nightly" release. - - ![Screenshot](https://upload.wikimedia.org/wikipedia/commons/8/83/Brave_Browser_Welcome_Page.png) - - SITE: https://brave.com - - SOURCE: https://github.com/brave/brave-browser - - APPIMAGE: https://github.com/ivan-hc/Brave-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/brave-origin b/apps/brave-origin new file mode 100644 index 000000000..9f85e6777 --- /dev/null +++ b/apps/brave-origin @@ -0,0 +1,4 @@ +# brave-origin + Unofficial, stripped down version of Brave Browser with no extra features. +# SITES: https://github.com/pkgforge-dev/Brave-Origin-AppImage +# SOURCES: https://github.com/pkgforge-dev/Brave-Origin-AppImage \ No newline at end of file diff --git a/apps/brave-origin.md b/apps/brave-origin.md deleted file mode 100644 index 78346ae46..000000000 --- a/apps/brave-origin.md +++ /dev/null @@ -1,8 +0,0 @@ -# BRAVE-ORIGIN - - Unofficial, stripped down version of Brave Browser with no extra features. - - SITE: https://github.com/pkgforge-dev/Brave-Origin-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/brave.md b/apps/brave.md deleted file mode 100644 index f9348d0b4..000000000 --- a/apps/brave.md +++ /dev/null @@ -1,20 +0,0 @@ -# BRAVE - - Brave - A privacy oriented Web Browser based on Chromium. - - The new Brave browser blocks ads and trackers that slow you down and invade your privacy. - - Discover a new way of thinking about how the web can work. - - This is the unofficial AppImage built on top of the official "stable" release. - - ![Screenshot](https://upload.wikimedia.org/wikipedia/commons/8/83/Brave_Browser_Welcome_Page.png) - - SITE: https://brave.com - - SOURCE: https://github.com/brave/brave-browser - - APPIMAGE: https://github.com/ivan-hc/Brave-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/bread b/apps/bread new file mode 100644 index 000000000..df3d89c61 --- /dev/null +++ b/apps/bread @@ -0,0 +1,4 @@ +# bread +Bread is a command line utility similar to "AM" or AppMan able to install, update, remove & run AppImage packages from GitHub and other trusted AppImage sources. +# SITES: pegvin.github.io/bread +# SOURCES: https://github.com/pegvin/bread \ No newline at end of file diff --git a/apps/bread.md b/apps/bread.md deleted file mode 100644 index caf3b6b09..000000000 --- a/apps/bread.md +++ /dev/null @@ -1,10 +0,0 @@ -# BREAD - - Bread is a command line utility similar to "AM" or AppMan able to install, update, remove & run AppImage packages from GitHub and other trusted AppImage sources. - - SITE: pegvin.github.io/bread - - SOURCE: https://github.com/pegvin/bread - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/breaktimer b/apps/breaktimer new file mode 100644 index 000000000..a3165a5ee --- /dev/null +++ b/apps/breaktimer @@ -0,0 +1,3 @@ +# breaktimer +Save yourself from RSI and eye-strain. +# SITES: https://breaktimer.app/ \ No newline at end of file diff --git a/apps/breaktimer.md b/apps/breaktimer.md deleted file mode 100644 index 4649bcd8b..000000000 --- a/apps/breaktimer.md +++ /dev/null @@ -1,8 +0,0 @@ -# BREAKTIMER - - Save yourself from RSI and eye-strain. - - SITE: https://breaktimer.app/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/briar b/apps/briar new file mode 100644 index 000000000..fcdefc1b3 --- /dev/null +++ b/apps/briar @@ -0,0 +1,3 @@ +# briar +Briar Desktop. Censorship-resistant peer-to-peer messaging that bypasses centralized servers. Connect via Bluetooth, Wi-Fi or Tor, with privacy built-in. +# SITES: https://briarproject.org \ No newline at end of file diff --git a/apps/briar.md b/apps/briar.md deleted file mode 100644 index ac2cd5208..000000000 --- a/apps/briar.md +++ /dev/null @@ -1,8 +0,0 @@ -# BRIAR - - Briar Desktop. Censorship-resistant peer-to-peer messaging that bypasses centralized servers. Connect via Bluetooth, Wi-Fi or Tor, with privacy built-in. - - SITE: https://briarproject.org - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/brickstore b/apps/brickstore new file mode 100644 index 000000000..cfa663f4d --- /dev/null +++ b/apps/brickstore @@ -0,0 +1,3 @@ +# brickstore +An offline BrickLink inventory management tool. +# SITES: https://github.com/rgriebl/brickstore \ No newline at end of file diff --git a/apps/brickstore.md b/apps/brickstore.md deleted file mode 100644 index 9d4c2e023..000000000 --- a/apps/brickstore.md +++ /dev/null @@ -1,8 +0,0 @@ -# BRICKSTORE - - An offline BrickLink inventory management tool. - - SITE: https://github.com/rgriebl/brickstore - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/bridge b/apps/bridge new file mode 100644 index 000000000..520a163bd --- /dev/null +++ b/apps/bridge @@ -0,0 +1,3 @@ +# bridge +The perfect Bridge between Megascans and your favorite tools. +# SITES: https://quixel.com/bridge \ No newline at end of file diff --git a/apps/bridge.md b/apps/bridge.md deleted file mode 100644 index 47d8ac450..000000000 --- a/apps/bridge.md +++ /dev/null @@ -1,8 +0,0 @@ -# BRIDGE - - The perfect Bridge between Megascans and your favorite tools. - - SITE: https://quixel.com/bridge - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/brisk b/apps/brisk new file mode 100644 index 000000000..978f7674a --- /dev/null +++ b/apps/brisk @@ -0,0 +1,3 @@ +# brisk +Ultra-fast, moden download manager for desktop. +# SITES: https://github.com/AminBhst/brisk \ No newline at end of file diff --git a/apps/brisk.md b/apps/brisk.md deleted file mode 100644 index ecdee7886..000000000 --- a/apps/brisk.md +++ /dev/null @@ -1,8 +0,0 @@ -# BRISK - - Ultra-fast, moden download manager for desktop. - - SITE: https://github.com/AminBhst/brisk - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/brisqi b/apps/brisqi new file mode 100644 index 000000000..89b4d01f9 --- /dev/null +++ b/apps/brisqi @@ -0,0 +1,6 @@ +# brisqi +Offline-first personal Kanban app. Elegantly designed & passionately built. + + Keeping you productive anywhere — whether online or off the grid. +# SITES: https://brisqi.com +# SOURCES: https://github.com/Brisqi/releases \ No newline at end of file diff --git a/apps/brisqi.md b/apps/brisqi.md deleted file mode 100644 index 5d1bf8de1..000000000 --- a/apps/brisqi.md +++ /dev/null @@ -1,12 +0,0 @@ -# BRISQI - - Offline-first personal Kanban app. Elegantly designed & passionately built. - - Keeping you productive anywhere — whether online or off the grid. - - SITE: https://brisqi.com - - SOURCE: https://github.com/Brisqi/releases - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/browservice b/apps/browservice new file mode 100644 index 000000000..826e2f26e --- /dev/null +++ b/apps/browservice @@ -0,0 +1,6 @@ +# browservice +Browservice: Browse the modern web on historical browsers. + + A web "proxy" server that enables browsing the modern web on historical browsers. It works by rendering the browser viewport into images, which are then shown by a JavaScript application running on the client browser. +# SCREENSHOTS: https://raw.githubusercontent.com/ttalvitie/browservice/refs/heads/master/fig/nt4_ie6_instagram.png +# SITES: https://github.com/ttalvitie/browservice \ No newline at end of file diff --git a/apps/browservice.md b/apps/browservice.md deleted file mode 100644 index 77b21f19f..000000000 --- a/apps/browservice.md +++ /dev/null @@ -1,12 +0,0 @@ -# BROWSERVICE - - Browservice: Browse the modern web on historical browsers. - - A web "proxy" server that enables browsing the modern web on historical browsers. It works by rendering the browser viewport into images, which are then shown by a JavaScript application running on the client browser. - - ![Screenshot](https://raw.githubusercontent.com/ttalvitie/browservice/refs/heads/master/fig/nt4_ie6_instagram.png) - - SITE: https://github.com/ttalvitie/browservice - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/brs-emu-app b/apps/brs-emu-app new file mode 100644 index 000000000..e6fa35b72 --- /dev/null +++ b/apps/brs-emu-app @@ -0,0 +1,3 @@ +# brs-emu-app +BrightScript Emulator - Runs on modern browsers and Electron applications. +# SITES: https://lvcabral.com/brs/ \ No newline at end of file diff --git a/apps/brs-emu-app.md b/apps/brs-emu-app.md deleted file mode 100644 index 39a86cd06..000000000 --- a/apps/brs-emu-app.md +++ /dev/null @@ -1,8 +0,0 @@ -# BRS-EMU-APP - - BrightScript Emulator - Runs on modern browsers and Electron applications. - - SITE: https://lvcabral.com/brs/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/bruno b/apps/bruno new file mode 100644 index 000000000..c3e13a7dd --- /dev/null +++ b/apps/bruno @@ -0,0 +1,3 @@ +# bruno +The latest stable AppImage of Bruno, an Opensource API Collection Collaboration Suite +# SITES: https://github.com/usebruno/bruno \ No newline at end of file diff --git a/apps/bruno.md b/apps/bruno.md deleted file mode 100644 index 199d54a5d..000000000 --- a/apps/bruno.md +++ /dev/null @@ -1,8 +0,0 @@ -# BRUNO - - The latest stable AppImage of Bruno, an Opensource API Collection Collaboration Suite - - SITE: https://github.com/usebruno/bruno - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/brutespray b/apps/brutespray new file mode 100644 index 000000000..d55a07c73 --- /dev/null +++ b/apps/brutespray @@ -0,0 +1,3 @@ +# brutespray +Bruteforcing from various scanner output - Automatically attempts default creds on found services. +# SITES: https://github.com/x90skysn3k/brutespray \ No newline at end of file diff --git a/apps/brutespray.md b/apps/brutespray.md deleted file mode 100644 index effa05df9..000000000 --- a/apps/brutespray.md +++ /dev/null @@ -1,8 +0,0 @@ -# BRUTESPRAY - - Bruteforcing from various scanner output - Automatically attempts default creds on found services. - - SITE: https://github.com/x90skysn3k/brutespray - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/bscanfftwebcam b/apps/bscanfftwebcam new file mode 100644 index 000000000..4776e563d --- /dev/null +++ b/apps/bscanfftwebcam @@ -0,0 +1,3 @@ +# bscanfftwebcam +FDOCT tool +# SITES: https://github.com/hn-88/FDOCT \ No newline at end of file diff --git a/apps/bscanfftwebcam.md b/apps/bscanfftwebcam.md deleted file mode 100644 index 1f340574c..000000000 --- a/apps/bscanfftwebcam.md +++ /dev/null @@ -1,8 +0,0 @@ -# BSCANFFTWEBCAM - - FDOCT tool - - SITE: https://github.com/hn-88/FDOCT - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/bsky b/apps/bsky new file mode 100644 index 000000000..03a55b5cd --- /dev/null +++ b/apps/bsky @@ -0,0 +1,3 @@ +# bsky +A desktop app of bsky.app. +# SITES: https://github.com/oxmc/bsky-desktop \ No newline at end of file diff --git a/apps/bsky.md b/apps/bsky.md deleted file mode 100644 index 6ed0b7698..000000000 --- a/apps/bsky.md +++ /dev/null @@ -1,8 +0,0 @@ -# BSKY - - A desktop app of bsky.app. - - SITE: https://github.com/oxmc/bsky-desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/btop b/apps/btop new file mode 100644 index 000000000..836a78de6 --- /dev/null +++ b/apps/btop @@ -0,0 +1,3 @@ +# btop +A full customizable command line utility needed to monitor system resources. This is a full themeable version of the well known Htop. +# SITES: https://github.com/aristocratos/btop \ No newline at end of file diff --git a/apps/btop.md b/apps/btop.md deleted file mode 100644 index f1b0fe48e..000000000 --- a/apps/btop.md +++ /dev/null @@ -1,10 +0,0 @@ -# BTOP - - A full customizable command line utility needed to monitor system resources. This is a full themeable version of the well known Htop. - - USAGE: btop - - SITE: https://github.com/aristocratos/btop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/bts-ce-lite b/apps/bts-ce-lite new file mode 100644 index 000000000..da6c551cc --- /dev/null +++ b/apps/bts-ce-lite @@ -0,0 +1,3 @@ +# bts-ce-lite +BTS-CE-Lite is a telecommunication network management application +# SITES: https://www.bodastage.org/bts-ce-lite/. \ No newline at end of file diff --git a/apps/bts-ce-lite.md b/apps/bts-ce-lite.md deleted file mode 100644 index 8d59d1859..000000000 --- a/apps/bts-ce-lite.md +++ /dev/null @@ -1,8 +0,0 @@ -# BTS-CE-LITE - - BTS-CE-Lite is a telecommunication network management application - - SITE: https://www.bodastage.org/bts-ce-lite/. - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/buckets b/apps/buckets new file mode 100644 index 000000000..4003e8792 --- /dev/null +++ b/apps/buckets @@ -0,0 +1,3 @@ +# buckets +Buckets makes budgeting fast, simple and private. +# SITES: https://www.budgetwithbuckets.com/ \ No newline at end of file diff --git a/apps/buckets.md b/apps/buckets.md deleted file mode 100644 index d1b93cbc4..000000000 --- a/apps/buckets.md +++ /dev/null @@ -1,8 +0,0 @@ -# BUCKETS - - Buckets makes budgeting fast, simple and private. - - SITE: https://www.budgetwithbuckets.com/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/bugdom b/apps/bugdom new file mode 100644 index 000000000..644f54dd7 --- /dev/null +++ b/apps/bugdom @@ -0,0 +1,4 @@ +# bugdom +This is Pangea Software's Bugdom updated to run on modern operating systems. +# SITES: https://pangeasoft.net/bug/ +# SOURCES: https://github.com/jorio/Bugdom \ No newline at end of file diff --git a/apps/bugdom.md b/apps/bugdom.md deleted file mode 100644 index 2c8d7ed6f..000000000 --- a/apps/bugdom.md +++ /dev/null @@ -1,10 +0,0 @@ -# BUGDOM - - This is Pangea Software's Bugdom updated to run on modern operating systems. - - SITE: https://pangeasoft.net/bug/ - - SOURCE: https://github.com/jorio/Bugdom - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/bugdom2 b/apps/bugdom2 new file mode 100644 index 000000000..c0adaaba5 --- /dev/null +++ b/apps/bugdom2 @@ -0,0 +1,3 @@ +# bugdom2 +Pangea Software’s Bugdom 2 for modern systems 🦗. +# SITES: https://github.com/jorio/Bugdom2 \ No newline at end of file diff --git a/apps/bugdom2.md b/apps/bugdom2.md deleted file mode 100644 index 58e574f05..000000000 --- a/apps/bugdom2.md +++ /dev/null @@ -1,8 +0,0 @@ -# BUGDOM2 - - Pangea Software’s Bugdom 2 for modern systems 🦗. - - SITE: https://github.com/jorio/Bugdom2 - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/bulkreviewer b/apps/bulkreviewer new file mode 100644 index 000000000..29c422cee --- /dev/null +++ b/apps/bulkreviewer @@ -0,0 +1,3 @@ +# bulkreviewer +Identify, review, and remove private information +# SITES: https://github.com/bulk-reviewer/bulk-reviewer \ No newline at end of file diff --git a/apps/bulkreviewer.md b/apps/bulkreviewer.md deleted file mode 100644 index 74732b309..000000000 --- a/apps/bulkreviewer.md +++ /dev/null @@ -1,8 +0,0 @@ -# BULKREVIEWER - - Identify, review, and remove private information - - SITE: https://github.com/bulk-reviewer/bulk-reviewer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/bulkurlopener b/apps/bulkurlopener new file mode 100644 index 000000000..e794ac01b --- /dev/null +++ b/apps/bulkurlopener @@ -0,0 +1,3 @@ +# bulkurlopener +Desktop version of the Bulk URL Opener browser extension +# SITES: https://github.com/EuanRiggans/BulkURLOpener \ No newline at end of file diff --git a/apps/bulkurlopener.md b/apps/bulkurlopener.md deleted file mode 100644 index b41be0895..000000000 --- a/apps/bulkurlopener.md +++ /dev/null @@ -1,8 +0,0 @@ -# BULKURLOPENER - - Desktop version of the Bulk URL Opener browser extension - - SITE: https://github.com/EuanRiggans/BulkURLOpener - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/bulky b/apps/bulky new file mode 100644 index 000000000..08aa8bb5d --- /dev/null +++ b/apps/bulky @@ -0,0 +1,3 @@ +# bulky +Unofficial, an XApp used to rename multiple files and directories. +# SITES: https://github.com/pkgforge-dev/Bulky-AppImage \ No newline at end of file diff --git a/apps/bulky.md b/apps/bulky.md deleted file mode 100644 index ec6493de3..000000000 --- a/apps/bulky.md +++ /dev/null @@ -1,8 +0,0 @@ -# BULKY - - Unofficial, an XApp used to rename multiple files and directories. - - SITE: https://github.com/pkgforge-dev/Bulky-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/bunnyfetch b/apps/bunnyfetch new file mode 100644 index 000000000..ad263855c --- /dev/null +++ b/apps/bunnyfetch @@ -0,0 +1,3 @@ +# bunnyfetch +Tiny system info fetch utility. +# SITES: https://github.com/Rosettea/bunnyfetch \ No newline at end of file diff --git a/apps/bunnyfetch.md b/apps/bunnyfetch.md deleted file mode 100644 index 7a7688c6f..000000000 --- a/apps/bunnyfetch.md +++ /dev/null @@ -1,8 +0,0 @@ -# BUNNYFETCH - - Tiny system info fetch utility. - - SITE: https://github.com/Rosettea/bunnyfetch - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/bunqdesktop b/apps/bunqdesktop new file mode 100644 index 000000000..f5b81dabd --- /dev/null +++ b/apps/bunqdesktop @@ -0,0 +1,3 @@ +# bunqdesktop +A desktop implementation for the bunq API +# SITES: https://github.com/BunqCommunity/BunqDesktop \ No newline at end of file diff --git a/apps/bunqdesktop.md b/apps/bunqdesktop.md deleted file mode 100644 index 38a24738a..000000000 --- a/apps/bunqdesktop.md +++ /dev/null @@ -1,8 +0,0 @@ -# BUNQDESKTOP - - A desktop implementation for the bunq API - - SITE: https://github.com/BunqCommunity/BunqDesktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/burning-series b/apps/burning-series new file mode 100644 index 000000000..8dfc53ac7 --- /dev/null +++ b/apps/burning-series @@ -0,0 +1,5 @@ +# burning-series +Watch any series from Burning Series using this app. + + This is an unofficial Burning Series App. +# SITES: https://github.com/DATL4G/BurningSeries-Android \ No newline at end of file diff --git a/apps/burning-series.md b/apps/burning-series.md deleted file mode 100644 index 3ea71d3cd..000000000 --- a/apps/burning-series.md +++ /dev/null @@ -1,10 +0,0 @@ -# BURNING-SERIES - - Watch any series from Burning Series using this app. - - This is an unofficial Burning Series App. - - SITE: https://github.com/DATL4G/BurningSeries-Android - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/busybox b/apps/busybox new file mode 100644 index 000000000..449608475 --- /dev/null +++ b/apps/busybox @@ -0,0 +1,3 @@ +# busybox +AppImage of BusyBox, a tool that combines stripped-down versions of many common UNIX utilities into a single, small executable. +# SITES: https://github.com/ivan-hc/busybox-appimage \ No newline at end of file diff --git a/apps/busybox.md b/apps/busybox.md deleted file mode 100644 index 224013c4c..000000000 --- a/apps/busybox.md +++ /dev/null @@ -1,8 +0,0 @@ -# BUSYBOX - - AppImage of BusyBox, a tool that combines stripped-down versions of many common UNIX utilities into a single, small executable. - - SITE: https://github.com/ivan-hc/busybox-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/buttercup b/apps/buttercup new file mode 100644 index 000000000..2f605fc03 --- /dev/null +++ b/apps/buttercup @@ -0,0 +1,3 @@ +# buttercup +Free and Open Source password vault +# SITES: https://github.com/buttercup/buttercup-desktop \ No newline at end of file diff --git a/apps/buttercup.md b/apps/buttercup.md deleted file mode 100644 index e955a87dd..000000000 --- a/apps/buttercup.md +++ /dev/null @@ -1,8 +0,0 @@ -# BUTTERCUP - - Free and Open Source password vault - - SITE: https://github.com/buttercup/buttercup-desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/bypass-cors b/apps/bypass-cors new file mode 100644 index 000000000..f35dc3c59 --- /dev/null +++ b/apps/bypass-cors @@ -0,0 +1,3 @@ +# bypass-cors +Unlock browser’s full potential! +# SITES: https://github.com/chrishham/BypassCors \ No newline at end of file diff --git a/apps/bypass-cors.md b/apps/bypass-cors.md deleted file mode 100644 index 9d48fc05c..000000000 --- a/apps/bypass-cors.md +++ /dev/null @@ -1,8 +0,0 @@ -# BYPASS-CORS - - Unlock browser’s full potential! - - SITE: https://github.com/chrishham/BypassCors - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/bytespeichertrayicon b/apps/bytespeichertrayicon new file mode 100644 index 000000000..1ad5a55fc --- /dev/null +++ b/apps/bytespeichertrayicon @@ -0,0 +1,3 @@ +# bytespeichertrayicon +Bytespeicher Status App +# SITES: https://github.com/Bytespeicher/BytespeicherTrayIcon \ No newline at end of file diff --git a/apps/bytespeichertrayicon.md b/apps/bytespeichertrayicon.md deleted file mode 100644 index bd95dcbcb..000000000 --- a/apps/bytespeichertrayicon.md +++ /dev/null @@ -1,8 +0,0 @@ -# BYTESPEICHERTRAYICON - - Bytespeicher Status App - - SITE: https://github.com/Bytespeicher/BytespeicherTrayIcon - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/bzip2 b/apps/bzip2 new file mode 100644 index 000000000..c92f444d1 --- /dev/null +++ b/apps/bzip2 @@ -0,0 +1,3 @@ +# bzip2 +A high-quality data compression program. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/bzip2.md b/apps/bzip2.md deleted file mode 100644 index 2dfc02f49..000000000 --- a/apps/bzip2.md +++ /dev/null @@ -1,8 +0,0 @@ -# BZIP2 - - A high-quality data compression program. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/c++filt b/apps/c++filt new file mode 100644 index 000000000..fba699602 --- /dev/null +++ b/apps/c++filt @@ -0,0 +1,4 @@ +# c++filt + And Java symbols. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/c++filt.md b/apps/c++filt.md deleted file mode 100644 index f67cca198..000000000 --- a/apps/c++filt.md +++ /dev/null @@ -1,8 +0,0 @@ -# C++FILT - - And Java symbols. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/c-evo b/apps/c-evo new file mode 100644 index 000000000..54bee97bf --- /dev/null +++ b/apps/c-evo @@ -0,0 +1,3 @@ +# c-evo +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. +# SITES: http://c-evo.org \ No newline at end of file diff --git a/apps/c-evo.md b/apps/c-evo.md deleted file mode 100644 index c3ff8ca80..000000000 --- a/apps/c-evo.md +++ /dev/null @@ -1,8 +0,0 @@ -# C-EVO - - 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. - - SITE: http://c-evo.org - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/cabal-desktop b/apps/cabal-desktop new file mode 100644 index 000000000..bdaa7c073 --- /dev/null +++ b/apps/cabal-desktop @@ -0,0 +1,3 @@ +# cabal-desktop +Cabal p2p offline-first desktop application +# SITES: https://github.com/cabal-club/cabal-desktop \ No newline at end of file diff --git a/apps/cabal-desktop.md b/apps/cabal-desktop.md deleted file mode 100644 index df06c741a..000000000 --- a/apps/cabal-desktop.md +++ /dev/null @@ -1,8 +0,0 @@ -# CABAL-DESKTOP - - Cabal p2p offline-first desktop application - - SITE: https://github.com/cabal-club/cabal-desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/cables-gl b/apps/cables-gl new file mode 100644 index 000000000..bce07a401 --- /dev/null +++ b/apps/cables-gl @@ -0,0 +1,4 @@ +# cables-gl +Cables is a tool for creating beautiful interactive content. With an easy to navigate interface and real time visuals, it allows for rapid prototyping and fast adjustments. +# SITES: https://cables.gl +# SOURCES: https://github.com/cables-gl/cables_electron \ No newline at end of file diff --git a/apps/cables-gl.md b/apps/cables-gl.md deleted file mode 100644 index abf500944..000000000 --- a/apps/cables-gl.md +++ /dev/null @@ -1,10 +0,0 @@ -# CABLES-GL - - Cables is a tool for creating beautiful interactive content. With an easy to navigate interface and real time visuals, it allows for rapid prototyping and fast adjustments. - - SITE: https://cables.gl - - SOURCE: https://github.com/cables-gl/cables_electron - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/cacher b/apps/cacher new file mode 100644 index 000000000..4158a640b --- /dev/null +++ b/apps/cacher @@ -0,0 +1,3 @@ +# cacher +Cacher is a code snippet library for professional developers. +# SITES: https://www.cacher.io/ \ No newline at end of file diff --git a/apps/cacher.md b/apps/cacher.md deleted file mode 100644 index ee72d729f..000000000 --- a/apps/cacher.md +++ /dev/null @@ -1,8 +0,0 @@ -# CACHER - - Cacher is a code snippet library for professional developers. - - SITE: https://www.cacher.io/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/cacoco b/apps/cacoco new file mode 100644 index 000000000..d7848c4e2 --- /dev/null +++ b/apps/cacoco @@ -0,0 +1,3 @@ +# cacoco +A (slightly, but aspirationally) finished SBARDEF editor. Mostly. +# SITES: https://github.com/lizzieshinkicker/Cacoco \ No newline at end of file diff --git a/apps/cacoco.md b/apps/cacoco.md deleted file mode 100644 index 0f80a2c30..000000000 --- a/apps/cacoco.md +++ /dev/null @@ -1,8 +0,0 @@ -# CACOCO - - A (slightly, but aspirationally) finished SBARDEF editor. Mostly. - - SITE: https://github.com/lizzieshinkicker/Cacoco - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/cadassistant b/apps/cadassistant new file mode 100644 index 000000000..7eaca1c90 --- /dev/null +++ b/apps/cadassistant @@ -0,0 +1,3 @@ +# cadassistant +Offline 3D CAD viewer and converter, free for personal and commercial use. +# SITES: https://www.opencascade.com \ No newline at end of file diff --git a/apps/cadassistant.md b/apps/cadassistant.md deleted file mode 100644 index 6532744ef..000000000 --- a/apps/cadassistant.md +++ /dev/null @@ -1,8 +0,0 @@ -# CADASSISTANT - - Offline 3D CAD viewer and converter, free for personal and commercial use. - - SITE: https://www.opencascade.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/cadmus b/apps/cadmus new file mode 100644 index 000000000..d1ed2ea2d --- /dev/null +++ b/apps/cadmus @@ -0,0 +1,3 @@ +# cadmus +A GUI frontend for @werman's Pulse Audio real-time noise suppression plugin +# SITES: https://github.com/josh-richardson/cadmus/ \ No newline at end of file diff --git a/apps/cadmus.md b/apps/cadmus.md deleted file mode 100644 index ae7007904..000000000 --- a/apps/cadmus.md +++ /dev/null @@ -1,8 +0,0 @@ -# CADMUS - - A GUI frontend for @werman's Pulse Audio real-time noise suppression plugin - - SITE: https://github.com/josh-richardson/cadmus/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/caesium b/apps/caesium new file mode 100644 index 000000000..2a927736d --- /dev/null +++ b/apps/caesium @@ -0,0 +1,5 @@ +# caesium +Caesium is an image compression software that helps you store, send and share digital pictures, supporting JPG, PNG, WebP and TIFF formats. + + You can quickly reduce the file size (and resolution, if you want) by preserving the overall quality of the image. +# SITES: https://github.com/larygwil/caesium-image-compressor \ No newline at end of file diff --git a/apps/caesium.md b/apps/caesium.md deleted file mode 100644 index 19683f807..000000000 --- a/apps/caesium.md +++ /dev/null @@ -1,10 +0,0 @@ -# CAESIUM - - Caesium is an image compression software that helps you store, send and share digital pictures, supporting JPG, PNG, WebP and TIFF formats. - - You can quickly reduce the file size (and resolution, if you want) by preserving the overall quality of the image. - - SITE: https://github.com/larygwil/caesium-image-compressor - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/cake-wallet b/apps/cake-wallet new file mode 100644 index 000000000..8394d8e6e --- /dev/null +++ b/apps/cake-wallet @@ -0,0 +1,3 @@ +# cake-wallet +Easily and safely store, send, receive, and exchange your cryptocurrency. +# SITES: https://github.com/cake-tech/cake_wallet \ No newline at end of file diff --git a/apps/cake-wallet.md b/apps/cake-wallet.md deleted file mode 100644 index 95ad00206..000000000 --- a/apps/cake-wallet.md +++ /dev/null @@ -1,8 +0,0 @@ -# CAKE-WALLET - - Easily and safely store, send, receive, and exchange your cryptocurrency. - - SITE: https://github.com/cake-tech/cake_wallet - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/calibre b/apps/calibre new file mode 100644 index 000000000..986483d32 --- /dev/null +++ b/apps/calibre @@ -0,0 +1,6 @@ +# calibre +Calibre is an e-book manager. It can view, convert, edit and catalog e-books in all of the major e-book formats. It can also talk to e-book reader devices. It can go out to the internet and fetch metadata for your books. It can download newspapers and convert them into e-books for convenient reading. It is cross platform, running on Linux, Windows and macOS. + + This is the unofficial AppImage built from the official portable package. +# SITES: https://calibre-ebook.com/ +# SOURCES: https://github.com/kovidgoyal/calibre https://github.com/ivan-hc/Calibre-appimage \ No newline at end of file diff --git a/apps/calibre-beta b/apps/calibre-beta new file mode 100644 index 000000000..f50e13cd7 --- /dev/null +++ b/apps/calibre-beta @@ -0,0 +1,6 @@ +# calibre-beta +Calibre is an e-book manager. It can view, convert, edit and catalog e-books in all of the major e-book formats. It can also talk to e-book reader devices. It can go out to the internet and fetch metadata for your books. It can download newspapers and convert them into e-books for convenient reading. It is cross platform, running on Linux, Windows and macOS. + + This is the unofficial AppImage built from the official Beta portable package. +# SITES: https://calibre-ebook.com/ +# SOURCES: https://github.com/kovidgoyal/calibre https://github.com/ivan-hc/Calibre-appimage \ No newline at end of file diff --git a/apps/calibre-beta.md b/apps/calibre-beta.md deleted file mode 100644 index 4ded55c92..000000000 --- a/apps/calibre-beta.md +++ /dev/null @@ -1,14 +0,0 @@ -# CALIBRE-BETA - - Calibre is an e-book manager. It can view, convert, edit and catalog e-books in all of the major e-book formats. It can also talk to e-book reader devices. It can go out to the internet and fetch metadata for your books. It can download newspapers and convert them into e-books for convenient reading. It is cross platform, running on Linux, Windows and macOS. - - This is the unofficial AppImage built from the official Beta portable package. - - SITE: https://calibre-ebook.com/ - - SOURCE: https://github.com/kovidgoyal/calibre - - APPIMAGE: https://github.com/ivan-hc/Calibre-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/calibre-preview b/apps/calibre-preview new file mode 100644 index 000000000..abbc9833c --- /dev/null +++ b/apps/calibre-preview @@ -0,0 +1,6 @@ +# calibre-preview +Calibre is an e-book manager. It can view, convert, edit and catalog e-books in all of the major e-book formats. It can also talk to e-book reader devices. It can go out to the internet and fetch metadata for your books. It can download newspapers and convert them into e-books for convenient reading. It is cross platform, running on Linux, Windows and macOS. + + This is the unofficial AppImage built from the official Preview portable package. +# SITES: https://calibre-ebook.com/ +# SOURCES: https://github.com/kovidgoyal/calibre https://github.com/ivan-hc/Calibre-appimage \ No newline at end of file diff --git a/apps/calibre-preview.md b/apps/calibre-preview.md deleted file mode 100644 index f46082f10..000000000 --- a/apps/calibre-preview.md +++ /dev/null @@ -1,14 +0,0 @@ -# CALIBRE-PREVIEW - - Calibre is an e-book manager. It can view, convert, edit and catalog e-books in all of the major e-book formats. It can also talk to e-book reader devices. It can go out to the internet and fetch metadata for your books. It can download newspapers and convert them into e-books for convenient reading. It is cross platform, running on Linux, Windows and macOS. - - This is the unofficial AppImage built from the official Preview portable package. - - SITE: https://calibre-ebook.com/ - - SOURCE: https://github.com/kovidgoyal/calibre - - APPIMAGE: https://github.com/ivan-hc/Calibre-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/calibre.md b/apps/calibre.md deleted file mode 100644 index 272c1d860..000000000 --- a/apps/calibre.md +++ /dev/null @@ -1,14 +0,0 @@ -# CALIBRE - - Calibre is an e-book manager. It can view, convert, edit and catalog e-books in all of the major e-book formats. It can also talk to e-book reader devices. It can go out to the internet and fetch metadata for your books. It can download newspapers and convert them into e-books for convenient reading. It is cross platform, running on Linux, Windows and macOS. - - This is the unofficial AppImage built from the official portable package. - - SITE: https://calibre-ebook.com/ - - SOURCE: https://github.com/kovidgoyal/calibre - - APPIMAGE: https://github.com/ivan-hc/Calibre-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/calligra b/apps/calligra new file mode 100644 index 000000000..177bf6c08 --- /dev/null +++ b/apps/calligra @@ -0,0 +1,3 @@ +# calligra +Calligra Suite is an office and graphic art suite by KDE. It contains applications for word processing, spreadsheets, presentation, vector graphics, and editing databases. +# SITES: https://github.com/lucasmz1/Calligra-Office-Appimage \ No newline at end of file diff --git a/apps/calligra.md b/apps/calligra.md deleted file mode 100644 index be5f436de..000000000 --- a/apps/calligra.md +++ /dev/null @@ -1,8 +0,0 @@ -# CALLIGRA - - Calligra Suite is an office and graphic art suite by KDE. It contains applications for word processing, spreadsheets, presentation, vector graphics, and editing databases. - - SITE: https://github.com/lucasmz1/Calligra-Office-Appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/calm-circles b/apps/calm-circles new file mode 100644 index 000000000..6e6e1835c --- /dev/null +++ b/apps/calm-circles @@ -0,0 +1,4 @@ +# calm-circles +Calm down and draw something, in Lisp. +# SCREENSHOTS: https://github.com/VitoVan/calm/blob/main/docs/images/linux-appimage.png +# SITES: https://github.com/VitoVan/calm \ No newline at end of file diff --git a/apps/calm-circles.md b/apps/calm-circles.md deleted file mode 100644 index 6040cc6ed..000000000 --- a/apps/calm-circles.md +++ /dev/null @@ -1,10 +0,0 @@ -# CALM-CIRCLES - - Calm down and draw something, in Lisp. - - ![Screenshot](https://github.com/VitoVan/calm/blob/main/docs/images/linux-appimage.png) - - SITE: https://github.com/VitoVan/calm - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/calm-fan b/apps/calm-fan new file mode 100644 index 000000000..f0fce28a1 --- /dev/null +++ b/apps/calm-fan @@ -0,0 +1,4 @@ +# calm-fan +Calm down and draw something, in Lisp. +# SCREENSHOTS: https://github.com/VitoVan/calm/blob/1.2.0/docs/examples/fan/canvas.png +# SITES: https://github.com/VitoVan/calm \ No newline at end of file diff --git a/apps/calm-fan.md b/apps/calm-fan.md deleted file mode 100644 index b1809b074..000000000 --- a/apps/calm-fan.md +++ /dev/null @@ -1,10 +0,0 @@ -# CALM-FAN - - Calm down and draw something, in Lisp. - - ![Screenshot](https://github.com/VitoVan/calm/blob/1.2.0/docs/examples/fan/canvas.png) - - SITE: https://github.com/VitoVan/calm - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/calm-meditator b/apps/calm-meditator new file mode 100644 index 000000000..1efe0115a --- /dev/null +++ b/apps/calm-meditator @@ -0,0 +1,4 @@ +# calm-meditator +Calm down and draw something, in Lisp. +# SCREENSHOTS: https://github.com/VitoVan/calm/blob/1.2.0/docs/examples/meditator/canvas.png +# SITES: https://github.com/VitoVan/calm \ No newline at end of file diff --git a/apps/calm-meditator.md b/apps/calm-meditator.md deleted file mode 100644 index 2fdbeda98..000000000 --- a/apps/calm-meditator.md +++ /dev/null @@ -1,10 +0,0 @@ -# CALM-MEDITATOR - - Calm down and draw something, in Lisp. - - ![Screenshot](https://github.com/VitoVan/calm/blob/1.2.0/docs/examples/meditator/canvas.png) - - SITE: https://github.com/VitoVan/calm - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/calm-mondrian b/apps/calm-mondrian new file mode 100644 index 000000000..225596be3 --- /dev/null +++ b/apps/calm-mondrian @@ -0,0 +1,4 @@ +# calm-mondrian +Calm down and draw something, in Lisp. +# SCREENSHOTS: https://github.com/VitoVan/calm/blob/1.2.0/docs/examples/mondrian/canvas.png +# SITES: https://github.com/VitoVan/calm \ No newline at end of file diff --git a/apps/calm-mondrian.md b/apps/calm-mondrian.md deleted file mode 100644 index 803e10625..000000000 --- a/apps/calm-mondrian.md +++ /dev/null @@ -1,10 +0,0 @@ -# CALM-MONDRIAN - - Calm down and draw something, in Lisp. - - ![Screenshot](https://github.com/VitoVan/calm/blob/1.2.0/docs/examples/mondrian/canvas.png) - - SITE: https://github.com/VitoVan/calm - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/camelot b/apps/camelot new file mode 100644 index 000000000..38d091dbb --- /dev/null +++ b/apps/camelot @@ -0,0 +1,3 @@ +# camelot +Camelot is cross-platform file manager written in C# +# SITES: https://github.com/IngvarX/Camelot \ No newline at end of file diff --git a/apps/camelot.md b/apps/camelot.md deleted file mode 100644 index 5a872ed84..000000000 --- a/apps/camelot.md +++ /dev/null @@ -1,8 +0,0 @@ -# CAMELOT - - Camelot is cross-platform file manager written in C# - - SITE: https://github.com/IngvarX/Camelot - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/candycrisis b/apps/candycrisis new file mode 100644 index 000000000..dc8e05652 --- /dev/null +++ b/apps/candycrisis @@ -0,0 +1,3 @@ +# candycrisis +Candy Crisis source port for modern operating systems. +# SITES: https://github.com/jorio/CandyCrisis \ No newline at end of file diff --git a/apps/candycrisis.md b/apps/candycrisis.md deleted file mode 100644 index dcca43b1f..000000000 --- a/apps/candycrisis.md +++ /dev/null @@ -1,8 +0,0 @@ -# CANDYCRISIS - - Candy Crisis source port for modern operating systems. - - SITE: https://github.com/jorio/CandyCrisis - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/cannonball b/apps/cannonball new file mode 100644 index 000000000..c2489c16c --- /dev/null +++ b/apps/cannonball @@ -0,0 +1,3 @@ +# cannonball +Cannonball: An Enhanced OutRun Engine. +# SITES: https://github.com/pkgforge-dev/Cannonball-AppImage \ No newline at end of file diff --git a/apps/cannonball.md b/apps/cannonball.md deleted file mode 100644 index 160c73e1a..000000000 --- a/apps/cannonball.md +++ /dev/null @@ -1,8 +0,0 @@ -# CANNONBALL - - Cannonball: An Enhanced OutRun Engine. - - SITE: https://github.com/pkgforge-dev/Cannonball-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/caprine b/apps/caprine new file mode 100644 index 000000000..c2934da56 --- /dev/null +++ b/apps/caprine @@ -0,0 +1,3 @@ +# caprine +Unofficial, but elegant and privacy focused Facebook Messenger app with +# SITES: https://github.com/sindresorhus/caprine \ No newline at end of file diff --git a/apps/caprine.md b/apps/caprine.md deleted file mode 100644 index 0e2589319..000000000 --- a/apps/caprine.md +++ /dev/null @@ -1,8 +0,0 @@ -# CAPRINE - - Unofficial, but elegant and privacy focused Facebook Messenger app with - - SITE: https://github.com/sindresorhus/caprine - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/carbonyl b/apps/carbonyl new file mode 100644 index 000000000..27fc3978e --- /dev/null +++ b/apps/carbonyl @@ -0,0 +1,3 @@ +# carbonyl +Chromium running inside your terminal +# SITES: https://github.com/fathyb/carbonyl \ No newline at end of file diff --git a/apps/carbonyl.md b/apps/carbonyl.md deleted file mode 100644 index 595413d58..000000000 --- a/apps/carbonyl.md +++ /dev/null @@ -1,8 +0,0 @@ -# CARBONYL - - Chromium running inside your terminal - - SITE: https://github.com/fathyb/carbonyl - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/cardo b/apps/cardo new file mode 100644 index 000000000..18de79283 --- /dev/null +++ b/apps/cardo @@ -0,0 +1,3 @@ +# cardo +Podcast client +# SITES: https://github.com/n0vella/cardo \ No newline at end of file diff --git a/apps/cardo.md b/apps/cardo.md deleted file mode 100644 index e82486fd3..000000000 --- a/apps/cardo.md +++ /dev/null @@ -1,8 +0,0 @@ -# CARDO - - Podcast client - - SITE: https://github.com/n0vella/cardo - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/cargo b/apps/cargo new file mode 100644 index 000000000..3c8a35bcf --- /dev/null +++ b/apps/cargo @@ -0,0 +1,3 @@ +# cargo +Converts your crate into an AppImage +# SITES: https://github.com/StratusFearMe21/cargo-appimage \ No newline at end of file diff --git a/apps/cargo.md b/apps/cargo.md deleted file mode 100644 index 60cd54cd8..000000000 --- a/apps/cargo.md +++ /dev/null @@ -1,8 +0,0 @@ -# CARGO - - Converts your crate into an AppImage - - SITE: https://github.com/StratusFearMe21/cargo-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/carpenters b/apps/carpenters new file mode 100644 index 000000000..4bbb84938 --- /dev/null +++ b/apps/carpenters @@ -0,0 +1,3 @@ +# carpenters +Digital preservation ingest utility +# SITES: https://github.com/uhlibraries-digital/carpenters \ No newline at end of file diff --git a/apps/carpenters.md b/apps/carpenters.md deleted file mode 100644 index f5c915fb5..000000000 --- a/apps/carpenters.md +++ /dev/null @@ -1,8 +0,0 @@ -# CARPENTERS - - Digital preservation ingest utility - - SITE: https://github.com/uhlibraries-digital/carpenters - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/carta b/apps/carta new file mode 100644 index 000000000..4f0a63538 --- /dev/null +++ b/apps/carta @@ -0,0 +1,3 @@ +# carta +Cube Analysis and Rendering Tool for Astronomy, is a next generation image visualization and analysis tool designed for ALMA, VLA, and SKA pathfinders. +# SITES: https://github.com/CARTAvis/carta \ No newline at end of file diff --git a/apps/carta.md b/apps/carta.md deleted file mode 100644 index 96421dc9c..000000000 --- a/apps/carta.md +++ /dev/null @@ -1,8 +0,0 @@ -# CARTA - - Cube Analysis and Rendering Tool for Astronomy, is a next generation image visualization and analysis tool designed for ALMA, VLA, and SKA pathfinders. - - SITE: https://github.com/CARTAvis/carta - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/cartridges b/apps/cartridges new file mode 100644 index 000000000..8a1ad21a3 --- /dev/null +++ b/apps/cartridges @@ -0,0 +1,3 @@ +# cartridges +Unofficial. Game launcher, which helps you visualize your game collection and easily launch games. +# SITES: https://github.com/pkgforge-dev/Cartridges-AppImage \ No newline at end of file diff --git a/apps/cartridges.md b/apps/cartridges.md deleted file mode 100644 index 3cce28cff..000000000 --- a/apps/cartridges.md +++ /dev/null @@ -1,8 +0,0 @@ -# CARTRIDGES - - Unofficial. Game launcher, which helps you visualize your game collection and easily launch games. - - SITE: https://github.com/pkgforge-dev/Cartridges-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/cashonize b/apps/cashonize new file mode 100644 index 000000000..dbcf3a649 --- /dev/null +++ b/apps/cashonize @@ -0,0 +1,3 @@ +# cashonize +Cashonize: A cross-platform Bitcoin Cash Wallet. +# SITES: https://github.com/cashonize/cashonize-wallet \ No newline at end of file diff --git a/apps/cashonize.md b/apps/cashonize.md deleted file mode 100644 index 06a211c47..000000000 --- a/apps/cashonize.md +++ /dev/null @@ -1,8 +0,0 @@ -# CASHONIZE - - Cashonize: A cross-platform Bitcoin Cash Wallet. - - SITE: https://github.com/cashonize/cashonize-wallet - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/cask b/apps/cask new file mode 100644 index 000000000..4564375d5 --- /dev/null +++ b/apps/cask @@ -0,0 +1,3 @@ +# cask +A universal, distributed binary file manager. 一个通用的去中心化二进制管理器 +# SITES: https://github.com/cask-pkg/cask.rs \ No newline at end of file diff --git a/apps/cask.md b/apps/cask.md deleted file mode 100644 index fe4bffbd5..000000000 --- a/apps/cask.md +++ /dev/null @@ -1,8 +0,0 @@ -# CASK - - A universal, distributed binary file manager. 一个通用的去中心化二进制管理器 - - SITE: https://github.com/cask-pkg/cask.rs - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/casm b/apps/casm new file mode 100644 index 000000000..6b8f99101 --- /dev/null +++ b/apps/casm @@ -0,0 +1,3 @@ +# casm +Corinthian Abstract State Machine (CASM) +# SITES: https://github.com/casm-lang/casm \ No newline at end of file diff --git a/apps/casm.md b/apps/casm.md deleted file mode 100644 index d4a93568c..000000000 --- a/apps/casm.md +++ /dev/null @@ -1,8 +0,0 @@ -# CASM - - Corinthian Abstract State Machine (CASM) - - SITE: https://github.com/casm-lang/casm - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/casterr b/apps/casterr new file mode 100644 index 000000000..8d21f18cc --- /dev/null +++ b/apps/casterr @@ -0,0 +1,3 @@ +# casterr +Screen recorder with the main goal of easing the process of recording and clipping your best moments in-game. +# SITES: https://casterr.sbond.co/ \ No newline at end of file diff --git a/apps/casterr.md b/apps/casterr.md deleted file mode 100644 index b65d80c10..000000000 --- a/apps/casterr.md +++ /dev/null @@ -1,8 +0,0 @@ -# CASTERR - - Screen recorder with the main goal of easing the process of recording and clipping your best moments in-game. - - SITE: https://casterr.sbond.co/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/castersoundboard b/apps/castersoundboard new file mode 100644 index 000000000..b2f59e8f0 --- /dev/null +++ b/apps/castersoundboard @@ -0,0 +1,3 @@ +# castersoundboard +A soundboard for hot-keying and playing back sounds (for podcasting). +# SITES: https://github.com/covarianttensor/CasterSoundboard \ No newline at end of file diff --git a/apps/castersoundboard.md b/apps/castersoundboard.md deleted file mode 100644 index bf2b7bd33..000000000 --- a/apps/castersoundboard.md +++ /dev/null @@ -1,8 +0,0 @@ -# CASTERSOUNDBOARD - - A soundboard for hot-keying and playing back sounds (for podcasting). - - SITE: https://github.com/covarianttensor/CasterSoundboard - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/cat b/apps/cat new file mode 100644 index 000000000..4d8abbcbe --- /dev/null +++ b/apps/cat @@ -0,0 +1,3 @@ +# cat +Concatenate files and print on the standard output. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/cat.md b/apps/cat.md deleted file mode 100644 index 94fec5b3f..000000000 --- a/apps/cat.md +++ /dev/null @@ -1,8 +0,0 @@ -# CAT - - Concatenate files and print on the standard output. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/catacombgl b/apps/catacombgl new file mode 100644 index 000000000..6ad5fc704 --- /dev/null +++ b/apps/catacombgl @@ -0,0 +1,3 @@ +# catacombgl +Unofficial, a source port with OpenGL graphics for Catacomb 3D (1991), The Catacomb Abyss (1992), The Catacomb Armageddon (1992) and The Catacomb Apocalypse (1993). +# SITES: https://github.com/pkgforge-dev/CatacombGL-AppImage \ No newline at end of file diff --git a/apps/catacombgl.md b/apps/catacombgl.md deleted file mode 100644 index e088554c9..000000000 --- a/apps/catacombgl.md +++ /dev/null @@ -1,8 +0,0 @@ -# CATACOMBGL - - Unofficial, a source port with OpenGL graphics for Catacomb 3D (1991), The Catacomb Abyss (1992), The Catacomb Armageddon (1992) and The Catacomb Apocalypse (1993). - - SITE: https://github.com/pkgforge-dev/CatacombGL-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/catalyst b/apps/catalyst new file mode 100644 index 000000000..42d5c0b61 --- /dev/null +++ b/apps/catalyst @@ -0,0 +1,4 @@ +# catalyst +A lightweight and user-focused web browser powered by Electron. +# SCREENSHOTS: https://user-images.githubusercontent.com/92550746/275655924-2ef60866-f851-41bb-9659-27b7779e7d3c.png +# SITES: https://github.com/CatalystDevOrg/Catalyst \ No newline at end of file diff --git a/apps/catalyst.md b/apps/catalyst.md deleted file mode 100644 index aa067589c..000000000 --- a/apps/catalyst.md +++ /dev/null @@ -1,10 +0,0 @@ -# CATALYST - - A lightweight and user-focused web browser powered by Electron. - - ![Screenshot](https://user-images.githubusercontent.com/92550746/275655924-2ef60866-f851-41bb-9659-27b7779e7d3c.png) - - SITE: https://github.com/CatalystDevOrg/Catalyst - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/catapult b/apps/catapult new file mode 100644 index 000000000..3ede3a8ad --- /dev/null +++ b/apps/catapult @@ -0,0 +1,3 @@ +# catapult +A cross-platform launcher for Cataclysm: DDA and BN +# SITES: https://github.com/qrrk/Catapult \ No newline at end of file diff --git a/apps/catapult.md b/apps/catapult.md deleted file mode 100644 index 88251f0b6..000000000 --- a/apps/catapult.md +++ /dev/null @@ -1,8 +0,0 @@ -# CATAPULT - - A cross-platform launcher for Cataclysm: DDA and BN - - SITE: https://github.com/qrrk/Catapult - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/catcher b/apps/catcher new file mode 100644 index 000000000..1af050caa --- /dev/null +++ b/apps/catcher @@ -0,0 +1,3 @@ +# catcher +CATcher is a software application used for peer-testing of software projects. +# SITES: https://github.com/testathor/CATcher \ No newline at end of file diff --git a/apps/catcher.md b/apps/catcher.md deleted file mode 100644 index e5ab0b751..000000000 --- a/apps/catcher.md +++ /dev/null @@ -1,8 +0,0 @@ -# CATCHER - - CATcher is a software application used for peer-testing of software projects. - - SITE: https://github.com/testathor/CATcher - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/catfish b/apps/catfish new file mode 100644 index 000000000..9fa677af0 --- /dev/null +++ b/apps/catfish @@ -0,0 +1,4 @@ +# catfish + Unofficial AppImage of catfish. +# SITES: https://github.com/pkgforge-dev/catfish-appimage +# SOURCES: https://github.com/pkgforge-dev/catfish-appimage \ No newline at end of file diff --git a/apps/catfish.md b/apps/catfish.md deleted file mode 100644 index 22ef8a39c..000000000 --- a/apps/catfish.md +++ /dev/null @@ -1,8 +0,0 @@ -# CATFISH - - Unofficial AppImage of catfish. - - SITE: https://github.com/pkgforge-dev/catfish-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/cavoke b/apps/cavoke new file mode 100644 index 000000000..22d323af5 --- /dev/null +++ b/apps/cavoke @@ -0,0 +1,3 @@ +# cavoke +Cavoke: A Platform for creating and hosting multiplayer turn-based board games. +# SITES: https://github.com/cavoke-project/cavoke \ No newline at end of file diff --git a/apps/cavoke.md b/apps/cavoke.md deleted file mode 100644 index bee9d9f7f..000000000 --- a/apps/cavoke.md +++ /dev/null @@ -1,8 +0,0 @@ -# CAVOKE - - Cavoke: A Platform for creating and hosting multiplayer turn-based board games. - - SITE: https://github.com/cavoke-project/cavoke - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/cbetar2 b/apps/cbetar2 new file mode 100644 index 000000000..df89c0bda --- /dev/null +++ b/apps/cbetar2 @@ -0,0 +1,3 @@ +# cbetar2 +A frontend + backend ePub viewer supporting fetching and displaying HTML as ePub. This (unofficial) app is also a Buddhist text viewer using CBETA backend API or offline DB. +# SITES: https://github.com/MrMYHuang/cbetar2 \ No newline at end of file diff --git a/apps/cbetar2.md b/apps/cbetar2.md deleted file mode 100644 index ed9d162b4..000000000 --- a/apps/cbetar2.md +++ /dev/null @@ -1,8 +0,0 @@ -# CBETAR2 - - A frontend + backend ePub viewer supporting fetching and displaying HTML as ePub. This (unofficial) app is also a Buddhist text viewer using CBETA backend API or offline DB. - - SITE: https://github.com/MrMYHuang/cbetar2 - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/cbird b/apps/cbird new file mode 100644 index 000000000..e0fb54f61 --- /dev/null +++ b/apps/cbird @@ -0,0 +1,3 @@ +# cbird +Command-line program for Content-Based Image Retrieval of images and videos. Includes tools for general search and de-duplication. +# SITES: https://github.com/scrubbbbs/cbird \ No newline at end of file diff --git a/apps/cbird.md b/apps/cbird.md deleted file mode 100644 index 0551a95d4..000000000 --- a/apps/cbird.md +++ /dev/null @@ -1,8 +0,0 @@ -# CBIRD - - Command-line program for Content-Based Image Retrieval of images and videos. Includes tools for general search and de-duplication. - - SITE: https://github.com/scrubbbbs/cbird - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/cccp b/apps/cccp new file mode 100644 index 000000000..a8f323eb4 --- /dev/null +++ b/apps/cccp @@ -0,0 +1,5 @@ +# cccp +Cortex Command - Open Source under GNU AGPL v3 + + A community-driven effort to continue the development of Cortex Command. +# SITES: https://github.com/cortex-command-community/Cortex-Command-Community-Project \ No newline at end of file diff --git a/apps/cccp.md b/apps/cccp.md deleted file mode 100644 index 20e089863..000000000 --- a/apps/cccp.md +++ /dev/null @@ -1,10 +0,0 @@ -# CCCP - - Cortex Command - Open Source under GNU AGPL v3 - - A community-driven effort to continue the development of Cortex Command. - - SITE: https://github.com/cortex-command-community/Cortex-Command-Community-Project - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/cdogs-sdl b/apps/cdogs-sdl new file mode 100644 index 000000000..2705a9131 --- /dev/null +++ b/apps/cdogs-sdl @@ -0,0 +1,3 @@ +# cdogs-sdl +Classic overhead run-and-gun game. +# SITES: https://github.com/pkgforge-dev/CDogs-SDL-AppImage \ No newline at end of file diff --git a/apps/cdogs-sdl.md b/apps/cdogs-sdl.md deleted file mode 100644 index 3c333bf33..000000000 --- a/apps/cdogs-sdl.md +++ /dev/null @@ -1,8 +0,0 @@ -# CDOGS-SDL - - Classic overhead run-and-gun game. - - SITE: https://github.com/pkgforge-dev/CDogs-SDL-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/celeste64 b/apps/celeste64 new file mode 100644 index 000000000..e21d8a229 --- /dev/null +++ b/apps/celeste64 @@ -0,0 +1,3 @@ +# celeste64 +A game made by the Celeste developers in a week(ish, closer to 2) +# SITES: https://github.com/ExOK/Celeste64 \ No newline at end of file diff --git a/apps/celeste64.md b/apps/celeste64.md deleted file mode 100644 index 9feb2fc92..000000000 --- a/apps/celeste64.md +++ /dev/null @@ -1,8 +0,0 @@ -# CELESTE64 - - A game made by the Celeste developers in a week(ish, closer to 2) - - SITE: https://github.com/ExOK/Celeste64 - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/celestia b/apps/celestia new file mode 100644 index 000000000..d3f3bf427 --- /dev/null +++ b/apps/celestia @@ -0,0 +1,5 @@ +# celestia +Celestia - Real time 3D space simulator. +# SCREENSHOTS: https://user-images.githubusercontent.com/88724353/235691487-02ce8287-0731-4690-ba1a-fbc7e6c8001a.jpg +# SITES: https://celestiaproject.space +# SOURCES: https://download.opensuse.org/repositories/home:/munix9/AppImage/ \ No newline at end of file diff --git a/apps/celestia-dev b/apps/celestia-dev new file mode 100644 index 000000000..8ea5e5190 --- /dev/null +++ b/apps/celestia-dev @@ -0,0 +1,4 @@ +# celestia-dev +Celestia - Real time 3D space simulator (Nightly build). +# SITES: https://celestiaproject.space +# SOURCES: https://download.opensuse.org/repositories/home:/munix9/AppImage/ \ No newline at end of file diff --git a/apps/celestia-dev.md b/apps/celestia-dev.md deleted file mode 100644 index ef722a28a..000000000 --- a/apps/celestia-dev.md +++ /dev/null @@ -1,10 +0,0 @@ -# CELESTIA-DEV - - Celestia - Real time 3D space simulator (Nightly build). - - SITE: https://celestiaproject.space - - SOURCE: https://download.opensuse.org/repositories/home:/munix9/AppImage/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/celestia-enanched b/apps/celestia-enanched new file mode 100644 index 000000000..144d761f0 --- /dev/null +++ b/apps/celestia-enanched @@ -0,0 +1,6 @@ +# celestia-enanched +Celestia is a Real-time 3D space simulator. + + This is an enhanced AppImage version with extra detailed maps. +# SCREENSHOTS: https://user-images.githubusercontent.com/88724353/235691609-21c4f609-b162-4c39-ae75-a233a441ec64.jpg +# SITES: https://github.com/ivan-hc/Celestia-appimage \ No newline at end of file diff --git a/apps/celestia-enanched.md b/apps/celestia-enanched.md deleted file mode 100644 index 7de3211d8..000000000 --- a/apps/celestia-enanched.md +++ /dev/null @@ -1,12 +0,0 @@ -# CELESTIA-ENANCHED - - Celestia is a Real-time 3D space simulator. - - This is an enhanced AppImage version with extra detailed maps. - - ![Screenshot](https://user-images.githubusercontent.com/88724353/235691609-21c4f609-b162-4c39-ae75-a233a441ec64.jpg) - - SITE: https://github.com/ivan-hc/Celestia-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/celestia.md b/apps/celestia.md deleted file mode 100644 index d5044985d..000000000 --- a/apps/celestia.md +++ /dev/null @@ -1,12 +0,0 @@ -# CELESTIA - - Celestia - Real time 3D space simulator. - - ![Screenshot](https://user-images.githubusercontent.com/88724353/235691487-02ce8287-0731-4690-ba1a-fbc7e6c8001a.jpg) - - SITE: https://celestiaproject.space - - SOURCE: https://download.opensuse.org/repositories/home:/munix9/AppImage/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/celoterminal-bin b/apps/celoterminal-bin new file mode 100644 index 000000000..19c437079 --- /dev/null +++ b/apps/celoterminal-bin @@ -0,0 +1,3 @@ +# celoterminal-bin +Celo Terminal (AppImage version) +# SITES: https://github.com/zviadm/celoterminal \ No newline at end of file diff --git a/apps/celoterminal-bin.md b/apps/celoterminal-bin.md deleted file mode 100644 index 4a7f55c8d..000000000 --- a/apps/celoterminal-bin.md +++ /dev/null @@ -1,8 +0,0 @@ -# CELOTERMINAL-BIN - - Celo Terminal (AppImage version) - - SITE: https://github.com/zviadm/celoterminal - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/cemu b/apps/cemu new file mode 100644 index 000000000..d74f3d354 --- /dev/null +++ b/apps/cemu @@ -0,0 +1,5 @@ +# cemu +Cemu, a Wii U emulator that is able to run most Wii U games and homebrew in a playable state. It's written in C/C++ and is being actively developed with new features and fixes to increase compatibility, convenience and usability. + + Cemu is currently only available for 64-bit Windows, Linux & macOS devices. +# SITES: https://github.com/cemu-project/Cemu \ No newline at end of file diff --git a/apps/cemu-enhanced b/apps/cemu-enhanced new file mode 100644 index 000000000..e2f7a1770 --- /dev/null +++ b/apps/cemu-enhanced @@ -0,0 +1,3 @@ +# cemu-enhanced +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. +# SITES: https://github.com/pkgforge-dev/Cemu-AppImage-Enhanced \ No newline at end of file diff --git a/apps/cemu-enhanced.md b/apps/cemu-enhanced.md deleted file mode 100644 index 269750c09..000000000 --- a/apps/cemu-enhanced.md +++ /dev/null @@ -1,8 +0,0 @@ -# CEMU-ENHANCED - - 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. - - SITE: https://github.com/pkgforge-dev/Cemu-AppImage-Enhanced - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/cemu.md b/apps/cemu.md deleted file mode 100644 index 8dee56076..000000000 --- a/apps/cemu.md +++ /dev/null @@ -1,10 +0,0 @@ -# CEMU - - Cemu, a Wii U emulator that is able to run most Wii U games and homebrew in a playable state. It's written in C/C++ and is being actively developed with new features and fixes to increase compatibility, convenience and usability. - - Cemu is currently only available for 64-bit Windows, Linux & macOS devices. - - SITE: https://github.com/cemu-project/Cemu - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/cerebral-debugger b/apps/cerebral-debugger new file mode 100644 index 000000000..db5edc771 --- /dev/null +++ b/apps/cerebral-debugger @@ -0,0 +1,3 @@ +# cerebral-debugger +Cerebral Debugger +# SITES: https://github.com/cerebral/cerebral-debugger \ No newline at end of file diff --git a/apps/cerebral-debugger.md b/apps/cerebral-debugger.md deleted file mode 100644 index 4761dd786..000000000 --- a/apps/cerebral-debugger.md +++ /dev/null @@ -1,8 +0,0 @@ -# CEREBRAL-DEBUGGER - - Cerebral Debugger - - SITE: https://github.com/cerebral/cerebral-debugger - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/cerebro b/apps/cerebro new file mode 100644 index 000000000..148d49558 --- /dev/null +++ b/apps/cerebro @@ -0,0 +1,3 @@ +# cerebro +Open-source productivity booster with a brain +# SITES: https://github.com/cerebroapp/cerebro \ No newline at end of file diff --git a/apps/cerebro.md b/apps/cerebro.md deleted file mode 100644 index f347e1dfa..000000000 --- a/apps/cerebro.md +++ /dev/null @@ -1,8 +0,0 @@ -# CEREBRO - - Open-source productivity booster with a brain - - SITE: https://github.com/cerebroapp/cerebro - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/chain-desktop-wallet b/apps/chain-desktop-wallet new file mode 100644 index 000000000..d193b445c --- /dev/null +++ b/apps/chain-desktop-wallet @@ -0,0 +1,3 @@ +# chain-desktop-wallet +Crypto.com DeFi Desktop Wallet. +# SITES: https://crypto.com/defi-wallet \ No newline at end of file diff --git a/apps/chain-desktop-wallet.md b/apps/chain-desktop-wallet.md deleted file mode 100644 index f58a6b6a7..000000000 --- a/apps/chain-desktop-wallet.md +++ /dev/null @@ -1,8 +0,0 @@ -# CHAIN-DESKTOP-WALLET - - Crypto.com DeFi Desktop Wallet. - - SITE: https://crypto.com/defi-wallet - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/chainx-signer b/apps/chainx-signer new file mode 100644 index 000000000..3fd1811b2 --- /dev/null +++ b/apps/chainx-signer @@ -0,0 +1,3 @@ +# chainx-signer +ChainX Signer manage ChainX account, sign and sign transactions. +# SITES: https://github.com/chainx-org/chainx-signer \ No newline at end of file diff --git a/apps/chainx-signer.md b/apps/chainx-signer.md deleted file mode 100644 index 759c8b662..000000000 --- a/apps/chainx-signer.md +++ /dev/null @@ -1,8 +0,0 @@ -# CHAINX-SIGNER - - ChainX Signer manage ChainX account, sign and sign transactions. - - SITE: https://github.com/chainx-org/chainx-signer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/chat-gpt b/apps/chat-gpt new file mode 100644 index 000000000..a32d82aa2 --- /dev/null +++ b/apps/chat-gpt @@ -0,0 +1,3 @@ +# chat-gpt +ChatGPT Desktop Application (Mac, Windows and Linux). +# SITES: https://nofwl.com/ \ No newline at end of file diff --git a/apps/chat-gpt.md b/apps/chat-gpt.md deleted file mode 100644 index 9d95b4bda..000000000 --- a/apps/chat-gpt.md +++ /dev/null @@ -1,8 +0,0 @@ -# CHAT-GPT - - ChatGPT Desktop Application (Mac, Windows and Linux). - - SITE: https://nofwl.com/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/chatall b/apps/chatall new file mode 100644 index 000000000..f6f0a8b90 --- /dev/null +++ b/apps/chatall @@ -0,0 +1,3 @@ +# chatall +Concurrently chat with ChatGPT, Bing Chat, bard, Alpaca, Vincuna, Claude, ChatGLM, MOSS, iFlytek Spark, ERNIE and more, discover the best answers. +# SITES: http://chatall.ai/ \ No newline at end of file diff --git a/apps/chatall.md b/apps/chatall.md deleted file mode 100644 index 4d7870564..000000000 --- a/apps/chatall.md +++ /dev/null @@ -1,8 +0,0 @@ -# CHATALL - - Concurrently chat with ChatGPT, Bing Chat, bard, Alpaca, Vincuna, Claude, ChatGLM, MOSS, iFlytek Spark, ERNIE and more, discover the best answers. - - SITE: http://chatall.ai/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/chatbox b/apps/chatbox new file mode 100644 index 000000000..cfaf088c1 --- /dev/null +++ b/apps/chatbox @@ -0,0 +1,3 @@ +# chatbox +Chatbox is a desktop app for GPT-4 / GPT-3.5 (OpenAI API) that supports Windows, Mac and Linux. +# SITES: https://github.com/Bin-Huang/chatbox \ No newline at end of file diff --git a/apps/chatbox.md b/apps/chatbox.md deleted file mode 100644 index a6c13e23c..000000000 --- a/apps/chatbox.md +++ /dev/null @@ -1,8 +0,0 @@ -# CHATBOX - - Chatbox is a desktop app for GPT-4 / GPT-3.5 (OpenAI API) that supports Windows, Mac and Linux. - - SITE: https://github.com/Bin-Huang/chatbox - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/chatgpt-next-web b/apps/chatgpt-next-web new file mode 100644 index 000000000..adf8da7b2 --- /dev/null +++ b/apps/chatgpt-next-web @@ -0,0 +1,6 @@ +# chatgpt-next-web +A cross-platform ChatGPT/Gemini UI (Web / PWA / Linux / Win / MacOS). + + 一键拥有你自己的跨平台 ChatGPT/Gemini 应用。 +# SCREENSHOTS: https://raw.githubusercontent.com/ChatGPTNextWeb/ChatGPT-Next-Web/main/docs/images/cover.png +# SITES: https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web \ No newline at end of file diff --git a/apps/chatgpt-next-web.md b/apps/chatgpt-next-web.md deleted file mode 100644 index 2bf0f761c..000000000 --- a/apps/chatgpt-next-web.md +++ /dev/null @@ -1,12 +0,0 @@ -# CHATGPT-NEXT-WEB - - A cross-platform ChatGPT/Gemini UI (Web / PWA / Linux / Win / MacOS). - - 一键拥有你自己的跨平台 ChatGPT/Gemini 应用。 - - ![Screenshot](https://raw.githubusercontent.com/ChatGPTNextWeb/ChatGPT-Next-Web/main/docs/images/cover.png) - - SITE: https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/chatpad-ai b/apps/chatpad-ai new file mode 100644 index 000000000..b8c4543d4 --- /dev/null +++ b/apps/chatpad-ai @@ -0,0 +1,3 @@ +# chatpad-ai +Not just another ChatGPT user-interface! +# SITES: https://chatpad.ai/ \ No newline at end of file diff --git a/apps/chatpad-ai.md b/apps/chatpad-ai.md deleted file mode 100644 index 2d8b75d46..000000000 --- a/apps/chatpad-ai.md +++ /dev/null @@ -1,8 +0,0 @@ -# CHATPAD-AI - - Not just another ChatGPT user-interface! - - SITE: https://chatpad.ai/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/chatterino2 b/apps/chatterino2 new file mode 100644 index 000000000..df8538088 --- /dev/null +++ b/apps/chatterino2 @@ -0,0 +1,4 @@ +# chatterino2 +Second installment of the Twitch chat client series + release appimage +# SITES: https://chatterino.com \ No newline at end of file diff --git a/apps/chatterino2-nightly b/apps/chatterino2-nightly new file mode 100644 index 000000000..b69cbbfcd --- /dev/null +++ b/apps/chatterino2-nightly @@ -0,0 +1,3 @@ +# chatterino2-nightly +Second installment of the Twitch chat client series nightly appimage +# SITES: https://chatterino.com \ No newline at end of file diff --git a/apps/chatterino2-nightly.md b/apps/chatterino2-nightly.md deleted file mode 100644 index 2f215ddaa..000000000 --- a/apps/chatterino2-nightly.md +++ /dev/null @@ -1,8 +0,0 @@ -# CHATTERINO2-NIGHTLY - - Second installment of the Twitch chat client series nightly appimage - - SITE: https://chatterino.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/chatterino2.md b/apps/chatterino2.md deleted file mode 100644 index bad123905..000000000 --- a/apps/chatterino2.md +++ /dev/null @@ -1,9 +0,0 @@ -# CHATTERINO2 - - Second installment of the Twitch chat client series - release appimage - - SITE: https://chatterino.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/chcon b/apps/chcon new file mode 100644 index 000000000..1f660b3b6 --- /dev/null +++ b/apps/chcon @@ -0,0 +1,4 @@ +# chcon + Security context. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/chcon.md b/apps/chcon.md deleted file mode 100644 index 5f95f54bf..000000000 --- a/apps/chcon.md +++ /dev/null @@ -1,8 +0,0 @@ -# CHCON - - Security context. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/cheat b/apps/cheat new file mode 100644 index 000000000..babfd638d --- /dev/null +++ b/apps/cheat @@ -0,0 +1,3 @@ +# cheat +cheat allows you to create and view interactive cheatsheets on the command-line. It was designed to help remind *nix system administrators of options for commands that they use frequently, but not frequently enough to remember. +# SITES: https://github.com/cheat/cheat \ No newline at end of file diff --git a/apps/cheat.md b/apps/cheat.md deleted file mode 100644 index af8d3c178..000000000 --- a/apps/cheat.md +++ /dev/null @@ -1,8 +0,0 @@ -# CHEAT - - cheat allows you to create and view interactive cheatsheets on the command-line. It was designed to help remind *nix system administrators of options for commands that they use frequently, but not frequently enough to remember. - - SITE: https://github.com/cheat/cheat - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/cheatbreaker b/apps/cheatbreaker new file mode 100644 index 000000000..4c3066228 --- /dev/null +++ b/apps/cheatbreaker @@ -0,0 +1,4 @@ +# cheatbreaker +The free FPS boosting modpack for Minecraft 1.7 & 1.8. +# SITES: https://cheatbreaker.net +# SOURCES: https://github.com/CheatBreakerNet/Launcher \ No newline at end of file diff --git a/apps/cheatbreaker.md b/apps/cheatbreaker.md deleted file mode 100644 index 1b6d0d19b..000000000 --- a/apps/cheatbreaker.md +++ /dev/null @@ -1,10 +0,0 @@ -# CHEATBREAKER - - The free FPS boosting modpack for Minecraft 1.7 & 1.8. - - SITE: https://cheatbreaker.net - - SOURCE: https://github.com/CheatBreakerNet/Launcher - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/checkra1n b/apps/checkra1n new file mode 100644 index 000000000..973f1c943 --- /dev/null +++ b/apps/checkra1n @@ -0,0 +1,4 @@ +# checkra1n +Jailbreak for iPhone 5s through iPhone X, iOS 12.0 and up. +# SCREENSHOTS: https://checkra.in/img/icon.png +# SITES: https://checkra.in/ \ No newline at end of file diff --git a/apps/checkra1n.md b/apps/checkra1n.md deleted file mode 100644 index 42aa00926..000000000 --- a/apps/checkra1n.md +++ /dev/null @@ -1,10 +0,0 @@ -# CHECKRA1N - - Jailbreak for iPhone 5s through iPhone X, iOS 12.0 and up. - - ![Screenshot](https://checkra.in/img/icon.png) - - SITE: https://checkra.in/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/chemcanvas b/apps/chemcanvas new file mode 100644 index 000000000..25d2ef67e --- /dev/null +++ b/apps/chemcanvas @@ -0,0 +1,3 @@ +# chemcanvas +A very intuitive 2D chemical drawing tool. +# SITES: https://github.com/ksharindam/chemcanvas \ No newline at end of file diff --git a/apps/chemcanvas.md b/apps/chemcanvas.md deleted file mode 100644 index e8d0c1c5a..000000000 --- a/apps/chemcanvas.md +++ /dev/null @@ -1,8 +0,0 @@ -# CHEMCANVAS - - A very intuitive 2D chemical drawing tool. - - SITE: https://github.com/ksharindam/chemcanvas - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/cherry-studio b/apps/cherry-studio new file mode 100644 index 000000000..75311a3f6 --- /dev/null +++ b/apps/cherry-studio @@ -0,0 +1,3 @@ +# cherry-studio +Agentic AI desktop with autonomous coding, intelligent automation, and unified access to frontier LLMs. +# SITES: https://github.com/CherryHQ/cherry-studio \ No newline at end of file diff --git a/apps/cherry-studio.md b/apps/cherry-studio.md deleted file mode 100644 index 00e0fcc70..000000000 --- a/apps/cherry-studio.md +++ /dev/null @@ -1,8 +0,0 @@ -# CHERRY-STUDIO - - Agentic AI desktop with autonomous coding, intelligent automation, and unified access to frontier LLMs. - - SITE: https://github.com/CherryHQ/cherry-studio - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/cherrytree b/apps/cherrytree new file mode 100644 index 000000000..b147391ab --- /dev/null +++ b/apps/cherrytree @@ -0,0 +1,3 @@ +# cherrytree +A hierarchical note taking application, featuring rich text and syntax highlighting, storing data in a single XML or SQLite file. +# SITES: https://www.giuspen.net/cherrytree/ \ No newline at end of file diff --git a/apps/cherrytree.md b/apps/cherrytree.md deleted file mode 100644 index e605dcef9..000000000 --- a/apps/cherrytree.md +++ /dev/null @@ -1,8 +0,0 @@ -# CHERRYTREE - - A hierarchical note taking application, featuring rich text and syntax highlighting, storing data in a single XML or SQLite file. - - SITE: https://www.giuspen.net/cherrytree/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/chess-tui b/apps/chess-tui new file mode 100644 index 000000000..93b32490a --- /dev/null +++ b/apps/chess-tui @@ -0,0 +1,3 @@ +# chess-tui +Play chess from your terminal. +# SITES: https://github.com/thomas-mauran/chess-tui \ No newline at end of file diff --git a/apps/chess-tui.md b/apps/chess-tui.md deleted file mode 100644 index e41e05984..000000000 --- a/apps/chess-tui.md +++ /dev/null @@ -1,8 +0,0 @@ -# CHESS-TUI - - Play chess from your terminal. - - SITE: https://github.com/thomas-mauran/chess-tui - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/chessmd b/apps/chessmd new file mode 100644 index 000000000..7ab8f650d --- /dev/null +++ b/apps/chessmd @@ -0,0 +1,3 @@ +# chessmd +Open source chess training software. Play against bots, analyze with engines, explore chess openings, and more. +# SITES: https://github.com/ChessMD/ChessMD \ No newline at end of file diff --git a/apps/chessmd.md b/apps/chessmd.md deleted file mode 100644 index 4b77576d9..000000000 --- a/apps/chessmd.md +++ /dev/null @@ -1,8 +0,0 @@ -# CHESSMD - - Open source chess training software. Play against bots, analyze with engines, explore chess openings, and more. - - SITE: https://github.com/ChessMD/ChessMD - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/chezmoi b/apps/chezmoi new file mode 100644 index 000000000..fa73b49db --- /dev/null +++ b/apps/chezmoi @@ -0,0 +1,3 @@ +# chezmoi +Manage your dotfiles across multiple diverse machines, securely. +# SITES: https://github.com/twpayne/chezmoi \ No newline at end of file diff --git a/apps/chezmoi.md b/apps/chezmoi.md deleted file mode 100644 index d7b91f60b..000000000 --- a/apps/chezmoi.md +++ /dev/null @@ -1,8 +0,0 @@ -# CHEZMOI - - Manage your dotfiles across multiple diverse machines, securely. - - SITE: https://github.com/twpayne/chezmoi - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/chgrp b/apps/chgrp new file mode 100644 index 000000000..d8bd2d989 --- /dev/null +++ b/apps/chgrp @@ -0,0 +1,4 @@ +# chgrp + Change group ownership. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/chgrp.md b/apps/chgrp.md deleted file mode 100644 index 17bafaed1..000000000 --- a/apps/chgrp.md +++ /dev/null @@ -1,8 +0,0 @@ -# CHGRP - - Change group ownership. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/chimeradesk b/apps/chimeradesk new file mode 100644 index 000000000..ef9d84283 --- /dev/null +++ b/apps/chimeradesk @@ -0,0 +1,6 @@ +# chimeradesk +Simple, fast and flexible DIY Remote Desktop software. + + For a version that supports KVM, see "chimeradesk-kvm". +# SCREENSHOTS: https://raw.githubusercontent.com/morrolinux/ChimeraDesk/main/media/ChimeraDesk_demo.gif +# SITES: https://github.com/morrolinux/ChimeraDesk \ No newline at end of file diff --git a/apps/chimeradesk-kvm b/apps/chimeradesk-kvm new file mode 100644 index 000000000..395b485f3 --- /dev/null +++ b/apps/chimeradesk-kvm @@ -0,0 +1,6 @@ +# chimeradesk-kvm +Simple, fast and flexible DIY Remote Desktop software. + + For a version without the KVM support, see "chimeradesk". +# SCREENSHOTS: https://raw.githubusercontent.com/morrolinux/ChimeraDesk/main/media/ChimeraDesk_demo.gif +# SITES: https://github.com/morrolinux/ChimeraDesk \ No newline at end of file diff --git a/apps/chimeradesk-kvm.md b/apps/chimeradesk-kvm.md deleted file mode 100644 index 6f276663a..000000000 --- a/apps/chimeradesk-kvm.md +++ /dev/null @@ -1,12 +0,0 @@ -# CHIMERADESK-KVM - - Simple, fast and flexible DIY Remote Desktop software. - - For a version without the KVM support, see "chimeradesk". - - ![GIF](https://raw.githubusercontent.com/morrolinux/ChimeraDesk/main/media/ChimeraDesk_demo.gif) - - SITE: https://github.com/morrolinux/ChimeraDesk - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/chimeradesk.md b/apps/chimeradesk.md deleted file mode 100644 index 5b1946553..000000000 --- a/apps/chimeradesk.md +++ /dev/null @@ -1,12 +0,0 @@ -# CHIMERADESK - - Simple, fast and flexible DIY Remote Desktop software. - - For a version that supports KVM, see "chimeradesk-kvm". - - ![GIF](https://raw.githubusercontent.com/morrolinux/ChimeraDesk/main/media/ChimeraDesk_demo.gif) - - SITE: https://github.com/morrolinux/ChimeraDesk - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/chmod b/apps/chmod new file mode 100644 index 000000000..e0aa186f7 --- /dev/null +++ b/apps/chmod @@ -0,0 +1,3 @@ +# chmod +Change file mode bits. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/chmod.md b/apps/chmod.md deleted file mode 100644 index f1bd97038..000000000 --- a/apps/chmod.md +++ /dev/null @@ -1,8 +0,0 @@ -# CHMOD - - Change file mode bits. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/chown b/apps/chown new file mode 100644 index 000000000..5d2fc8a5a --- /dev/null +++ b/apps/chown @@ -0,0 +1,3 @@ +# chown +Change file owner and group. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/chown.md b/apps/chown.md deleted file mode 100644 index 8a37467d3..000000000 --- a/apps/chown.md +++ /dev/null @@ -1,8 +0,0 @@ -# CHOWN - - Change file owner and group. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/chromium b/apps/chromium new file mode 100644 index 000000000..34f8c7227 --- /dev/null +++ b/apps/chromium @@ -0,0 +1,9 @@ +# chromium +Chromium is an open-source browser project that aims to build a safer, faster, and more stable way for all Internet users to experience the web. + + The Chromium projects include Chromium and Chromium OS, the open-source projects behind the Google Chrome browser and Google Chrome OS, the Brave, Web Browser, Microsoft Edge, Vivaldi Web Browser, Electron and many more. + + This is the Stable release built from the Snap package. +# SCREENSHOTS: https://upload.wikimedia.org/wikipedia/commons/6/6a/Chromium_96_Wikipedia_page_%28ungoogled-chromium%29_screenshot.png +# SITES: https://www.chromium.org +# SOURCES: https://github.com/ivan-hc/Chromium-Web-Browser-appimage \ No newline at end of file diff --git a/apps/chromium-beta b/apps/chromium-beta new file mode 100644 index 000000000..2395e83d3 --- /dev/null +++ b/apps/chromium-beta @@ -0,0 +1,9 @@ +# chromium-beta +Chromium is an open-source browser project that aims to build a safer, faster, and more stable way for all Internet users to experience the web. + + The Chromium projects include Chromium and Chromium OS, the open-source projects behind the Google Chrome browser and Google Chrome OS, the Brave, Web Browser, Microsoft Edge, Vivaldi Web Browser, Electron and many more. + + This is the Beta release built from the Snap package. +# SCREENSHOTS: https://upload.wikimedia.org/wikipedia/commons/6/6a/Chromium_96_Wikipedia_page_%28ungoogled-chromium%29_screenshot.png +# SITES: https://www.chromium.org +# SOURCES: https://github.com/ivan-hc/Chromium-Web-Browser-appimage \ No newline at end of file diff --git a/apps/chromium-beta.md b/apps/chromium-beta.md deleted file mode 100644 index fa56dc0eb..000000000 --- a/apps/chromium-beta.md +++ /dev/null @@ -1,16 +0,0 @@ -# CHROMIUM-BETA - - Chromium is an open-source browser project that aims to build a safer, faster, and more stable way for all Internet users to experience the web. - - The Chromium projects include Chromium and Chromium OS, the open-source projects behind the Google Chrome browser and Google Chrome OS, the Brave, Web Browser, Microsoft Edge, Vivaldi Web Browser, Electron and many more. - - This is the Beta release built from the Snap package. - - ![Screenshot](https://upload.wikimedia.org/wikipedia/commons/6/6a/Chromium_96_Wikipedia_page_%28ungoogled-chromium%29_screenshot.png) - - SITE: https://www.chromium.org - - SOURCE: https://github.com/ivan-hc/Chromium-Web-Browser-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/chromium-bsu b/apps/chromium-bsu new file mode 100644 index 000000000..a75f0196c --- /dev/null +++ b/apps/chromium-bsu @@ -0,0 +1,7 @@ +# chromium-bsu +Chromium B.S.U. is a fast paced, arcade-style, top-scrolling space shooter. + + This is the unofficial AppImage. +# SCREENSHOTS: https://upload.wikimedia.org/wikipedia/commons/2/2b/Chromium_BSU_2.jpg +# SITES: https://chromium-bsu.sourceforge.io +# SOURCES: https://github.com/ivan-hc/chromium-bsu-appimage \ No newline at end of file diff --git a/apps/chromium-bsu.md b/apps/chromium-bsu.md deleted file mode 100644 index fd5d632b5..000000000 --- a/apps/chromium-bsu.md +++ /dev/null @@ -1,14 +0,0 @@ -# CHROMIUM-BSU - - Chromium B.S.U. is a fast paced, arcade-style, top-scrolling space shooter. - - This is the unofficial AppImage. - - ![Screenshot](https://upload.wikimedia.org/wikipedia/commons/2/2b/Chromium_BSU_2.jpg) - - SITE: https://chromium-bsu.sourceforge.io - - SOURCE: https://github.com/ivan-hc/chromium-bsu-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/chromium-edge b/apps/chromium-edge new file mode 100644 index 000000000..1c14b9f4b --- /dev/null +++ b/apps/chromium-edge @@ -0,0 +1,9 @@ +# chromium-edge +Chromium is an open-source browser project that aims to build a safer, faster, and more stable way for all Internet users to experience the web. + + The Chromium projects include Chromium and Chromium OS, the open-source projects behind the Google Chrome browser and Google Chrome OS, the Brave, Web Browser, Microsoft Edge, Vivaldi Web Browser, Electron and many more. + + This is the Edge release built from the Snap package. +# SCREENSHOTS: https://upload.wikimedia.org/wikipedia/commons/6/6a/Chromium_96_Wikipedia_page_%28ungoogled-chromium%29_screenshot.png +# SITES: https://www.chromium.org +# SOURCES: https://github.com/ivan-hc/Chromium-Web-Browser-appimage \ No newline at end of file diff --git a/apps/chromium-edge.md b/apps/chromium-edge.md deleted file mode 100644 index 8338ee13e..000000000 --- a/apps/chromium-edge.md +++ /dev/null @@ -1,16 +0,0 @@ -# CHROMIUM-EDGE - - Chromium is an open-source browser project that aims to build a safer, faster, and more stable way for all Internet users to experience the web. - - The Chromium projects include Chromium and Chromium OS, the open-source projects behind the Google Chrome browser and Google Chrome OS, the Brave, Web Browser, Microsoft Edge, Vivaldi Web Browser, Electron and many more. - - This is the Edge release built from the Snap package. - - ![Screenshot](https://upload.wikimedia.org/wikipedia/commons/6/6a/Chromium_96_Wikipedia_page_%28ungoogled-chromium%29_screenshot.png) - - SITE: https://www.chromium.org - - SOURCE: https://github.com/ivan-hc/Chromium-Web-Browser-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/chromium-rc b/apps/chromium-rc new file mode 100644 index 000000000..640b2f8fb --- /dev/null +++ b/apps/chromium-rc @@ -0,0 +1,9 @@ +# chromium-rc +Chromium is an open-source browser project that aims to build a safer, faster, and more stable way for all Internet users to experience the web. + + The Chromium projects include Chromium and Chromium OS, the open-source projects behind the Google Chrome browser and Google Chrome OS, the Brave, Web Browser, Microsoft Edge, Vivaldi Web Browser, Electron and many more. + + This is the release Candidate (RC) built from the Snap package. +# SCREENSHOTS: https://upload.wikimedia.org/wikipedia/commons/6/6a/Chromium_96_Wikipedia_page_%28ungoogled-chromium%29_screenshot.png +# SITES: https://www.chromium.org +# SOURCES: https://github.com/ivan-hc/Chromium-Web-Browser-appimage \ No newline at end of file diff --git a/apps/chromium-rc.md b/apps/chromium-rc.md deleted file mode 100644 index 04457bab8..000000000 --- a/apps/chromium-rc.md +++ /dev/null @@ -1,16 +0,0 @@ -# CHROMIUM-RC - - Chromium is an open-source browser project that aims to build a safer, faster, and more stable way for all Internet users to experience the web. - - The Chromium projects include Chromium and Chromium OS, the open-source projects behind the Google Chrome browser and Google Chrome OS, the Brave, Web Browser, Microsoft Edge, Vivaldi Web Browser, Electron and many more. - - This is the release Candidate (RC) built from the Snap package. - - ![Screenshot](https://upload.wikimedia.org/wikipedia/commons/6/6a/Chromium_96_Wikipedia_page_%28ungoogled-chromium%29_screenshot.png) - - SITE: https://www.chromium.org - - SOURCE: https://github.com/ivan-hc/Chromium-Web-Browser-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/chromium.md b/apps/chromium.md deleted file mode 100644 index 936d1f248..000000000 --- a/apps/chromium.md +++ /dev/null @@ -1,16 +0,0 @@ -# CHROMIUM - - Chromium is an open-source browser project that aims to build a safer, faster, and more stable way for all Internet users to experience the web. - - The Chromium projects include Chromium and Chromium OS, the open-source projects behind the Google Chrome browser and Google Chrome OS, the Brave, Web Browser, Microsoft Edge, Vivaldi Web Browser, Electron and many more. - - This is the Stable release built from the Snap package. - - ![Screenshot](https://upload.wikimedia.org/wikipedia/commons/6/6a/Chromium_96_Wikipedia_page_%28ungoogled-chromium%29_screenshot.png) - - SITE: https://www.chromium.org - - SOURCE: https://github.com/ivan-hc/Chromium-Web-Browser-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/chroot b/apps/chroot new file mode 100644 index 000000000..39f0d848b --- /dev/null +++ b/apps/chroot @@ -0,0 +1,3 @@ +# chroot +Run command or interactive shell with special root. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/chroot.md b/apps/chroot.md deleted file mode 100644 index df18883ab..000000000 --- a/apps/chroot.md +++ /dev/null @@ -1,8 +0,0 @@ -# CHROOT - - Run command or interactive shell with special root. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/chrysalis-bin b/apps/chrysalis-bin new file mode 100644 index 000000000..04013878b --- /dev/null +++ b/apps/chrysalis-bin @@ -0,0 +1,3 @@ +# chrysalis-bin +Graphical configurator for Kaleidoscope-powered keyboards (AppImage) +# SITES: https://github.com/keyboardio/Chrysalis \ No newline at end of file diff --git a/apps/chrysalis-bin.md b/apps/chrysalis-bin.md deleted file mode 100644 index 639c986e7..000000000 --- a/apps/chrysalis-bin.md +++ /dev/null @@ -1,8 +0,0 @@ -# CHRYSALIS-BIN - - Graphical configurator for Kaleidoscope-powered keyboards (AppImage) - - SITE: https://github.com/keyboardio/Chrysalis - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ciaa-suite b/apps/ciaa-suite new file mode 100644 index 000000000..29fcd164c --- /dev/null +++ b/apps/ciaa-suite @@ -0,0 +1,3 @@ +# ciaa-suite +Makefile based IDE for embedded systems +# SITES: https://github.com/martinribelotta/embedded-ide-builder \ No newline at end of file diff --git a/apps/ciaa-suite.md b/apps/ciaa-suite.md deleted file mode 100644 index d131858da..000000000 --- a/apps/ciaa-suite.md +++ /dev/null @@ -1,8 +0,0 @@ -# CIAA-SUITE - - Makefile based IDE for embedded systems - - SITE: https://github.com/martinribelotta/embedded-ide-builder - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/cicada b/apps/cicada new file mode 100644 index 000000000..312dab702 --- /dev/null +++ b/apps/cicada @@ -0,0 +1,3 @@ +# cicada +An old-school bash-like Unix shell written in Rust +# SITES: https://github.com/mitnk/cicada \ No newline at end of file diff --git a/apps/cicada.md b/apps/cicada.md deleted file mode 100644 index 38092c797..000000000 --- a/apps/cicada.md +++ /dev/null @@ -1,8 +0,0 @@ -# CICADA - - An old-school bash-like Unix shell written in Rust - - SITE: https://github.com/mitnk/cicada - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/cine b/apps/cine new file mode 100644 index 000000000..5e86f0f9d --- /dev/null +++ b/apps/cine @@ -0,0 +1,4 @@ +# cine + Unofficial AppImage of Cine. +# SITES: https://github.com/pkgforge-dev/cine-appimage +# SOURCES: https://github.com/pkgforge-dev/cine-appimage \ No newline at end of file diff --git a/apps/cine.md b/apps/cine.md deleted file mode 100644 index 06d8075d2..000000000 --- a/apps/cine.md +++ /dev/null @@ -1,8 +0,0 @@ -# CINE - - Unofficial AppImage of Cine. - - SITE: https://github.com/pkgforge-dev/cine-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/cinelerra b/apps/cinelerra new file mode 100644 index 000000000..35c2a11fa --- /dev/null +++ b/apps/cinelerra @@ -0,0 +1,3 @@ +# cinelerra +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. +# SITES: https://cinelerra.org \ No newline at end of file diff --git a/apps/cinelerra.md b/apps/cinelerra.md deleted file mode 100644 index 5503a9b8a..000000000 --- a/apps/cinelerra.md +++ /dev/null @@ -1,8 +0,0 @@ -# CINELERRA - - 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. - - SITE: https://cinelerra.org - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/cinny b/apps/cinny new file mode 100644 index 000000000..f7862e9af --- /dev/null +++ b/apps/cinny @@ -0,0 +1,3 @@ +# cinny +Yet another matrix client for desktop +# SITES: https://github.com/cinnyapp/cinny-desktop \ No newline at end of file diff --git a/apps/cinny.md b/apps/cinny.md deleted file mode 100644 index 8ab14729d..000000000 --- a/apps/cinny.md +++ /dev/null @@ -1,8 +0,0 @@ -# CINNY - - Yet another matrix client for desktop - - SITE: https://github.com/cinnyapp/cinny-desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/circle-z b/apps/circle-z new file mode 100644 index 000000000..efb046247 --- /dev/null +++ b/apps/circle-z @@ -0,0 +1,3 @@ +# circle-z +A chat client for online math courses +# SITES: https://github.com/rossprogram/circle-z \ No newline at end of file diff --git a/apps/circle-z.md b/apps/circle-z.md deleted file mode 100644 index 599d66b3e..000000000 --- a/apps/circle-z.md +++ /dev/null @@ -1,8 +0,0 @@ -# CIRCLE-Z - - A chat client for online math courses - - SITE: https://github.com/rossprogram/circle-z - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/circuitblocks b/apps/circuitblocks new file mode 100644 index 000000000..58c692b42 --- /dev/null +++ b/apps/circuitblocks @@ -0,0 +1,3 @@ +# circuitblocks +A graphical programming interface that helps newbies get into embedded +# SITES: https://github.com/CircuitMess/CircuitBlocks \ No newline at end of file diff --git a/apps/circuitblocks.md b/apps/circuitblocks.md deleted file mode 100644 index 98a861d0a..000000000 --- a/apps/circuitblocks.md +++ /dev/null @@ -1,8 +0,0 @@ -# CIRCUITBLOCKS - - A graphical programming interface that helps newbies get into embedded - - SITE: https://github.com/CircuitMess/CircuitBlocks - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/city-hub b/apps/city-hub new file mode 100644 index 000000000..fa36f045b --- /dev/null +++ b/apps/city-hub @@ -0,0 +1,3 @@ +# city-hub +City Hub is your hub into everything on City Chain and the Smart City Platform. +# SITES: https://github.com/CityChainFoundation/city-hub \ No newline at end of file diff --git a/apps/city-hub.md b/apps/city-hub.md deleted file mode 100644 index fc8e0678c..000000000 --- a/apps/city-hub.md +++ /dev/null @@ -1,8 +0,0 @@ -# CITY-HUB - - City Hub is your hub into everything on City Chain and the Smart City Platform. - - SITE: https://github.com/CityChainFoundation/city-hub - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ciyue b/apps/ciyue new file mode 100644 index 000000000..1ff745017 --- /dev/null +++ b/apps/ciyue @@ -0,0 +1,3 @@ +# ciyue +A simple mdict dictionary. +# SITES: https://github.com/mumu-lhl/Ciyue \ No newline at end of file diff --git a/apps/ciyue.md b/apps/ciyue.md deleted file mode 100644 index 8beea8037..000000000 --- a/apps/ciyue.md +++ /dev/null @@ -1,8 +0,0 @@ -# CIYUE - - A simple mdict dictionary. - - SITE: https://github.com/mumu-lhl/Ciyue - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/cksum b/apps/cksum new file mode 100644 index 000000000..9528cf604 --- /dev/null +++ b/apps/cksum @@ -0,0 +1,4 @@ +# cksum + Compute and verify file checksums. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/cksum.md b/apps/cksum.md deleted file mode 100644 index b04e6db8c..000000000 --- a/apps/cksum.md +++ /dev/null @@ -1,8 +0,0 @@ -# CKSUM - - Compute and verify file checksums. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/clagrange b/apps/clagrange new file mode 100644 index 000000000..35df67a3c --- /dev/null +++ b/apps/clagrange @@ -0,0 +1,3 @@ +# clagrange +Lagrange is a cross-platform client for browsing Geminispace (CLI Version). +# SITES: https://github.com/skyjake/lagrange \ No newline at end of file diff --git a/apps/clagrange.md b/apps/clagrange.md deleted file mode 100644 index d0028988b..000000000 --- a/apps/clagrange.md +++ /dev/null @@ -1,8 +0,0 @@ -# CLAGRANGE - - Lagrange is a cross-platform client for browsing Geminispace (CLI Version). - - SITE: https://github.com/skyjake/lagrange - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/clamtk b/apps/clamtk new file mode 100644 index 000000000..b19d7b4a3 --- /dev/null +++ b/apps/clamtk @@ -0,0 +1,3 @@ +# clamtk +An easy to use, light-weight, on-demand virus scanner for Linux systems +# SITES: https://github.com/dave-theunsub/clamtk \ No newline at end of file diff --git a/apps/clamtk.md b/apps/clamtk.md deleted file mode 100644 index acc32ac67..000000000 --- a/apps/clamtk.md +++ /dev/null @@ -1,8 +0,0 @@ -# CLAMTK - - An easy to use, light-weight, on-demand virus scanner for Linux systems - - SITE: https://github.com/dave-theunsub/clamtk - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/clamui b/apps/clamui new file mode 100644 index 000000000..f4f9ef3c9 --- /dev/null +++ b/apps/clamui @@ -0,0 +1,11 @@ +# clamui +ClamUI is a modern Linux desktop application that provides a user-friendly graphical interface for the ClamAV antivirus command-line tool. Built with GTK4 and libadwaita for a native GNOME appearance. + + Features: + - Select files or directories to scan using the native file dialog + - Background scanning keeps the UI responsive during long scans + - Clear, readable display of scan results + - Graceful handling when ClamAV is not installed + - Modern Adwaita styling with proper GNOME integration +# SCREENSHOTS: https://github.com/linx-systems/clamui/blob/master/screenshots/main_view.png +# SITES: https://github.com/linx-systems/clamui \ No newline at end of file diff --git a/apps/clamui.md b/apps/clamui.md deleted file mode 100644 index 194d5379a..000000000 --- a/apps/clamui.md +++ /dev/null @@ -1,17 +0,0 @@ -# CLAMUI - - ClamUI is a modern Linux desktop application that provides a user-friendly graphical interface for the ClamAV antivirus command-line tool. Built with GTK4 and libadwaita for a native GNOME appearance. - - Features: - - Select files or directories to scan using the native file dialog - - Background scanning keeps the UI responsive during long scans - - Clear, readable display of scan results - - Graceful handling when ClamAV is not installed - - Modern Adwaita styling with proper GNOME integration - - ![Screenshot](https://github.com/linx-systems/clamui/blob/master/screenshots/main_view.png) - - SITE: https://github.com/linx-systems/clamui - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/clapper b/apps/clapper new file mode 100644 index 000000000..8f1e11df8 --- /dev/null +++ b/apps/clapper @@ -0,0 +1,3 @@ +# clapper +Unofficial. A modern media player designed for simplicity and ease of use. +# SITES: https://github.com/pkgforge-dev/Clapper-AppImage \ No newline at end of file diff --git a/apps/clapper.md b/apps/clapper.md deleted file mode 100644 index da5a3d909..000000000 --- a/apps/clapper.md +++ /dev/null @@ -1,8 +0,0 @@ -# CLAPPER - - Unofficial. A modern media player designed for simplicity and ease of use. - - SITE: https://github.com/pkgforge-dev/Clapper-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/clash-nyanpasu b/apps/clash-nyanpasu new file mode 100644 index 000000000..93e62ccfb --- /dev/null +++ b/apps/clash-nyanpasu @@ -0,0 +1,3 @@ +# clash-nyanpasu +A Clash GUI based on tauri. +# SITES: https://github.com/libnyanpasu/clash-nyanpasu \ No newline at end of file diff --git a/apps/clash-nyanpasu.md b/apps/clash-nyanpasu.md deleted file mode 100644 index dc6d4b200..000000000 --- a/apps/clash-nyanpasu.md +++ /dev/null @@ -1,8 +0,0 @@ -# CLASH-NYANPASU - - A Clash GUI based on tauri. - - SITE: https://github.com/libnyanpasu/clash-nyanpasu - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/clash-verge b/apps/clash-verge new file mode 100644 index 000000000..c9a617d7e --- /dev/null +++ b/apps/clash-verge @@ -0,0 +1,3 @@ +# clash-verge +A Clash GUI based on tauri. Supports Windows, macOS and Linux. +# SITES: https://github.com/zzzgydi/clash-verge \ No newline at end of file diff --git a/apps/clash-verge.md b/apps/clash-verge.md deleted file mode 100644 index db64c9d42..000000000 --- a/apps/clash-verge.md +++ /dev/null @@ -1,8 +0,0 @@ -# CLASH-VERGE - - A Clash GUI based on tauri. Supports Windows, macOS and Linux. - - SITE: https://github.com/zzzgydi/clash-verge - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/classicimageviewer b/apps/classicimageviewer new file mode 100644 index 000000000..f34e75a6c --- /dev/null +++ b/apps/classicimageviewer @@ -0,0 +1,3 @@ +# classicimageviewer +A simple image viewer for Linux with some editing features. +# SITES: https://github.com/classicimageviewer/ClassicImageViewer \ No newline at end of file diff --git a/apps/classicimageviewer.md b/apps/classicimageviewer.md deleted file mode 100644 index 59ef0d67c..000000000 --- a/apps/classicimageviewer.md +++ /dev/null @@ -1,8 +0,0 @@ -# CLASSICIMAGEVIEWER - - A simple image viewer for Linux with some editing features. - - SITE: https://github.com/classicimageviewer/ClassicImageViewer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/classicube b/apps/classicube new file mode 100644 index 000000000..444b79723 --- /dev/null +++ b/apps/classicube @@ -0,0 +1,3 @@ +# classicube +Unofficial, Custom Minecraft Classic / ClassiCube client written in C from scratch +# SITES: https://github.com/pkgforge-dev/ClassiCube-AppImage \ No newline at end of file diff --git a/apps/classicube.md b/apps/classicube.md deleted file mode 100644 index e9a00c147..000000000 --- a/apps/classicube.md +++ /dev/null @@ -1,8 +0,0 @@ -# CLASSICUBE - - Unofficial, Custom Minecraft Classic / ClassiCube client written in C from scratch - - SITE: https://github.com/pkgforge-dev/ClassiCube-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/classipod b/apps/classipod new file mode 100644 index 000000000..4978b8d1b --- /dev/null +++ b/apps/classipod @@ -0,0 +1,3 @@ +# classipod +A local music player app designed to capture the nostalgic essence of the iconic iPod Classic. +# SITES: https://github.com/adeeteya/Classipod \ No newline at end of file diff --git a/apps/classipod.md b/apps/classipod.md deleted file mode 100644 index 68dcd6825..000000000 --- a/apps/classipod.md +++ /dev/null @@ -1,8 +0,0 @@ -# CLASSIPOD - - A local music player app designed to capture the nostalgic essence of the iconic iPod Classic. - - SITE: https://github.com/adeeteya/Classipod - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/claude-code b/apps/claude-code new file mode 100644 index 000000000..0585d1f71 --- /dev/null +++ b/apps/claude-code @@ -0,0 +1,4 @@ +# claude-code + Unofficial AppImage of claude-code. +# SITES: https://github.com/pkgforge-dev/claude-code-appimage +# SOURCES: https://github.com/pkgforge-dev/claude-code-appimage \ No newline at end of file diff --git a/apps/claude-code.md b/apps/claude-code.md deleted file mode 100644 index 84239a2fe..000000000 --- a/apps/claude-code.md +++ /dev/null @@ -1,8 +0,0 @@ -# CLAUDE-CODE - - Unofficial AppImage of claude-code. - - SITE: https://github.com/pkgforge-dev/claude-code-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/claude-desktop b/apps/claude-desktop new file mode 100644 index 000000000..8c00f5723 --- /dev/null +++ b/apps/claude-desktop @@ -0,0 +1,3 @@ +# claude-desktop +Claude Desktop for Debian-based Linux distributions. +# SITES: https://github.com/aaddrick/claude-desktop-debian \ No newline at end of file diff --git a/apps/claude-desktop.md b/apps/claude-desktop.md deleted file mode 100644 index 84e663baa..000000000 --- a/apps/claude-desktop.md +++ /dev/null @@ -1,12 +0,0 @@ -# CLAUDE-DESKTOP - - Unofficial AppImages, 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. - - This script lets you choose between two different implementations. - - SITE: https://github.com/aaddrick/claude-desktop-debian - - SITE: https://github.com/patrickjaja/claude-desktop-bin - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/clear b/apps/clear new file mode 100644 index 000000000..4a577fc75 --- /dev/null +++ b/apps/clear @@ -0,0 +1,3 @@ +# clear +Clear the terminal screen. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/clear.md b/apps/clear.md deleted file mode 100644 index ff08c493b..000000000 --- a/apps/clear.md +++ /dev/null @@ -1,8 +0,0 @@ -# CLEAR - - Clear the terminal screen. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/cleepdesktop b/apps/cleepdesktop new file mode 100644 index 000000000..20b3a4a5a --- /dev/null +++ b/apps/cleepdesktop @@ -0,0 +1,3 @@ +# cleepdesktop +Desktop application to manage your Cleep devices +# SITES: https://github.com/tangb/CleepDesktop \ No newline at end of file diff --git a/apps/cleepdesktop.md b/apps/cleepdesktop.md deleted file mode 100644 index 6dbffcfb7..000000000 --- a/apps/cleepdesktop.md +++ /dev/null @@ -1,8 +0,0 @@ -# CLEEPDESKTOP - - Desktop application to manage your Cleep devices - - SITE: https://github.com/tangb/CleepDesktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/clementine b/apps/clementine new file mode 100644 index 000000000..8979331af --- /dev/null +++ b/apps/clementine @@ -0,0 +1,3 @@ +# clementine +Unofficial AppImage of the Clementine music player. +# SITES: https://github.com/pkgforge-dev/Clementine-AppImage \ No newline at end of file diff --git a/apps/clementine.md b/apps/clementine.md deleted file mode 100644 index 1275ea9e0..000000000 --- a/apps/clementine.md +++ /dev/null @@ -1,8 +0,0 @@ -# CLEMENTINE - - Unofficial AppImage of the Clementine music player. - - SITE: https://github.com/pkgforge-dev/Clementine-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/clementineremote b/apps/clementineremote new file mode 100644 index 000000000..ae43b465d --- /dev/null +++ b/apps/clementineremote @@ -0,0 +1,3 @@ +# clementineremote +Remote for Clementine Music Player +# SITES: https://github.com/mbruel/ClementineRemote \ No newline at end of file diff --git a/apps/clementineremote.md b/apps/clementineremote.md deleted file mode 100644 index 49d804596..000000000 --- a/apps/clementineremote.md +++ /dev/null @@ -1,8 +0,0 @@ -# CLEMENTINEREMOTE - - Remote for Clementine Music Player - - SITE: https://github.com/mbruel/ClementineRemote - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/clifm b/apps/clifm new file mode 100644 index 000000000..2f3b68011 --- /dev/null +++ b/apps/clifm @@ -0,0 +1,3 @@ +# clifm +The shell-like, command line terminal file manager: simple, fast, extensible, and lightweight as hell. +# SITES: https://github.com/leo-arch/clifm \ No newline at end of file diff --git a/apps/clifm.md b/apps/clifm.md deleted file mode 100644 index 9e4e0b93e..000000000 --- a/apps/clifm.md +++ /dev/null @@ -1,8 +0,0 @@ -# CLIFM - - The shell-like, command line terminal file manager: simple, fast, extensible, and lightweight as hell. - - SITE: https://github.com/leo-arch/clifm - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/cliniface b/apps/cliniface new file mode 100644 index 000000000..5a909bc53 --- /dev/null +++ b/apps/cliniface @@ -0,0 +1,3 @@ +# cliniface +3D Facial Image Visualisation and Analysis +# SITES: https://cliniface.org/ \ No newline at end of file diff --git a/apps/cliniface.md b/apps/cliniface.md deleted file mode 100644 index 08462cc47..000000000 --- a/apps/cliniface.md +++ /dev/null @@ -1,8 +0,0 @@ -# CLINIFACE - - 3D Facial Image Visualisation and Analysis - - SITE: https://cliniface.org/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/clipgrab b/apps/clipgrab new file mode 100644 index 000000000..2b36a4b19 --- /dev/null +++ b/apps/clipgrab @@ -0,0 +1,3 @@ +# clipgrab +Download and Convert Online Videos +# SITES: https://clipgrab.org/ \ No newline at end of file diff --git a/apps/clipgrab.md b/apps/clipgrab.md deleted file mode 100644 index 20e2731f2..000000000 --- a/apps/clipgrab.md +++ /dev/null @@ -1,8 +0,0 @@ -# CLIPGRAB - - Download and Convert Online Videos - - SITE: https://clipgrab.org/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/clippy b/apps/clippy new file mode 100644 index 000000000..b2d1d5e91 --- /dev/null +++ b/apps/clippy @@ -0,0 +1,3 @@ +# clippy +Clipboard History +# SITES: https://github.com/ikouchiha47/clippy \ No newline at end of file diff --git a/apps/clippy.md b/apps/clippy.md deleted file mode 100644 index d4d8add55..000000000 --- a/apps/clippy.md +++ /dev/null @@ -1,8 +0,0 @@ -# CLIPPY - - Clipboard History - - SITE: https://github.com/ikouchiha47/clippy - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/clipr b/apps/clipr new file mode 100644 index 000000000..8dd94918c --- /dev/null +++ b/apps/clipr @@ -0,0 +1,3 @@ +# clipr +The clipboard that syncs! +# SITES: https://github.com/clipr/clipr \ No newline at end of file diff --git a/apps/clipr.md b/apps/clipr.md deleted file mode 100644 index 81dbd1812..000000000 --- a/apps/clipr.md +++ /dev/null @@ -1,8 +0,0 @@ -# CLIPR - - The clipboard that syncs! - - SITE: https://github.com/clipr/clipr - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/clipse b/apps/clipse new file mode 100644 index 000000000..a7bb73e54 --- /dev/null +++ b/apps/clipse @@ -0,0 +1,3 @@ +# clipse +Configurable TUI clipboard manager for Unix +# SITES: https://github.com/savedra1/clipse \ No newline at end of file diff --git a/apps/clipse.md b/apps/clipse.md deleted file mode 100644 index e93cf50f9..000000000 --- a/apps/clipse.md +++ /dev/null @@ -1,8 +0,0 @@ -# CLIPSE - - Configurable TUI clipboard manager for Unix - - SITE: https://github.com/savedra1/clipse - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/clk b/apps/clk new file mode 100644 index 000000000..60d0746b8 --- /dev/null +++ b/apps/clk @@ -0,0 +1,3 @@ +# clk +Unofficial, a latency hating emulator for 8 and 16 bit platforms. +# SITES: https://github.com/pkgforge-dev/CLK-AppImage \ No newline at end of file diff --git a/apps/clk.md b/apps/clk.md deleted file mode 100644 index 8bf14feda..000000000 --- a/apps/clk.md +++ /dev/null @@ -1,8 +0,0 @@ -# CLK - - Unofficial, a latency hating emulator for 8 and 16 bit platforms. - - SITE: https://github.com/pkgforge-dev/CLK-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/cloud-browser b/apps/cloud-browser new file mode 100644 index 000000000..1b0d02541 --- /dev/null +++ b/apps/cloud-browser @@ -0,0 +1,3 @@ +# cloud-browser +Access to files located in various cloud services +# SITES: https://github.com/lemourin/libcloudstorage \ No newline at end of file diff --git a/apps/cloud-browser.md b/apps/cloud-browser.md deleted file mode 100644 index 810b31231..000000000 --- a/apps/cloud-browser.md +++ /dev/null @@ -1,8 +0,0 @@ -# CLOUD-BROWSER - - Access to files located in various cloud services - - SITE: https://github.com/lemourin/libcloudstorage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/clownmaped b/apps/clownmaped new file mode 100644 index 000000000..8193b9d81 --- /dev/null +++ b/apps/clownmaped @@ -0,0 +1,3 @@ +# clownmaped +Sonic the Hedgehog sprite editor, portable clone of Xenowhirl's SonMapEd. +# SITES: https://github.com/Clownacy/ClownMapEd \ No newline at end of file diff --git a/apps/clownmaped.md b/apps/clownmaped.md deleted file mode 100644 index 286182d8c..000000000 --- a/apps/clownmaped.md +++ /dev/null @@ -1,8 +0,0 @@ -# CLOWNMAPED - - Sonic the Hedgehog sprite editor, portable clone of Xenowhirl's SonMapEd. - - SITE: https://github.com/Clownacy/ClownMapEd - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/clownmdemu b/apps/clownmdemu new file mode 100644 index 000000000..84c0058d4 --- /dev/null +++ b/apps/clownmdemu @@ -0,0 +1,3 @@ +# clownmdemu +Reference standalone frontend for clownmdemu. +# SITES: https://github.com/Clownacy/clownmdemu-frontend \ No newline at end of file diff --git a/apps/clownmdemu-enhanced b/apps/clownmdemu-enhanced new file mode 100644 index 000000000..2f8a71c8d --- /dev/null +++ b/apps/clownmdemu-enhanced @@ -0,0 +1,3 @@ +# clownmdemu-enhanced +Unofficial, reference standalone frontend for clownmdemu. +# SITES: https://github.com/pkgforge-dev/ClownMDEmu-AppImage-Enhanced \ No newline at end of file diff --git a/apps/clownmdemu-enhanced.md b/apps/clownmdemu-enhanced.md deleted file mode 100644 index c9317e887..000000000 --- a/apps/clownmdemu-enhanced.md +++ /dev/null @@ -1,8 +0,0 @@ -# CLOWNMDEMU-ENHANCED - - Unofficial, reference standalone frontend for clownmdemu. - - SITE: https://github.com/pkgforge-dev/ClownMDEmu-AppImage-Enhanced - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/clownmdemu.md b/apps/clownmdemu.md deleted file mode 100644 index 3a6ed291c..000000000 --- a/apps/clownmdemu.md +++ /dev/null @@ -1,8 +0,0 @@ -# CLOWNMDEMU - - Reference standalone frontend for clownmdemu. - - SITE: https://github.com/Clownacy/clownmdemu-frontend - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/cmux b/apps/cmux new file mode 100644 index 000000000..d4c017937 --- /dev/null +++ b/apps/cmux @@ -0,0 +1,3 @@ +# cmux +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. +# SITES: https://github.com/manaflow-ai/manaflow \ No newline at end of file diff --git a/apps/cmux.md b/apps/cmux.md deleted file mode 100644 index d8103c615..000000000 --- a/apps/cmux.md +++ /dev/null @@ -1,8 +0,0 @@ -# CMUX - - 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. - - SITE: https://github.com/manaflow-ai/manaflow - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/cncjs b/apps/cncjs new file mode 100644 index 000000000..9395a92b8 --- /dev/null +++ b/apps/cncjs @@ -0,0 +1,3 @@ +# cncjs +CNC Milling Controller +# SITES: https://github.com/cncjs/cncjs \ No newline at end of file diff --git a/apps/cncjs.md b/apps/cncjs.md deleted file mode 100644 index 2a04dc298..000000000 --- a/apps/cncjs.md +++ /dev/null @@ -1,8 +0,0 @@ -# CNCJS - - CNC Milling Controller - - SITE: https://github.com/cncjs/cncjs - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/cncra2yr b/apps/cncra2yr new file mode 100644 index 000000000..1a33432a2 --- /dev/null +++ b/apps/cncra2yr @@ -0,0 +1,3 @@ +# cncra2yr +C&C Red Alert 2, a real-time strategy game by Westwood Pacific. +# SITES: https://github.com/mmtrt/cncra2yr_AppImage \ No newline at end of file diff --git a/apps/cncra2yr.md b/apps/cncra2yr.md deleted file mode 100644 index d8e67bb0c..000000000 --- a/apps/cncra2yr.md +++ /dev/null @@ -1,8 +0,0 @@ -# CNCRA2YR - - C&C Red Alert 2, a real-time strategy game by Westwood Pacific. - - SITE: https://github.com/mmtrt/cncra2yr_AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/coal-launcher b/apps/coal-launcher new file mode 100644 index 000000000..9ffaa4e9d --- /dev/null +++ b/apps/coal-launcher @@ -0,0 +1,3 @@ +# coal-launcher +A client to view and play games from the AB Coal website. +# SITES: https://bobuxstation.github.io/Coal-Web/launcher.html \ No newline at end of file diff --git a/apps/coal-launcher.md b/apps/coal-launcher.md deleted file mode 100644 index 9bbc09457..000000000 --- a/apps/coal-launcher.md +++ /dev/null @@ -1,8 +0,0 @@ -# COAL-LAUNCHER - - A client to view and play games from the AB Coal website. - - SITE: https://bobuxstation.github.io/Coal-Web/launcher.html - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/code b/apps/code new file mode 100644 index 000000000..ef51479f5 --- /dev/null +++ b/apps/code @@ -0,0 +1,6 @@ +# code +Visual Studio Code (vscode): Editor for building and debugging modern web and cloud applications. + + This is the OFFICIAL binary version| +# SCREENSHOTS: https://user-images.githubusercontent.com/35271042/118224532-3842c400-b438-11eb-923d-a5f66fa6785a.png +# SITES: https://code.visualstudio.com/ \ No newline at end of file diff --git a/apps/code-expert-sync b/apps/code-expert-sync new file mode 100644 index 000000000..d42446203 --- /dev/null +++ b/apps/code-expert-sync @@ -0,0 +1,3 @@ +# code-expert-sync +Allows syncing of Code Expert projects to a local file system. +# SITES: https://github.com/CodeExpertETH/CodeExpertSync \ No newline at end of file diff --git a/apps/code-expert-sync.md b/apps/code-expert-sync.md deleted file mode 100644 index edc675614..000000000 --- a/apps/code-expert-sync.md +++ /dev/null @@ -1,8 +0,0 @@ -# CODE-EXPERT-SYNC - - Allows syncing of Code Expert projects to a local file system. - - SITE: https://github.com/CodeExpertETH/CodeExpertSync - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/code-notes b/apps/code-notes new file mode 100644 index 000000000..9620ea8bf --- /dev/null +++ b/apps/code-notes @@ -0,0 +1,3 @@ +# code-notes +A simple code snippet and gist manager for developers built with Electron +# SITES: https://github.com/lauthieb/code-notes \ No newline at end of file diff --git a/apps/code-notes.md b/apps/code-notes.md deleted file mode 100644 index e6e87b1b7..000000000 --- a/apps/code-notes.md +++ /dev/null @@ -1,8 +0,0 @@ -# CODE-NOTES - - A simple code snippet and gist manager for developers built with Electron - - SITE: https://github.com/lauthieb/code-notes - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/code-radio b/apps/code-radio new file mode 100644 index 000000000..12ed25f63 --- /dev/null +++ b/apps/code-radio @@ -0,0 +1,3 @@ +# code-radio +🎵 A command line music radio client for coderadio.freecodecamp.org, written in Rust. +# SITES: https://github.com/JasonWei512/code-radio-cli \ No newline at end of file diff --git a/apps/code-radio.md b/apps/code-radio.md deleted file mode 100644 index 9b37233e4..000000000 --- a/apps/code-radio.md +++ /dev/null @@ -1,8 +0,0 @@ -# CODE-RADIO - - 🎵 A command line music radio client for coderadio.freecodecamp.org, written in Rust. - - SITE: https://github.com/JasonWei512/code-radio-cli - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/code.md b/apps/code.md deleted file mode 100644 index 91e90e2c9..000000000 --- a/apps/code.md +++ /dev/null @@ -1,12 +0,0 @@ -# CODE - - Visual Studio Code (vscode): Editor for building and debugging modern web and cloud applications. - - This is the OFFICIAL binary version| - - ![Screenshot](https://user-images.githubusercontent.com/35271042/118224532-3842c400-b438-11eb-923d-a5f66fa6785a.png) - - SITE: https://code.visualstudio.com/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/codebook-lsp b/apps/codebook-lsp new file mode 100644 index 000000000..1be9f72f8 --- /dev/null +++ b/apps/codebook-lsp @@ -0,0 +1,3 @@ +# codebook-lsp +Codebook, code-aware spell checker with language server implementation. +# SITES: https://github.com/blopker/codebook \ No newline at end of file diff --git a/apps/codebook-lsp.md b/apps/codebook-lsp.md deleted file mode 100644 index 18c8d2be6..000000000 --- a/apps/codebook-lsp.md +++ /dev/null @@ -1,8 +0,0 @@ -# CODEBOOK-LSP - - Codebook, code-aware spell checker with language server implementation. - - SITE: https://github.com/blopker/codebook - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/coinstac b/apps/coinstac new file mode 100644 index 000000000..e154223d7 --- /dev/null +++ b/apps/coinstac @@ -0,0 +1,3 @@ +# coinstac +Collaborative Informatics and Neuroimaging Suite Toolkit for Anonymous Computation. +# SITES: https://github.com/trendscenter/coinstac \ No newline at end of file diff --git a/apps/coinstac.md b/apps/coinstac.md deleted file mode 100644 index c55b09dfd..000000000 --- a/apps/coinstac.md +++ /dev/null @@ -1,8 +0,0 @@ -# COINSTAC - - Collaborative Informatics and Neuroimaging Suite Toolkit for Anonymous Computation. - - SITE: https://github.com/trendscenter/coinstac - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/col b/apps/col new file mode 100644 index 000000000..ed774ddbc --- /dev/null +++ b/apps/col @@ -0,0 +1,4 @@ +# col + Line feeds from input. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/col.md b/apps/col.md deleted file mode 100644 index a8656d983..000000000 --- a/apps/col.md +++ /dev/null @@ -1,8 +0,0 @@ -# COL - - Line feeds from input. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/colcrt b/apps/colcrt new file mode 100644 index 000000000..d66422d9c --- /dev/null +++ b/apps/colcrt @@ -0,0 +1,4 @@ +# colcrt + Output for CRT previewing. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/colcrt.md b/apps/colcrt.md deleted file mode 100644 index aa79c94f9..000000000 --- a/apps/colcrt.md +++ /dev/null @@ -1,8 +0,0 @@ -# COLCRT - - Output for CRT previewing. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/collaboraoffice b/apps/collaboraoffice new file mode 100644 index 000000000..2e48d6600 --- /dev/null +++ b/apps/collaboraoffice @@ -0,0 +1,3 @@ +# collaboraoffice +Unofficial, a collaborative online office suite based on LibreOffice technology. +# SITES: https://github.com/pkgforge-dev/CollaboraOffice-AppImage \ No newline at end of file diff --git a/apps/collaboraoffice.md b/apps/collaboraoffice.md deleted file mode 100644 index 1e91c8f38..000000000 --- a/apps/collaboraoffice.md +++ /dev/null @@ -1,8 +0,0 @@ -# COLLABORAOFFICE - - Unofficial, a collaborative online office suite based on LibreOffice technology. - - SITE: https://github.com/pkgforge-dev/CollaboraOffice-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/collision b/apps/collision new file mode 100644 index 000000000..8a457a704 --- /dev/null +++ b/apps/collision @@ -0,0 +1,3 @@ +# collision +Unofficial. Verify the checksum/hash validity of files. +# SITES: https://github.com/pkgforge-dev/Collision-AppImage \ No newline at end of file diff --git a/apps/collision.md b/apps/collision.md deleted file mode 100644 index 063b8ceea..000000000 --- a/apps/collision.md +++ /dev/null @@ -1,8 +0,0 @@ -# COLLISION - - Unofficial. Verify the checksum/hash validity of files. - - SITE: https://github.com/pkgforge-dev/Collision-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/colon b/apps/colon new file mode 100644 index 000000000..ad6b9b5c1 --- /dev/null +++ b/apps/colon @@ -0,0 +1,3 @@ +# colon +A flexible text editor +# SITES: https://github.com/Chhekur/colon-ide \ No newline at end of file diff --git a/apps/colon.md b/apps/colon.md deleted file mode 100644 index aef401289..000000000 --- a/apps/colon.md +++ /dev/null @@ -1,8 +0,0 @@ -# COLON - - A flexible text editor - - SITE: https://github.com/Chhekur/colon-ide - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/colorgenerator b/apps/colorgenerator new file mode 100644 index 000000000..b69436d66 --- /dev/null +++ b/apps/colorgenerator @@ -0,0 +1,3 @@ +# colorgenerator +An application that generates color palettes similar to ColorBrewer but algorithmically using intuitive parameters. +# SITES: https://github.com/YaShock/color-generator \ No newline at end of file diff --git a/apps/colorgenerator.md b/apps/colorgenerator.md deleted file mode 100644 index 73d62180b..000000000 --- a/apps/colorgenerator.md +++ /dev/null @@ -1,8 +0,0 @@ -# COLORGENERATOR - - An application that generates color palettes similar to ColorBrewer but algorithmically using intuitive parameters. - - SITE: https://github.com/YaShock/color-generator - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/colorpicker b/apps/colorpicker new file mode 100644 index 000000000..a6ce6ba0b --- /dev/null +++ b/apps/colorpicker @@ -0,0 +1,3 @@ +# colorpicker +Colorpicker is a little Electron app that can show colors with hex/rgb +# SITES: https://github.com/Toinane/colorpicker \ No newline at end of file diff --git a/apps/colorpicker.md b/apps/colorpicker.md deleted file mode 100644 index 29be950b0..000000000 --- a/apps/colorpicker.md +++ /dev/null @@ -1,8 +0,0 @@ -# COLORPICKER - - Colorpicker is a little Electron app that can show colors with hex/rgb - - SITE: https://github.com/Toinane/colorpicker - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/colorstatic-bash b/apps/colorstatic-bash new file mode 100644 index 000000000..143f663ef --- /dev/null +++ b/apps/colorstatic-bash @@ -0,0 +1,3 @@ +# colorstatic-bash +Fun Bash hybrid function/script to generate a random colorful "Static"/"Matrix" (like?) style animation in a Linux (or any *nix?) command line. +# SITES: https://github.com/Lateralus138/colorstatic-bash \ No newline at end of file diff --git a/apps/colorstatic-bash.md b/apps/colorstatic-bash.md deleted file mode 100644 index 6ad96efee..000000000 --- a/apps/colorstatic-bash.md +++ /dev/null @@ -1,8 +0,0 @@ -# COLORSTATIC-BASH - - Fun Bash hybrid function/script to generate a random colorful "Static"/"Matrix" (like?) style animation in a Linux (or any *nix?) command line. - - SITE: https://github.com/Lateralus138/colorstatic-bash - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/colrm b/apps/colrm new file mode 100644 index 000000000..903cf8ba7 --- /dev/null +++ b/apps/colrm @@ -0,0 +1,4 @@ +# colrm + From a file. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/colrm.md b/apps/colrm.md deleted file mode 100644 index 28ee14aab..000000000 --- a/apps/colrm.md +++ /dev/null @@ -1,8 +0,0 @@ -# COLRM - - From a file. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/column b/apps/column new file mode 100644 index 000000000..cc7eaf961 --- /dev/null +++ b/apps/column @@ -0,0 +1,3 @@ +# column +Columnate lists. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/column.md b/apps/column.md deleted file mode 100644 index 7e1b428cd..000000000 --- a/apps/column.md +++ /dev/null @@ -1,8 +0,0 @@ -# COLUMN - - Columnate lists. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/comic-book-reader b/apps/comic-book-reader new file mode 100644 index 000000000..55a53f22f --- /dev/null +++ b/apps/comic-book-reader @@ -0,0 +1,3 @@ +# comic-book-reader +ACBR - A comic book reader and converter for cbz, cbr, epub and pdf files (Windows & Linux). +# SITES: https://github.com/binarynonsense/comic-book-reader \ No newline at end of file diff --git a/apps/comic-book-reader.md b/apps/comic-book-reader.md deleted file mode 100644 index c762b0c1c..000000000 --- a/apps/comic-book-reader.md +++ /dev/null @@ -1,8 +0,0 @@ -# COMIC-BOOK-READER - - ACBR - A comic book reader and converter for cbz, cbr, epub and pdf files (Windows & Linux). - - SITE: https://github.com/binarynonsense/comic-book-reader - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/comic-reader b/apps/comic-reader new file mode 100644 index 000000000..ddbba1ea5 --- /dev/null +++ b/apps/comic-reader @@ -0,0 +1,3 @@ +# comic-reader +Comic Reader - an Electron based comic reader. +# SITES: https://github.com/Pong420/Comic-Reader \ No newline at end of file diff --git a/apps/comic-reader.md b/apps/comic-reader.md deleted file mode 100644 index 7de270779..000000000 --- a/apps/comic-reader.md +++ /dev/null @@ -1,8 +0,0 @@ -# COMIC-READER - - Comic Reader - an Electron based comic reader. - - SITE: https://github.com/Pong420/Comic-Reader - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/comics-downloader b/apps/comics-downloader new file mode 100644 index 000000000..d3189d695 --- /dev/null +++ b/apps/comics-downloader @@ -0,0 +1,3 @@ +# comics-downloader +tool to download comics and manga in pdf/epub/cbr/cbz from a website +# SITES: https://github.com/Girbons/comics-downloader \ No newline at end of file diff --git a/apps/comics-downloader.md b/apps/comics-downloader.md deleted file mode 100644 index d41c65daf..000000000 --- a/apps/comics-downloader.md +++ /dev/null @@ -1,8 +0,0 @@ -# COMICS-DOWNLOADER - - tool to download comics and manga in pdf/epub/cbr/cbz from a website - - SITE: https://github.com/Girbons/comics-downloader - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/comictagger b/apps/comictagger new file mode 100644 index 000000000..d2e8557bc --- /dev/null +++ b/apps/comictagger @@ -0,0 +1,3 @@ +# comictagger +A multi-platform app for writing metadata to digital comics. +# SITES: https://github.com/comictagger/comictagger \ No newline at end of file diff --git a/apps/comictagger.md b/apps/comictagger.md deleted file mode 100644 index 8d1e9a619..000000000 --- a/apps/comictagger.md +++ /dev/null @@ -1,8 +0,0 @@ -# COMICTAGGER - - A multi-platform app for writing metadata to digital comics. - - SITE: https://github.com/comictagger/comictagger - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/comm b/apps/comm new file mode 100644 index 000000000..42f04c70b --- /dev/null +++ b/apps/comm @@ -0,0 +1,4 @@ +# comm + Compare two sorted files line by line. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/comm.md b/apps/comm.md deleted file mode 100644 index aa659066f..000000000 --- a/apps/comm.md +++ /dev/null @@ -1,8 +0,0 @@ -# COMM - - Compare two sorted files line by line. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/commander-genius b/apps/commander-genius new file mode 100644 index 000000000..fb0707c8f --- /dev/null +++ b/apps/commander-genius @@ -0,0 +1,3 @@ +# commander-genius +Unofficial, an open-source interpreter for the Commander Keen (1-6, Dreams) and Cosmos Cosmic series. +# SITES: https://github.com/pkgforge-dev/Commander-Genius-AppImage \ No newline at end of file diff --git a/apps/commander-genius.md b/apps/commander-genius.md deleted file mode 100644 index 051e28a8a..000000000 --- a/apps/commander-genius.md +++ /dev/null @@ -1,8 +0,0 @@ -# COMMANDER-GENIUS - - Unofficial, an open-source interpreter for the Commander Keen (1-6, Dreams) and Cosmos Cosmic series. - - SITE: https://github.com/pkgforge-dev/Commander-Genius-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/compass b/apps/compass new file mode 100644 index 000000000..e948ffc9e --- /dev/null +++ b/apps/compass @@ -0,0 +1,3 @@ +# compass +Air Traffic Surveillance DataBase +# SITES: https://github.com/hpuhr/COMPASS \ No newline at end of file diff --git a/apps/compass.md b/apps/compass.md deleted file mode 100644 index 448c79df2..000000000 --- a/apps/compass.md +++ /dev/null @@ -1,8 +0,0 @@ -# COMPASS - - Air Traffic Surveillance DataBase - - SITE: https://github.com/hpuhr/COMPASS - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/compresso b/apps/compresso new file mode 100644 index 000000000..79931c09c --- /dev/null +++ b/apps/compresso @@ -0,0 +1,3 @@ +# compresso +Convert any video into a tiny size. +# SITES: https://github.com/codeforreal1/compressO \ No newline at end of file diff --git a/apps/compresso.md b/apps/compresso.md deleted file mode 100644 index 448915652..000000000 --- a/apps/compresso.md +++ /dev/null @@ -1,8 +0,0 @@ -# COMPRESSO - - Convert any video into a tiny size. - - SITE: https://github.com/codeforreal1/compressO - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/concordium-desktop-wallet b/apps/concordium-desktop-wallet new file mode 100644 index 000000000..279504563 --- /dev/null +++ b/apps/concordium-desktop-wallet @@ -0,0 +1,3 @@ +# concordium-desktop-wallet +The latest stable AppImage of the official Concordium Dektop Wallet +# SITES: https://www.concordium.com/wallet \ No newline at end of file diff --git a/apps/concordium-desktop-wallet.md b/apps/concordium-desktop-wallet.md deleted file mode 100644 index d9b3de128..000000000 --- a/apps/concordium-desktop-wallet.md +++ /dev/null @@ -1,8 +0,0 @@ -# CONCORDIUM-DESKTOP-WALLET - - The latest stable AppImage of the official Concordium Dektop Wallet - - SITE: https://www.concordium.com/wallet - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/conduction b/apps/conduction new file mode 100644 index 000000000..654366d19 --- /dev/null +++ b/apps/conduction @@ -0,0 +1,3 @@ +# conduction +Tasks? Done. That was quick. +# SITES: https://github.com/Shabang-Systems/Condution \ No newline at end of file diff --git a/apps/conduction.md b/apps/conduction.md deleted file mode 100644 index a63e7f2eb..000000000 --- a/apps/conduction.md +++ /dev/null @@ -1,8 +0,0 @@ -# CONDUCTION - - Tasks? Done. That was quick. - - SITE: https://github.com/Shabang-Systems/Condution - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/conky b/apps/conky new file mode 100644 index 000000000..a6d4e0fb9 --- /dev/null +++ b/apps/conky @@ -0,0 +1,17 @@ +# conky +Conky is a free, light-weight system monitor for X, that displays any kind of information on your desktop. + + Conky can display more than 300 built-in objects, including support for: + + - A plethora of OS stats (uname, uptime, CPU usage, mem usage, disk usage, "top" like process stats, and network monitoring, just to name a few). + - Built-in IMAP and POP3 support. + - Built-in support for many popular music players (MPD, XMMS2, Audacious). + - Can be extended using built-in Lua support, or any of your own scripts and programs (more). + - Built-in Imlib2 and Cairo bindings for arbitrary drawing with Lua (more). + - Runs on Linux, FreeBSD, OpenBSD, DragonFlyBSD, NetBSD, Solaris, Haiku, and macOS! + - Docker image available for amd64, armv7, and aarch64 (aka armv8) + + ... and much much more. + + Conky can display information either as text, or using simple progress bars and graph widgets, with different fonts and colours. +# SITES: https://github.com/brndnmtthws/conky \ No newline at end of file diff --git a/apps/conky.md b/apps/conky.md deleted file mode 100644 index 7264c350d..000000000 --- a/apps/conky.md +++ /dev/null @@ -1,23 +0,0 @@ -# CONKY - - Conky is a free, light-weight system monitor for X, that displays any kind of information on your desktop. - - Conky can display more than 300 built-in objects, including support for: - - - A plethora of OS stats (uname, uptime, CPU usage, mem usage, disk usage, "top" like process stats, and network monitoring, just to name a few). - - Built-in IMAP and POP3 support. - - Built-in support for many popular music players (MPD, XMMS2, Audacious). - - Can be extended using built-in Lua support, or any of your own scripts and programs (more). - - Built-in Imlib2 and Cairo bindings for arbitrary drawing with Lua (more). - - Runs on Linux, FreeBSD, OpenBSD, DragonFlyBSD, NetBSD, Solaris, Haiku, and macOS! - - Docker image available for amd64, armv7, and aarch64 (aka armv8) - - ... and much much more. - - Conky can display information either as text, or using simple progress bars and graph widgets, with different fonts and colours. - - SITE: https://github.com/brndnmtthws/conky - WIKI: https://github.com/brndnmtthws/conky/wiki - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/consoleworkbench b/apps/consoleworkbench new file mode 100644 index 000000000..823367fec --- /dev/null +++ b/apps/consoleworkbench @@ -0,0 +1,3 @@ +# consoleworkbench +Console workbench +# SITES: https://github.com/easyops-cn/console-workbench \ No newline at end of file diff --git a/apps/consoleworkbench.md b/apps/consoleworkbench.md deleted file mode 100644 index 2f702af2d..000000000 --- a/apps/consoleworkbench.md +++ /dev/null @@ -1,8 +0,0 @@ -# CONSOLEWORKBENCH - - Console workbench - - SITE: https://github.com/easyops-cn/console-workbench - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/constrict b/apps/constrict new file mode 100644 index 000000000..64b00eb6d --- /dev/null +++ b/apps/constrict @@ -0,0 +1,4 @@ +# constrict + Unofficial AppImage of Constrict. +# SITES: https://github.com/pkgforge-dev/constrict-appimage +# SOURCES: https://github.com/pkgforge-dev/constrict-appimage \ No newline at end of file diff --git a/apps/constrict.md b/apps/constrict.md deleted file mode 100644 index 37576b5a2..000000000 --- a/apps/constrict.md +++ /dev/null @@ -1,8 +0,0 @@ -# CONSTRICT - - Unofficial AppImage of Constrict. - - SITE: https://github.com/pkgforge-dev/constrict-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/contour b/apps/contour new file mode 100644 index 000000000..fcbbf5beb --- /dev/null +++ b/apps/contour @@ -0,0 +1,3 @@ +# contour +Modern C++ Terminal Emulator +# SITES: https://github.com/contour-terminal/contour \ No newline at end of file diff --git a/apps/contour.md b/apps/contour.md deleted file mode 100644 index 1d0cd47f9..000000000 --- a/apps/contour.md +++ /dev/null @@ -1,8 +0,0 @@ -# CONTOUR - - Modern C++ Terminal Emulator - - SITE: https://github.com/contour-terminal/contour - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/conty b/apps/conty new file mode 100644 index 000000000..2add93dd0 --- /dev/null +++ b/apps/conty @@ -0,0 +1,7 @@ +# conty +This is an easy to use compressed unprivileged Linux container packed into a single executable that works on most Linux distros. It is designed to be as simple and user-friendly as possible. You can use it to run any applications, including games (Vulkan and OpenGL). + + In its default release, it includes, among others, these apps: Wine-GE, Steam, Lutris, PlayOnLinux, GameHub, Minigalaxy, Legendary, Bottles, MultiMC, MangoHud, Gamescope, RetroArch, PPSSPP, PCSX2, DuckStation, OBS Studio, OpenJDK, Firefox. + + This is the default release. +# SITES: https://github.com/Kron4ek/Conty \ No newline at end of file diff --git a/apps/conty.md b/apps/conty.md deleted file mode 100644 index 44a1c532c..000000000 --- a/apps/conty.md +++ /dev/null @@ -1,14 +0,0 @@ -# CONTY - - This is an easy to use compressed unprivileged Linux container packed into a single executable that works on most Linux distros. It is designed to be as simple and user-friendly as possible. You can use it to run any applications, including games (Vulkan and OpenGL). - - This script allows to choose between three editions: - - - WINE (or BASE), it includes only WINE and its dependencies - - LITE, same as FULL (see below) except for base-devel, gcc, mingw-w64-gcc, Firefox, meson, cmake, jre-openjdk, multimc5 and qBittorrent - - FULL, it includes, among others, Wine-GE, Steam, Lutris, PlayOnLinux, GameHub, Minigalaxy, Legendary, Bottles, MultiMC, MangoHud, Gamescope, RetroArch, PPSSPP, PCSX2, DuckStation, OBS Studio, OpenJDK, Firefox and qBittorrent - - SITE: https://github.com/Kron4ek/Conty - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/converse-desktop b/apps/converse-desktop new file mode 100644 index 000000000..daf12fe6d --- /dev/null +++ b/apps/converse-desktop @@ -0,0 +1,3 @@ +# converse-desktop +Electron-based Desktop client for Converse.js. +# SITES: https://github.com/conversejs/converse-desktop \ No newline at end of file diff --git a/apps/converse-desktop.md b/apps/converse-desktop.md deleted file mode 100644 index 1935cec26..000000000 --- a/apps/converse-desktop.md +++ /dev/null @@ -1,8 +0,0 @@ -# CONVERSE-DESKTOP - - Electron-based Desktop client for Converse.js. - - SITE: https://github.com/conversejs/converse-desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/converseen b/apps/converseen new file mode 100644 index 000000000..2b699921b --- /dev/null +++ b/apps/converseen @@ -0,0 +1,4 @@ +# converseen +Converseen is a batch image converter and resizer +# SCREENSHOTS: https://user-images.githubusercontent.com/88724353/236652020-ca7298d0-cc7b-4a4c-b809-20407f4e663a.png +# SITES: https://github.com/Faster3ck/Converseen \ No newline at end of file diff --git a/apps/converseen.md b/apps/converseen.md deleted file mode 100644 index ba8d3c581..000000000 --- a/apps/converseen.md +++ /dev/null @@ -1,10 +0,0 @@ -# CONVERSEEN - - Converseen is a batch image converter and resizer - - ![68747470733a2f2f636f6e7665727365656e2e6661737465726c616e642e6e65742f7265732f636f6e7665727365656e2d6c696e75782e706e67](https://user-images.githubusercontent.com/88724353/236652020-ca7298d0-cc7b-4a4c-b809-20407f4e663a.png) - - SITE: https://github.com/Faster3ck/Converseen - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/converter432hz b/apps/converter432hz new file mode 100644 index 000000000..bddccb3ee --- /dev/null +++ b/apps/converter432hz @@ -0,0 +1,3 @@ +# converter432hz +Converts and re-encodes music to 432hz +# SITES: https://github.com/mysteryx93/NaturalGroundingPlayer \ No newline at end of file diff --git a/apps/converter432hz.md b/apps/converter432hz.md deleted file mode 100644 index c21b0974f..000000000 --- a/apps/converter432hz.md +++ /dev/null @@ -1,8 +0,0 @@ -# CONVERTER432HZ - - Converts and re-encodes music to 432hz - - SITE: https://github.com/mysteryx93/NaturalGroundingPlayer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/converternow b/apps/converternow new file mode 100644 index 000000000..ac5a77b46 --- /dev/null +++ b/apps/converternow @@ -0,0 +1,3 @@ +# converternow +The Unit Converter app: easy, immediate and multi-platform +# SITES: https://github.com/ferraridamiano/ConverterNOW \ No newline at end of file diff --git a/apps/converternow.md b/apps/converternow.md deleted file mode 100644 index 221b9dbdf..000000000 --- a/apps/converternow.md +++ /dev/null @@ -1,8 +0,0 @@ -# CONVERTERNOW - - The Unit Converter app: easy, immediate and multi-platform - - SITE: https://github.com/ferraridamiano/ConverterNOW - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/cool-retro-term b/apps/cool-retro-term new file mode 100644 index 000000000..c6565af92 --- /dev/null +++ b/apps/cool-retro-term @@ -0,0 +1,3 @@ +# cool-retro-term +Use the command line the old way +# SITES: https://github.com/Swordfish90/cool-retro-term \ No newline at end of file diff --git a/apps/cool-retro-term.md b/apps/cool-retro-term.md deleted file mode 100644 index 18a7a932b..000000000 --- a/apps/cool-retro-term.md +++ /dev/null @@ -1,8 +0,0 @@ -# COOL-RETRO-TERM - - Use the command line the old way - - SITE: https://github.com/Swordfish90/cool-retro-term - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/coolercontrol b/apps/coolercontrol new file mode 100644 index 000000000..6cecdcd14 --- /dev/null +++ b/apps/coolercontrol @@ -0,0 +1,3 @@ +# coolercontrol +A program to monitor and control your cooling devices. +# SITES: https://gitlab.com/coolercontrol/coolercontrol \ No newline at end of file diff --git a/apps/coolercontrol.md b/apps/coolercontrol.md deleted file mode 100644 index dc2724c72..000000000 --- a/apps/coolercontrol.md +++ /dev/null @@ -1,10 +0,0 @@ -# COOLERCONTROL - - A program to monitor and control your cooling devices. - - NOTE: requires "coolercontrold" (with final "d") to work. - - SITE: https://gitlab.com/coolercontrol/coolercontrol - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/coolercontrold b/apps/coolercontrold new file mode 100644 index 000000000..3763391b0 --- /dev/null +++ b/apps/coolercontrold @@ -0,0 +1,5 @@ +# coolercontrold +Daemon for "coolercontrol", to monitor your cooling devices. + + Required by "coolercontrol". +# SITES: https://gitlab.com/coolercontrol \ No newline at end of file diff --git a/apps/coolercontrold.md b/apps/coolercontrold.md deleted file mode 100644 index 5a318131a..000000000 --- a/apps/coolercontrold.md +++ /dev/null @@ -1,10 +0,0 @@ -# COOLERCONTROLD - - Daemon for "coolercontrol", to monitor your cooling devices. - - Required by "coolercontrol". - - SITE: https://gitlab.com/coolercontrol - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/copyq b/apps/copyq new file mode 100644 index 000000000..14c2ddfbf --- /dev/null +++ b/apps/copyq @@ -0,0 +1,3 @@ +# copyq +Unofficial, an advanced clipboard manager with powerful editing and scripting features. +# SITES: https://github.com/pkgforge-dev/CopyQ-AppImage \ No newline at end of file diff --git a/apps/copyq.md b/apps/copyq.md deleted file mode 100644 index fe0eee9b4..000000000 --- a/apps/copyq.md +++ /dev/null @@ -1,8 +0,0 @@ -# COPYQ - - Unofficial, an advanced clipboard manager with powerful editing and scripting features. - - SITE: https://github.com/pkgforge-dev/CopyQ-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/copytranslator b/apps/copytranslator new file mode 100644 index 000000000..65f78e213 --- /dev/null +++ b/apps/copytranslator @@ -0,0 +1,3 @@ +# copytranslator +Foreign language reading and translation assistant based on copy and translate. +# SITES: https://copytranslator.github.io \ No newline at end of file diff --git a/apps/copytranslator.md b/apps/copytranslator.md deleted file mode 100644 index b6f053741..000000000 --- a/apps/copytranslator.md +++ /dev/null @@ -1,8 +0,0 @@ -# COPYTRANSLATOR - - Foreign language reading and translation assistant based on copy and translate. - - SITE: https://copytranslator.github.io - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/cordlauncher b/apps/cordlauncher new file mode 100644 index 000000000..ab0a7cb07 --- /dev/null +++ b/apps/cordlauncher @@ -0,0 +1,3 @@ +# cordlauncher +Cord launcher based on Electron and Wep Application +# SITES: https://github.com/ProtocolONE/cord.launcher \ No newline at end of file diff --git a/apps/cordlauncher.md b/apps/cordlauncher.md deleted file mode 100644 index 90a642625..000000000 --- a/apps/cordlauncher.md +++ /dev/null @@ -1,8 +0,0 @@ -# CORDLAUNCHER - - Cord launcher based on Electron and Wep Application - - SITE: https://github.com/ProtocolONE/cord.launcher - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/coreaction b/apps/coreaction new file mode 100644 index 000000000..b0718a58f --- /dev/null +++ b/apps/coreaction @@ -0,0 +1,3 @@ +# coreaction +A side bar for showing widgets for CuboCore Application Suite +# SITES: https://gitlab.com/cubocore \ No newline at end of file diff --git a/apps/coreaction.md b/apps/coreaction.md deleted file mode 100644 index 736733d2b..000000000 --- a/apps/coreaction.md +++ /dev/null @@ -1,8 +0,0 @@ -# COREACTION - - A side bar for showing widgets for CuboCore Application Suite - - SITE: https://gitlab.com/cubocore - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/corearchiver b/apps/corearchiver new file mode 100644 index 000000000..43f4f92b9 --- /dev/null +++ b/apps/corearchiver @@ -0,0 +1,3 @@ +# corearchiver +Archive manager for CuboCore Application Suite. +# SITES: https://gitlab.com/cubocore \ No newline at end of file diff --git a/apps/corearchiver.md b/apps/corearchiver.md deleted file mode 100644 index c83963c95..000000000 --- a/apps/corearchiver.md +++ /dev/null @@ -1,8 +0,0 @@ -# COREARCHIVER - - Archive manager for CuboCore Application Suite. - - SITE: https://gitlab.com/cubocore - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/corefm b/apps/corefm new file mode 100644 index 000000000..af3cb0e23 --- /dev/null +++ b/apps/corefm @@ -0,0 +1,3 @@ +# corefm +A lightweight file-manager for C Suite. +# SITES: https://gitlab.com/cubocore \ No newline at end of file diff --git a/apps/corefm.md b/apps/corefm.md deleted file mode 100644 index ac74d5493..000000000 --- a/apps/corefm.md +++ /dev/null @@ -1,8 +0,0 @@ -# COREFM - - A lightweight file-manager for C Suite. - - SITE: https://gitlab.com/cubocore - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/coregarage b/apps/coregarage new file mode 100644 index 000000000..009e686aa --- /dev/null +++ b/apps/coregarage @@ -0,0 +1,3 @@ +# coregarage +A setting manager for CuboCore Application Suite. +# SITES: https://gitlab.com/cubocore \ No newline at end of file diff --git a/apps/coregarage.md b/apps/coregarage.md deleted file mode 100644 index f1cc9d25e..000000000 --- a/apps/coregarage.md +++ /dev/null @@ -1,8 +0,0 @@ -# COREGARAGE - - A setting manager for CuboCore Application Suite. - - SITE: https://gitlab.com/cubocore - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/corehunt b/apps/corehunt new file mode 100644 index 000000000..f5df61914 --- /dev/null +++ b/apps/corehunt @@ -0,0 +1,3 @@ +# corehunt +A file search utility for CuboCore Application Suite. +# SITES: https://gitlab.com/cubocore \ No newline at end of file diff --git a/apps/corehunt.md b/apps/corehunt.md deleted file mode 100644 index bbdf6fc79..000000000 --- a/apps/corehunt.md +++ /dev/null @@ -1,8 +0,0 @@ -# COREHUNT - - A file search utility for CuboCore Application Suite. - - SITE: https://gitlab.com/cubocore - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/coreimage b/apps/coreimage new file mode 100644 index 000000000..18f4df819 --- /dev/null +++ b/apps/coreimage @@ -0,0 +1,3 @@ +# coreimage +An image viewer for CuboCore Application Suite. +# SITES: https://gitlab.com/cubocore \ No newline at end of file diff --git a/apps/coreimage.md b/apps/coreimage.md deleted file mode 100644 index eeabfc735..000000000 --- a/apps/coreimage.md +++ /dev/null @@ -1,8 +0,0 @@ -# COREIMAGE - - An image viewer for CuboCore Application Suite. - - SITE: https://gitlab.com/cubocore - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/coreinfo b/apps/coreinfo new file mode 100644 index 000000000..d472a3d3b --- /dev/null +++ b/apps/coreinfo @@ -0,0 +1,3 @@ +# coreinfo +A file information viewer for CuboCore Application Suite. +# SITES: https://gitlab.com/cubocore \ No newline at end of file diff --git a/apps/coreinfo.md b/apps/coreinfo.md deleted file mode 100644 index 38797da7e..000000000 --- a/apps/coreinfo.md +++ /dev/null @@ -1,8 +0,0 @@ -# COREINFO - - A file information viewer for CuboCore Application Suite. - - SITE: https://gitlab.com/cubocore - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/corekeyboard b/apps/corekeyboard new file mode 100644 index 000000000..5b72fccd2 --- /dev/null +++ b/apps/corekeyboard @@ -0,0 +1,3 @@ +# corekeyboard +A x11 based virtual keyboard for C Suite. +# SITES: https://gitlab.com/cubocore \ No newline at end of file diff --git a/apps/corekeyboard.md b/apps/corekeyboard.md deleted file mode 100644 index 27aac13f1..000000000 --- a/apps/corekeyboard.md +++ /dev/null @@ -1,8 +0,0 @@ -# COREKEYBOARD - - A x11 based virtual keyboard for C Suite. - - SITE: https://gitlab.com/cubocore - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/corepad b/apps/corepad new file mode 100644 index 000000000..94286c789 --- /dev/null +++ b/apps/corepad @@ -0,0 +1,3 @@ +# corepad +A document editor for CuboCore Application Suite. +# SITES: https://gitlab.com/cubocore \ No newline at end of file diff --git a/apps/corepad.md b/apps/corepad.md deleted file mode 100644 index c94eb788c..000000000 --- a/apps/corepad.md +++ /dev/null @@ -1,8 +0,0 @@ -# COREPAD - - A document editor for CuboCore Application Suite. - - SITE: https://gitlab.com/cubocore - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/corepaint b/apps/corepaint new file mode 100644 index 000000000..ee193d261 --- /dev/null +++ b/apps/corepaint @@ -0,0 +1,3 @@ +# corepaint +A paint app for CuboCore Application Suite. +# SITES: https://gitlab.com/cubocore \ No newline at end of file diff --git a/apps/corepaint.md b/apps/corepaint.md deleted file mode 100644 index c30338534..000000000 --- a/apps/corepaint.md +++ /dev/null @@ -1,8 +0,0 @@ -# COREPAINT - - A paint app for CuboCore Application Suite. - - SITE: https://gitlab.com/cubocore - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/corepins b/apps/corepins new file mode 100644 index 000000000..6bcabc9e8 --- /dev/null +++ b/apps/corepins @@ -0,0 +1,3 @@ +# corepins +A bookmarking app for CuboCore Application Suite. +# SITES: https://gitlab.com/cubocore \ No newline at end of file diff --git a/apps/corepins.md b/apps/corepins.md deleted file mode 100644 index 153792dbd..000000000 --- a/apps/corepins.md +++ /dev/null @@ -1,8 +0,0 @@ -# COREPINS - - A bookmarking app for CuboCore Application Suite. - - SITE: https://gitlab.com/cubocore - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/corerenamer b/apps/corerenamer new file mode 100644 index 000000000..18d3d682f --- /dev/null +++ b/apps/corerenamer @@ -0,0 +1,3 @@ +# corerenamer +A batch file renamer for CuboCore Application Suite. +# SITES: https://gitlab.com/cubocore \ No newline at end of file diff --git a/apps/corerenamer.md b/apps/corerenamer.md deleted file mode 100644 index 7457c39df..000000000 --- a/apps/corerenamer.md +++ /dev/null @@ -1,8 +0,0 @@ -# CORERENAMER - - A batch file renamer for CuboCore Application Suite. - - SITE: https://gitlab.com/cubocore - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/coreshot b/apps/coreshot new file mode 100644 index 000000000..bbddf468b --- /dev/null +++ b/apps/coreshot @@ -0,0 +1,3 @@ +# coreshot +A screen capture utility for CuboCore Application Suite. +# SITES: https://gitlab.com/cubocore \ No newline at end of file diff --git a/apps/coreshot.md b/apps/coreshot.md deleted file mode 100644 index 3f41c3565..000000000 --- a/apps/coreshot.md +++ /dev/null @@ -1,8 +0,0 @@ -# CORESHOT - - A screen capture utility for CuboCore Application Suite. - - SITE: https://gitlab.com/cubocore - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/corestats b/apps/corestats new file mode 100644 index 000000000..505b7a966 --- /dev/null +++ b/apps/corestats @@ -0,0 +1,3 @@ +# corestats +A system resource viewer from the CoreApps family. +# SITES: https://gitlab.com/cubocore \ No newline at end of file diff --git a/apps/corestats.md b/apps/corestats.md deleted file mode 100644 index 584ef793c..000000000 --- a/apps/corestats.md +++ /dev/null @@ -1,8 +0,0 @@ -# CORESTATS - - A system resource viewer from the CoreApps family. - - SITE: https://gitlab.com/cubocore - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/corestuff b/apps/corestuff new file mode 100644 index 000000000..7f7053293 --- /dev/null +++ b/apps/corestuff @@ -0,0 +1,3 @@ +# corestuff +An activity viewer for CuboCore Application Suite. +# SITES: https://gitlab.com/cubocore \ No newline at end of file diff --git a/apps/corestuff.md b/apps/corestuff.md deleted file mode 100644 index bc90ad7d8..000000000 --- a/apps/corestuff.md +++ /dev/null @@ -1,8 +0,0 @@ -# CORESTUFF - - An activity viewer for CuboCore Application Suite. - - SITE: https://gitlab.com/cubocore - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/coreterminal b/apps/coreterminal new file mode 100644 index 000000000..4351b6458 --- /dev/null +++ b/apps/coreterminal @@ -0,0 +1,3 @@ +# coreterminal +A terminal emulator for C Suite. +# SITES: https://gitlab.com/cubocore \ No newline at end of file diff --git a/apps/coreterminal.md b/apps/coreterminal.md deleted file mode 100644 index 5a40a2adf..000000000 --- a/apps/coreterminal.md +++ /dev/null @@ -1,8 +0,0 @@ -# CORETERMINAL - - A terminal emulator for C Suite. - - SITE: https://gitlab.com/cubocore - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/coretime b/apps/coretime new file mode 100644 index 000000000..249f0d341 --- /dev/null +++ b/apps/coretime @@ -0,0 +1,3 @@ +# coretime +A time related task manager for CuboCore Application Suite. +# SITES: https://gitlab.com/cubocore \ No newline at end of file diff --git a/apps/coretime.md b/apps/coretime.md deleted file mode 100644 index 001eba4a5..000000000 --- a/apps/coretime.md +++ /dev/null @@ -1,8 +0,0 @@ -# CORETIME - - A time related task manager for CuboCore Application Suite. - - SITE: https://gitlab.com/cubocore - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/coreuniverse b/apps/coreuniverse new file mode 100644 index 000000000..ac1225403 --- /dev/null +++ b/apps/coreuniverse @@ -0,0 +1,3 @@ +# coreuniverse +Shows releated information of apps from CuboCore Application Suite. +# SITES: https://gitlab.com/cubocore \ No newline at end of file diff --git a/apps/coreuniverse.md b/apps/coreuniverse.md deleted file mode 100644 index e7e77faf8..000000000 --- a/apps/coreuniverse.md +++ /dev/null @@ -1,8 +0,0 @@ -# COREUNIVERSE - - Shows releated information of apps from CuboCore Application Suite. - - SITE: https://gitlab.com/cubocore - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/corsixth b/apps/corsixth new file mode 100644 index 000000000..a8d5f0dd4 --- /dev/null +++ b/apps/corsixth @@ -0,0 +1,3 @@ +# corsixth +Open source clone of Theme Hospital. +# SITES: https://github.com/CorsixTH/CorsixTH \ No newline at end of file diff --git a/apps/corsixth-enhanced b/apps/corsixth-enhanced new file mode 100644 index 000000000..3c8879a91 --- /dev/null +++ b/apps/corsixth-enhanced @@ -0,0 +1,3 @@ +# corsixth-enhanced +Unofficial, open source clone of Theme Hospital. +# SITES: https://github.com/pkgforge-dev/CorsixTH-AppImage-Enhanced \ No newline at end of file diff --git a/apps/corsixth-enhanced.md b/apps/corsixth-enhanced.md deleted file mode 100644 index c3a0bf46e..000000000 --- a/apps/corsixth-enhanced.md +++ /dev/null @@ -1,8 +0,0 @@ -# CORSIXTH-ENHANCED - - Unofficial, open source clone of Theme Hospital. - - SITE: https://github.com/pkgforge-dev/CorsixTH-AppImage-Enhanced - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/corsixth.md b/apps/corsixth.md deleted file mode 100644 index 4d7f4b7ce..000000000 --- a/apps/corsixth.md +++ /dev/null @@ -1,8 +0,0 @@ -# CORSIXTH - - Open source clone of Theme Hospital. - - SITE: https://github.com/CorsixTH/CorsixTH - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/cosmic-comics b/apps/cosmic-comics new file mode 100644 index 000000000..bbdb7a22d --- /dev/null +++ b/apps/cosmic-comics @@ -0,0 +1,3 @@ +# cosmic-comics +Web Server based Comics / Manga Collectionner & viewer. +# SITES: https://github.com/Nytuo/CosmicComics \ No newline at end of file diff --git a/apps/cosmic-comics.md b/apps/cosmic-comics.md deleted file mode 100644 index 5f96bd0f3..000000000 --- a/apps/cosmic-comics.md +++ /dev/null @@ -1,8 +0,0 @@ -# COSMIC-COMICS - - Web Server based Comics / Manga Collectionner & viewer. - - SITE: https://github.com/Nytuo/CosmicComics - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/cosmonium b/apps/cosmonium new file mode 100644 index 000000000..d54a5d6de --- /dev/null +++ b/apps/cosmonium @@ -0,0 +1,4 @@ +# cosmonium +3D astronomy and space exploration program. +# SCREENSHOTS: https://raw.githubusercontent.com/wiki/cosmonium/cosmonium/screenshots/Io%2BJupiter.png +# SITES: https://github.com/cosmonium/cosmonium \ No newline at end of file diff --git a/apps/cosmonium.md b/apps/cosmonium.md deleted file mode 100644 index bea5cd3cb..000000000 --- a/apps/cosmonium.md +++ /dev/null @@ -1,10 +0,0 @@ -# COSMONIUM - - 3D astronomy and space exploration program. - - ![Screenshot](https://raw.githubusercontent.com/wiki/cosmonium/cosmonium/screenshots/Io%2BJupiter.png) - - SITE: https://github.com/cosmonium/cosmonium - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/cowitness b/apps/cowitness new file mode 100644 index 000000000..de5676895 --- /dev/null +++ b/apps/cowitness @@ -0,0 +1,3 @@ +# cowitness +CoWitness is a powerful web application testing tool that enhances the accuracy and efficiency of your testing efforts. It allows you to mimic an HTTP server and a DNS server, providing complete responses and valuable insights during your testing process. +# SITES: https://github.com/stolenusername/cowitness \ No newline at end of file diff --git a/apps/cowitness.md b/apps/cowitness.md deleted file mode 100644 index d70f7beff..000000000 --- a/apps/cowitness.md +++ /dev/null @@ -1,8 +0,0 @@ -# COWITNESS - - CoWitness is a powerful web application testing tool that enhances the accuracy and efficiency of your testing efforts. It allows you to mimic an HTTP server and a DNS server, providing complete responses and valuable insights during your testing process. - - SITE: https://github.com/stolenusername/cowitness - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/cozydrive b/apps/cozydrive new file mode 100644 index 000000000..af3fba3b3 --- /dev/null +++ b/apps/cozydrive @@ -0,0 +1,3 @@ +# cozydrive +File Synchronisation for Cozy on Desktop and Laptop. +# SITES: https://cozy-labs.github.io/cozy-desktop/ \ No newline at end of file diff --git a/apps/cozydrive.md b/apps/cozydrive.md deleted file mode 100644 index 106064446..000000000 --- a/apps/cozydrive.md +++ /dev/null @@ -1,8 +0,0 @@ -# COZYDRIVE - - File Synchronisation for Cozy on Desktop and Laptop. - - SITE: https://cozy-labs.github.io/cozy-desktop/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/cp b/apps/cp new file mode 100644 index 000000000..1447147ec --- /dev/null +++ b/apps/cp @@ -0,0 +1,3 @@ +# cp +Copy files and directories. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/cp.md b/apps/cp.md deleted file mode 100644 index b416e1fad..000000000 --- a/apps/cp.md +++ /dev/null @@ -1,8 +0,0 @@ -# CP - - Copy files and directories. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/cpeditor b/apps/cpeditor new file mode 100644 index 000000000..d8fc5a604 --- /dev/null +++ b/apps/cpeditor @@ -0,0 +1,3 @@ +# cpeditor +Qt-based, lightweight and cross-platform code editor specially designed for competitive programming. +# SITES: https://github.com/cpeditor/cpeditor/releases \ No newline at end of file diff --git a/apps/cpeditor.md b/apps/cpeditor.md deleted file mode 100644 index 9497e731f..000000000 --- a/apps/cpeditor.md +++ /dev/null @@ -1,8 +0,0 @@ -# CPEDITOR - - Qt-based, lightweight and cross-platform code editor specially designed for competitive programming. - - SITE: https://github.com/cpeditor/cpeditor/releases - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/cpod b/apps/cpod new file mode 100644 index 000000000..ffdbf4021 --- /dev/null +++ b/apps/cpod @@ -0,0 +1,3 @@ +# cpod +A simple, beautiful podcast app. +# SITES: https://github.com/z-------------/CPod \ No newline at end of file diff --git a/apps/cpod.md b/apps/cpod.md deleted file mode 100644 index 1050e1124..000000000 --- a/apps/cpod.md +++ /dev/null @@ -1,8 +0,0 @@ -# CPOD - - A simple, beautiful podcast app. - - SITE: https://github.com/z-------------/CPod - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/cpu-x b/apps/cpu-x new file mode 100644 index 000000000..f86bd610c --- /dev/null +++ b/apps/cpu-x @@ -0,0 +1,3 @@ +# cpu-x +CPU-X is a Free software that gathers information on CPU, motherboard and more. +# SITES: https://github.com/TheTumultuousUnicornOfDarkness/CPU-X \ No newline at end of file diff --git a/apps/cpu-x.md b/apps/cpu-x.md deleted file mode 100644 index babecf4ec..000000000 --- a/apps/cpu-x.md +++ /dev/null @@ -1,8 +0,0 @@ -# CPU-X - - CPU-X is a Free software that gathers information on CPU, motherboard and more. - - SITE: https://github.com/TheTumultuousUnicornOfDarkness/CPU-X - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/cpufetch b/apps/cpufetch new file mode 100644 index 000000000..d3626be8f --- /dev/null +++ b/apps/cpufetch @@ -0,0 +1,3 @@ +# cpufetch +Simple yet fancy CPU architecture fetching tool +# SITES: https://github.com/Dr-Noob/cpufetch \ No newline at end of file diff --git a/apps/cpufetch.md b/apps/cpufetch.md deleted file mode 100644 index 5b53e3b45..000000000 --- a/apps/cpufetch.md +++ /dev/null @@ -1,8 +0,0 @@ -# CPUFETCH - - Simple yet fancy CPU architecture fetching tool - - SITE: https://github.com/Dr-Noob/cpufetch - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/crabfetch b/apps/crabfetch new file mode 100644 index 000000000..45ecea206 --- /dev/null +++ b/apps/crabfetch @@ -0,0 +1,3 @@ +# crabfetch +Extremely fast, featureful and customizable command-line fetcher. +# SITES: https://github.com/LivacoNew/CrabFetch \ No newline at end of file diff --git a/apps/crabfetch.md b/apps/crabfetch.md deleted file mode 100644 index aa3dae9dd..000000000 --- a/apps/crabfetch.md +++ /dev/null @@ -1,8 +0,0 @@ -# CRABFETCH - - Extremely fast, featureful and customizable command-line fetcher. - - SITE: https://github.com/LivacoNew/CrabFetch - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/craftos-pc b/apps/craftos-pc new file mode 100644 index 000000000..abc7d2c28 --- /dev/null +++ b/apps/craftos-pc @@ -0,0 +1,3 @@ +# craftos-pc +Advanced ComputerCraft emulator written in C++ (AppImage binary). +# SITES: https://www.craftos-pc.cc/ \ No newline at end of file diff --git a/apps/craftos-pc.md b/apps/craftos-pc.md deleted file mode 100644 index 8e22302e6..000000000 --- a/apps/craftos-pc.md +++ /dev/null @@ -1,8 +0,0 @@ -# CRAFTOS-PC - - Advanced ComputerCraft emulator written in C++ (AppImage binary). - - SITE: https://www.craftos-pc.cc/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/crankshaft b/apps/crankshaft new file mode 100644 index 000000000..12095a014 --- /dev/null +++ b/apps/crankshaft @@ -0,0 +1,3 @@ +# crankshaft +A sensible krunker client written in typescript. +# SITES: https://github.com/KraXen72/crankshaft \ No newline at end of file diff --git a/apps/crankshaft.md b/apps/crankshaft.md deleted file mode 100644 index 58147f639..000000000 --- a/apps/crankshaft.md +++ /dev/null @@ -1,8 +0,0 @@ -# CRANKSHAFT - - A sensible krunker client written in typescript. - - SITE: https://github.com/KraXen72/crankshaft - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/crawl-ncurses b/apps/crawl-ncurses new file mode 100644 index 000000000..3df194406 --- /dev/null +++ b/apps/crawl-ncurses @@ -0,0 +1,3 @@ +# crawl-ncurses +Dungeon Crawl Stone Soup: open-source, single-player, role-playing roguelike game of exploration and treasure-hunting - ncurses version (terminal) +# SITES: https://github.com/crawl/crawl \ No newline at end of file diff --git a/apps/crawl-ncurses.md b/apps/crawl-ncurses.md deleted file mode 100644 index 82fe93f62..000000000 --- a/apps/crawl-ncurses.md +++ /dev/null @@ -1,8 +0,0 @@ -# CRAWL-NCURSES - - Dungeon Crawl Stone Soup: open-source, single-player, role-playing roguelike game of exploration and treasure-hunting - ncurses version (terminal) - - SITE: https://github.com/crawl/crawl - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/crawl-tiles b/apps/crawl-tiles new file mode 100644 index 000000000..1f59495bb --- /dev/null +++ b/apps/crawl-tiles @@ -0,0 +1,3 @@ +# crawl-tiles +Dungeon Crawl Stone Soup: open-source, single-player, role-playing roguelike game of exploration and treasure-hunting - graphical version (SDL) +# SITES: https://github.com/crawl/crawl \ No newline at end of file diff --git a/apps/crawl-tiles.md b/apps/crawl-tiles.md deleted file mode 100644 index c3c52f292..000000000 --- a/apps/crawl-tiles.md +++ /dev/null @@ -1,8 +0,0 @@ -# CRAWL-TILES - - Dungeon Crawl Stone Soup: open-source, single-player, role-playing roguelike game of exploration and treasure-hunting - graphical version (SDL) - - SITE: https://github.com/crawl/crawl - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/creality-print b/apps/creality-print new file mode 100644 index 000000000..32d887d94 --- /dev/null +++ b/apps/creality-print @@ -0,0 +1,3 @@ +# creality-print +Creality Print is a slicer dedicated to FDM printers. +# SITES: https://www.creality.com/pages/download \ No newline at end of file diff --git a/apps/creality-print.md b/apps/creality-print.md deleted file mode 100644 index f20cb3de8..000000000 --- a/apps/creality-print.md +++ /dev/null @@ -1,8 +0,0 @@ -# CREALITY-PRINT - - Creality Print is a slicer dedicated to FDM printers. - - SITE: https://www.creality.com/pages/download - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/crg-data-tool b/apps/crg-data-tool new file mode 100644 index 000000000..488602aa8 --- /dev/null +++ b/apps/crg-data-tool @@ -0,0 +1,3 @@ +# crg-data-tool +A tool for working with Games Data files from CRG +# SITES: https://github.com/AdamSmasherDerby/CRG-To-Statsbook \ No newline at end of file diff --git a/apps/crg-data-tool.md b/apps/crg-data-tool.md deleted file mode 100644 index f0e7bf0d1..000000000 --- a/apps/crg-data-tool.md +++ /dev/null @@ -1,8 +0,0 @@ -# CRG-DATA-TOOL - - A tool for working with Games Data files from CRG - - SITE: https://github.com/AdamSmasherDerby/CRG-To-Statsbook - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/cric b/apps/cric new file mode 100644 index 000000000..ead421f1d --- /dev/null +++ b/apps/cric @@ -0,0 +1,3 @@ +# cric +Custom Runtime Image Creator +# SITES: https://github.com/trixon/cric \ No newline at end of file diff --git a/apps/cric.md b/apps/cric.md deleted file mode 100644 index efbd519a9..000000000 --- a/apps/cric.md +++ /dev/null @@ -1,8 +0,0 @@ -# CRIC - - Custom Runtime Image Creator - - SITE: https://github.com/trixon/cric - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/crispy-doom b/apps/crispy-doom new file mode 100644 index 000000000..3f6027cb7 --- /dev/null +++ b/apps/crispy-doom @@ -0,0 +1,3 @@ +# crispy-doom +Unofficial, a limit-removing enhanced-resolution Doom source port based on Chocolate Doom. +# SITES: https://github.com/pkgforge-dev/Crispy-Doom-AppImage \ No newline at end of file diff --git a/apps/crispy-doom.md b/apps/crispy-doom.md deleted file mode 100644 index 3797ab052..000000000 --- a/apps/crispy-doom.md +++ /dev/null @@ -1,8 +0,0 @@ -# CRISPY-DOOM - - Unofficial, a limit-removing enhanced-resolution Doom source port based on Chocolate Doom. - - SITE: https://github.com/pkgforge-dev/Crispy-Doom-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/criteria-geo b/apps/criteria-geo new file mode 100644 index 000000000..13b7d23bf --- /dev/null +++ b/apps/criteria-geo @@ -0,0 +1,8 @@ +# criteria-geo +CRITERIA 1D is a one-dimensional agro-hydrological model. It includes soil water fluxes, crop development and water needs, a GIS interface (CRITERIA GEO) for geographical simulations and tools to manage crop and soil parameters. + + The software is written in C++ using Qt libraries, so cross-platform building is possible (Windows, Linux, MacOS). + + CRITERIA-GEO is a GIS interface for managing geographical input/output of CRITERIA-1D model: crop map, soil map, meteorological grid and computation units map. A computation unit is defined as a different combination of crop, soil and meteo data. +# SCREENSHOTS: https://github.com/ARPA-SIMC/CRITERIA1D/raw/master/DOC/img/criteriaGeo.png +# SITES: https://github.com/ARPA-SIMC/CRITERIA1D \ No newline at end of file diff --git a/apps/criteria-geo.md b/apps/criteria-geo.md deleted file mode 100644 index 959e91ae2..000000000 --- a/apps/criteria-geo.md +++ /dev/null @@ -1,14 +0,0 @@ -# CRITERIA-GEO - - CRITERIA 1D is a one-dimensional agro-hydrological model. It includes soil water fluxes, crop development and water needs, a GIS interface (CRITERIA GEO) for geographical simulations and tools to manage crop and soil parameters. - - The software is written in C++ using Qt libraries, so cross-platform building is possible (Windows, Linux, MacOS). - - CRITERIA-GEO is a GIS interface for managing geographical input/output of CRITERIA-1D model: crop map, soil map, meteorological grid and computation units map. A computation unit is defined as a different combination of crop, soil and meteo data. - - ![Screenshot](https://github.com/ARPA-SIMC/CRITERIA1D/raw/master/DOC/img/criteriaGeo.png) - - SITE: https://github.com/ARPA-SIMC/CRITERIA1D - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/criteria1d b/apps/criteria1d new file mode 100644 index 000000000..e68682a41 --- /dev/null +++ b/apps/criteria1d @@ -0,0 +1,13 @@ +# criteria1d +CRITERIA-1D is an agro-hydrological model that simulates one-dimensional water flow in variable saturation soils, crop development, root water extraction and irrigation water needs. + + Soil water flow can be simulated with two different approaches depending on the user's choice: a physically based numerical model or a layer-based conceptual model. Soil and crop parameters can be defined at different levels of detail. It requires daily agro-meteorological data as input: + + minimum and maximum air temperature, total precipitation and, if available, water table depth data to estimate capillary rise. + + CRITERIA-GEO is a GIS interface for managing geo-referenced model projects, it requires a crop map, a soil map and a meteorological grid. Each computation unit is defined as a different combination of crop, soil and meteo. The output is stored in a SQLite database and can be exported to csv, shapefile or raster data using the CriteriaOutput tool. Software is written in C++ using Qt libraries, so cross-platform building is possible (Windows, Linux, Mac OS). + + CRITERIA is operational at Arpae Emilia-Romagna and in the Climate Service for Irrigation Forecasting. It has been used in several international projects (Demeter, Ensembles, Vintage, Moses, Clara, Highlander, ADA) and it is reported in the International Soil Modeling Consortium. + + Criteria1D API is a project of VAIMEE to integrate the model into the most diverse applications, such as in ZENTRA cloud. +# SITES: https://github.com/ARPA-SIMC/CRITERIA1D \ No newline at end of file diff --git a/apps/criteria1d-pro b/apps/criteria1d-pro new file mode 100644 index 000000000..b09df1597 --- /dev/null +++ b/apps/criteria1d-pro @@ -0,0 +1,8 @@ +# criteria1d-pro +CRITERIA 1D is a one-dimensional agro-hydrological model. It includes soil water fluxes, crop development and water needs, a GIS interface (CRITERIA GEO) for geographical simulations and tools to manage crop and soil parameters. + + The software is written in C++ using Qt libraries, so cross-platform building is possible (Windows, Linux, MacOS). + + CRITERIA1D_PRO is a graphical interface to manage a Criteria-1D project, modify the crop parameters, test the model and the main outputs: leaf area index, evaporation and transpiration, root depth and root density, soil moisture and irrigation water needs. +# SCREENSHOTS: https://github.com/ARPA-SIMC/CRITERIA1D/raw/master/DOC/img/cropEditor.png +# SITES: https://github.com/ARPA-SIMC/CRITERIA1D \ No newline at end of file diff --git a/apps/criteria1d-pro.md b/apps/criteria1d-pro.md deleted file mode 100644 index 232a55364..000000000 --- a/apps/criteria1d-pro.md +++ /dev/null @@ -1,14 +0,0 @@ -# CRITERIA1D-PRO - - CRITERIA 1D is a one-dimensional agro-hydrological model. It includes soil water fluxes, crop development and water needs, a GIS interface (CRITERIA GEO) for geographical simulations and tools to manage crop and soil parameters. - - The software is written in C++ using Qt libraries, so cross-platform building is possible (Windows, Linux, MacOS). - - CRITERIA1D_PRO is a graphical interface to manage a Criteria-1D project, modify the crop parameters, test the model and the main outputs: leaf area index, evaporation and transpiration, root depth and root density, soil moisture and irrigation water needs. - - ![Screenshot](https://github.com/ARPA-SIMC/CRITERIA1D/raw/master/DOC/img/cropEditor.png) - - SITE: https://github.com/ARPA-SIMC/CRITERIA1D - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/criteria1d.md b/apps/criteria1d.md deleted file mode 100644 index 5cc60bf77..000000000 --- a/apps/criteria1d.md +++ /dev/null @@ -1,18 +0,0 @@ -# CRITERIA1D - - CRITERIA-1D is an agro-hydrological model that simulates one-dimensional water flow in variable saturation soils, crop development, root water extraction and irrigation water needs. - - Soil water flow can be simulated with two different approaches depending on the user's choice: a physically based numerical model or a layer-based conceptual model. Soil and crop parameters can be defined at different levels of detail. It requires daily agro-meteorological data as input: - - minimum and maximum air temperature, total precipitation and, if available, water table depth data to estimate capillary rise. - - CRITERIA-GEO is a GIS interface for managing geo-referenced model projects, it requires a crop map, a soil map and a meteorological grid. Each computation unit is defined as a different combination of crop, soil and meteo. The output is stored in a SQLite database and can be exported to csv, shapefile or raster data using the CriteriaOutput tool. Software is written in C++ using Qt libraries, so cross-platform building is possible (Windows, Linux, Mac OS). - - CRITERIA is operational at Arpae Emilia-Romagna and in the Climate Service for Irrigation Forecasting. It has been used in several international projects (Demeter, Ensembles, Vintage, Moses, Clara, Highlander, ADA) and it is reported in the International Soil Modeling Consortium. - - Criteria1D API is a project of VAIMEE to integrate the model into the most diverse applications, such as in ZENTRA cloud. - - SITE: https://github.com/ARPA-SIMC/CRITERIA1D - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/cro-chain-desktop-bin b/apps/cro-chain-desktop-bin new file mode 100644 index 000000000..2df172c97 --- /dev/null +++ b/apps/cro-chain-desktop-bin @@ -0,0 +1,3 @@ +# cro-chain-desktop-bin +Crypto.com DeFi Desktop Wallet (AppImage version) +# SITES: https://github.com/crypto-com/chain-desktop-wallet \ No newline at end of file diff --git a/apps/cro-chain-desktop-bin.md b/apps/cro-chain-desktop-bin.md deleted file mode 100644 index 765ebe69f..000000000 --- a/apps/cro-chain-desktop-bin.md +++ /dev/null @@ -1,8 +0,0 @@ -# CRO-CHAIN-DESKTOP-BIN - - Crypto.com DeFi Desktop Wallet (AppImage version) - - SITE: https://github.com/crypto-com/chain-desktop-wallet - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/croc b/apps/croc new file mode 100644 index 000000000..a8ccd52d6 --- /dev/null +++ b/apps/croc @@ -0,0 +1,3 @@ +# croc +Easily and securely send things from one computer to another +# SITES: https://github.com/schollz/croc \ No newline at end of file diff --git a/apps/croc.md b/apps/croc.md deleted file mode 100644 index 976974de1..000000000 --- a/apps/croc.md +++ /dev/null @@ -1,8 +0,0 @@ -# CROC - - Easily and securely send things from one computer to another - - SITE: https://github.com/schollz/croc - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/crock b/apps/crock new file mode 100644 index 000000000..73a9d48a7 --- /dev/null +++ b/apps/crock @@ -0,0 +1,3 @@ +# crock +Crock is rock clock +# SITES: https://github.com/mirumirumi/crock \ No newline at end of file diff --git a/apps/crock.md b/apps/crock.md deleted file mode 100644 index 4c57eea97..000000000 --- a/apps/crock.md +++ /dev/null @@ -1,8 +0,0 @@ -# CROCK - - Crock is rock clock - - SITE: https://github.com/mirumirumi/crock - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/cromagrally b/apps/cromagrally new file mode 100644 index 000000000..903ad418a --- /dev/null +++ b/apps/cromagrally @@ -0,0 +1,4 @@ +# cromagrally +The wildest racing game since man invented the wheel! +# SCREENSHOTS: https://i.ytimg.com/vi/39dzdQEIL10/maxresdefault.jpg +# SITES: https://github.com/jorio/CroMagRally \ No newline at end of file diff --git a/apps/cromagrally-enhanced b/apps/cromagrally-enhanced new file mode 100644 index 000000000..c8145c3d2 --- /dev/null +++ b/apps/cromagrally-enhanced @@ -0,0 +1,3 @@ +# cromagrally-enhanced +Unofficial, the wildest racing game since man invented the wheel! +# SITES: https://github.com/pkgforge-dev/CroMagRally-AppImage-Enhanced \ No newline at end of file diff --git a/apps/cromagrally-enhanced.md b/apps/cromagrally-enhanced.md deleted file mode 100644 index 871f383c7..000000000 --- a/apps/cromagrally-enhanced.md +++ /dev/null @@ -1,8 +0,0 @@ -# CROMAGRALLY-ENHANCED - - Unofficial, the wildest racing game since man invented the wheel! - - SITE: https://github.com/pkgforge-dev/CroMagRally-AppImage-Enhanced - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/cromagrally.md b/apps/cromagrally.md deleted file mode 100644 index c74976272..000000000 --- a/apps/cromagrally.md +++ /dev/null @@ -1,10 +0,0 @@ -# CROMAGRALLY - - The wildest racing game since man invented the wheel! - - ![](https://i.ytimg.com/vi/39dzdQEIL10/maxresdefault.jpg) - - SITE: https://github.com/jorio/CroMagRally - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/cromberg b/apps/cromberg new file mode 100644 index 000000000..6a24e16ca --- /dev/null +++ b/apps/cromberg @@ -0,0 +1,3 @@ +# cromberg +Personal accounting system +# SITES: https://github.com/z17/home-accounting-system \ No newline at end of file diff --git a/apps/cromberg.md b/apps/cromberg.md deleted file mode 100644 index 299dff1fe..000000000 --- a/apps/cromberg.md +++ /dev/null @@ -1,8 +0,0 @@ -# CROMBERG - - Personal accounting system - - SITE: https://github.com/z17/home-accounting-system - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/cromite b/apps/cromite new file mode 100644 index 000000000..391fc66e0 --- /dev/null +++ b/apps/cromite @@ -0,0 +1,3 @@ +# cromite +Unofficial AppImage of the Cromite web browser. [Maintainer=@Samueru-sama] +# SITES: https://github.com/pkgforge-dev/Cromite-AppImage \ No newline at end of file diff --git a/apps/cromite.md b/apps/cromite.md deleted file mode 100644 index 0f8fe833e..000000000 --- a/apps/cromite.md +++ /dev/null @@ -1,8 +0,0 @@ -# CROMITE - - Unofficial AppImage of the Cromite web browser. [Maintainer=@Samueru-sama] - - SITE: https://github.com/pkgforge-dev/Cromite-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/crosscode-map-editor b/apps/crosscode-map-editor new file mode 100644 index 000000000..d170378ed --- /dev/null +++ b/apps/crosscode-map-editor @@ -0,0 +1,3 @@ +# crosscode-map-editor +Map Editor for CrossCode. +# SITES: https://github.com/CCDirectLink/crosscode-map-editor \ No newline at end of file diff --git a/apps/crosscode-map-editor.md b/apps/crosscode-map-editor.md deleted file mode 100644 index fac204f12..000000000 --- a/apps/crosscode-map-editor.md +++ /dev/null @@ -1,8 +0,0 @@ -# CROSSCODE-MAP-EDITOR - - Map Editor for CrossCode. - - SITE: https://github.com/CCDirectLink/crosscode-map-editor - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/crossmacro b/apps/crossmacro new file mode 100644 index 000000000..24078e666 --- /dev/null +++ b/apps/crossmacro @@ -0,0 +1,3 @@ +# crossmacro +A modern mouse and keyboard macro recording and playback application. +# SITES: https://github.com/alper-han/CrossMacro \ No newline at end of file diff --git a/apps/crossmacro.md b/apps/crossmacro.md deleted file mode 100644 index fd0fb14fb..000000000 --- a/apps/crossmacro.md +++ /dev/null @@ -1,8 +0,0 @@ -# CROSSMACRO - - A modern mouse and keyboard macro recording and playback application. - - SITE: https://github.com/alper-han/CrossMacro - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/crossmobile b/apps/crossmobile new file mode 100644 index 000000000..32c6d61b9 --- /dev/null +++ b/apps/crossmobile @@ -0,0 +1,3 @@ +# crossmobile +Create native iOS, Android, Windows Phone and Desktop applications in Java. Write it once, and produce sophisticated multiplatform applications. +# SITES: https://github.com/crossmob/CrossMobile \ No newline at end of file diff --git a/apps/crossmobile.md b/apps/crossmobile.md deleted file mode 100644 index 166d3fad1..000000000 --- a/apps/crossmobile.md +++ /dev/null @@ -1,8 +0,0 @@ -# CROSSMOBILE - - Create native iOS, Android, Windows Phone and Desktop applications in Java. Write it once, and produce sophisticated multiplatform applications. - - SITE: https://github.com/crossmob/CrossMobile - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/crow-translate b/apps/crow-translate new file mode 100644 index 000000000..71bca216a --- /dev/null +++ b/apps/crow-translate @@ -0,0 +1,3 @@ +# crow-translate +A simple and lightweight translator that allows you to translate and speak text using Google, Yandex Bing, LibreTranslate and Lingva. +# SITES: https://invent.kde.org/office/crow-translate \ No newline at end of file diff --git a/apps/crow-translate.md b/apps/crow-translate.md deleted file mode 100644 index 76faa7d88..000000000 --- a/apps/crow-translate.md +++ /dev/null @@ -1,8 +0,0 @@ -# CROW-TRANSLATE - - A simple and lightweight translator that allows you to translate and speak text using Google, Yandex Bing, LibreTranslate and Lingva. - - SITE: https://invent.kde.org/office/crow-translate - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/cryplicity b/apps/cryplicity new file mode 100644 index 000000000..dd1f612fc --- /dev/null +++ b/apps/cryplicity @@ -0,0 +1,3 @@ +# cryplicity +Electron application boilerplate based on React, React Router, Webpack, +# SITES: https://github.com/Kthulu120/mangle \ No newline at end of file diff --git a/apps/cryplicity.md b/apps/cryplicity.md deleted file mode 100644 index 29e3c43dc..000000000 --- a/apps/cryplicity.md +++ /dev/null @@ -1,8 +0,0 @@ -# CRYPLICITY - - Electron application boilerplate based on React, React Router, Webpack, - - SITE: https://github.com/Kthulu120/mangle - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/crypter b/apps/crypter new file mode 100644 index 000000000..3dc647442 --- /dev/null +++ b/apps/crypter @@ -0,0 +1,3 @@ +# crypter +An innovative, convenient and secure cross-platform crypto app +# SITES: https://github.com/HR/Crypter \ No newline at end of file diff --git a/apps/crypter.md b/apps/crypter.md deleted file mode 100644 index 96504522a..000000000 --- a/apps/crypter.md +++ /dev/null @@ -1,8 +0,0 @@ -# CRYPTER - - An innovative, convenient and secure cross-platform crypto app - - SITE: https://github.com/HR/Crypter - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/cryptocam-companion b/apps/cryptocam-companion new file mode 100644 index 000000000..472e479ec --- /dev/null +++ b/apps/cryptocam-companion @@ -0,0 +1,3 @@ +# cryptocam-companion +Graphical interface to decrypt videos taken by Cryptocam. +# SITES: https://gitlab.com/cryptocam/cryptocam-companion \ No newline at end of file diff --git a/apps/cryptocam-companion.md b/apps/cryptocam-companion.md deleted file mode 100644 index 8466c9e57..000000000 --- a/apps/cryptocam-companion.md +++ /dev/null @@ -1,8 +0,0 @@ -# CRYPTOCAM-COMPANION - - Graphical interface to decrypt videos taken by Cryptocam. - - SITE: https://gitlab.com/cryptocam/cryptocam-companion - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/cryptomator b/apps/cryptomator new file mode 100644 index 000000000..e2946ad0e --- /dev/null +++ b/apps/cryptomator @@ -0,0 +1,3 @@ +# cryptomator +Cloud Storage Encryption Utility +# SITES: https://github.com/cryptomator/cryptomator \ No newline at end of file diff --git a/apps/cryptomator.md b/apps/cryptomator.md deleted file mode 100644 index 3e64a67e7..000000000 --- a/apps/cryptomator.md +++ /dev/null @@ -1,8 +0,0 @@ -# CRYPTOMATOR - - Cloud Storage Encryption Utility - - SITE: https://github.com/cryptomator/cryptomator - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/cryptr b/apps/cryptr new file mode 100644 index 000000000..028923374 --- /dev/null +++ b/apps/cryptr @@ -0,0 +1,3 @@ +# cryptr +A GUI for Vault +# SITES: https://github.com/adobe/cryptr \ No newline at end of file diff --git a/apps/cryptr.md b/apps/cryptr.md deleted file mode 100644 index 868d03260..000000000 --- a/apps/cryptr.md +++ /dev/null @@ -1,8 +0,0 @@ -# CRYPTR - - A GUI for Vault - - SITE: https://github.com/adobe/cryptr - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/cs-demo-manager b/apps/cs-demo-manager new file mode 100644 index 000000000..072534baa --- /dev/null +++ b/apps/cs-demo-manager @@ -0,0 +1,3 @@ +# cs-demo-manager +Companion application for your Counter-Strike demos. +# SITES: https://github.com/akiver/cs-demo-manager \ No newline at end of file diff --git a/apps/cs-demo-manager.md b/apps/cs-demo-manager.md deleted file mode 100644 index ae6acc151..000000000 --- a/apps/cs-demo-manager.md +++ /dev/null @@ -1,8 +0,0 @@ -# CS-DEMO-MANAGER - - Companion application for your Counter-Strike demos. - - SITE: https://github.com/akiver/cs-demo-manager - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/cscrypto b/apps/cscrypto new file mode 100644 index 000000000..6946aafe4 --- /dev/null +++ b/apps/cscrypto @@ -0,0 +1,3 @@ +# cscrypto +An innovative, convenient and secure crypto app. +# SITES: https://github.com/CREDITSCOM/cscrypto \ No newline at end of file diff --git a/apps/cscrypto.md b/apps/cscrypto.md deleted file mode 100644 index 84a13d771..000000000 --- a/apps/cscrypto.md +++ /dev/null @@ -1,8 +0,0 @@ -# CSCRYPTO - - An innovative, convenient and secure crypto app. - - SITE: https://github.com/CREDITSCOM/cscrypto - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/csplit b/apps/csplit new file mode 100644 index 000000000..b145e846f --- /dev/null +++ b/apps/csplit @@ -0,0 +1,4 @@ +# csplit + File into sections determined by context. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/csplit.md b/apps/csplit.md deleted file mode 100644 index 9d9116af2..000000000 --- a/apps/csplit.md +++ /dev/null @@ -1,8 +0,0 @@ -# CSPLIT - - File into sections determined by context. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/ctool b/apps/ctool new file mode 100644 index 000000000..51d678bf3 --- /dev/null +++ b/apps/ctool @@ -0,0 +1,3 @@ +# ctool +Common Tools for Program Development. +# SITES: https://ctool.dev/ \ No newline at end of file diff --git a/apps/ctool.md b/apps/ctool.md deleted file mode 100644 index 8194a7d65..000000000 --- a/apps/ctool.md +++ /dev/null @@ -1,8 +0,0 @@ -# CTOOL - - Common Tools for Program Development. - - SITE: https://ctool.dev/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ctop b/apps/ctop new file mode 100644 index 000000000..93dd6b406 --- /dev/null +++ b/apps/ctop @@ -0,0 +1,3 @@ +# ctop +Top-like interface for container metrics. +# SITES: https://github.com/bcicen/ctop \ No newline at end of file diff --git a/apps/ctop.md b/apps/ctop.md deleted file mode 100644 index 8f2cbc0f2..000000000 --- a/apps/ctop.md +++ /dev/null @@ -1,8 +0,0 @@ -# CTOP - - Top-like interface for container metrics. - - SITE: https://github.com/bcicen/ctop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/cuberite b/apps/cuberite new file mode 100644 index 000000000..da698cac7 --- /dev/null +++ b/apps/cuberite @@ -0,0 +1,3 @@ +# cuberite +Unofficial, a lightweight, fast and extensible game server for Minecraft. +# SITES: https://github.com/pkgforge-dev/Cuberite-AppImage \ No newline at end of file diff --git a/apps/cuberite.md b/apps/cuberite.md deleted file mode 100644 index e4b101a38..000000000 --- a/apps/cuberite.md +++ /dev/null @@ -1,8 +0,0 @@ -# CUBERITE - - Unofficial, a lightweight, fast and extensible game server for Minecraft. - - SITE: https://github.com/pkgforge-dev/Cuberite-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/cubyz b/apps/cubyz new file mode 100644 index 000000000..c6dc43091 --- /dev/null +++ b/apps/cubyz @@ -0,0 +1,4 @@ +# cubyz + Unofficial AppImage of Cubyz. +# SITES: https://github.com/pkgforge-dev/cubyz-appimage +# SOURCES: https://github.com/pkgforge-dev/cubyz-appimage \ No newline at end of file diff --git a/apps/cubyz.md b/apps/cubyz.md deleted file mode 100644 index 87a9a5338..000000000 --- a/apps/cubyz.md +++ /dev/null @@ -1,8 +0,0 @@ -# CUBYZ - - Unofficial AppImage of Cubyz. - - SITE: https://github.com/pkgforge-dev/cubyz-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/cudatext b/apps/cudatext new file mode 100644 index 000000000..9256b3b9e --- /dev/null +++ b/apps/cudatext @@ -0,0 +1,3 @@ +# cudatext +A cross-platform text editor, written in Object Pascal. +# SITES: https://cudatext.github.io \ No newline at end of file diff --git a/apps/cudatext.md b/apps/cudatext.md deleted file mode 100644 index 9b45277d2..000000000 --- a/apps/cudatext.md +++ /dev/null @@ -1,8 +0,0 @@ -# CUDATEXT - - A cross-platform text editor, written in Object Pascal. - - SITE: https://cudatext.github.io - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/cura b/apps/cura new file mode 100644 index 000000000..4872ac431 --- /dev/null +++ b/apps/cura @@ -0,0 +1,3 @@ +# cura +Cura is an open source slicing application for 3D printers. +# SITES: https://ultimaker.com/software/ultimaker-cura \ No newline at end of file diff --git a/apps/cura-beta b/apps/cura-beta new file mode 100644 index 000000000..b5bcabe04 --- /dev/null +++ b/apps/cura-beta @@ -0,0 +1,5 @@ +# cura-beta +Cura is an open source slicing application for 3D printers. + + This is the beta version. +# SITES: https://ultimaker.com/software/ultimaker-cura \ No newline at end of file diff --git a/apps/cura-beta.md b/apps/cura-beta.md deleted file mode 100644 index b9e17b2f9..000000000 --- a/apps/cura-beta.md +++ /dev/null @@ -1,10 +0,0 @@ -# CURA-BETA - - Cura is an open source slicing application for 3D printers. - - This is the beta version. - - SITE: https://ultimaker.com/software/ultimaker-cura - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/cura.md b/apps/cura.md deleted file mode 100644 index 93ef7d725..000000000 --- a/apps/cura.md +++ /dev/null @@ -1,8 +0,0 @@ -# CURA - - Cura is an open source slicing application for 3D printers. - - SITE: https://ultimaker.com/software/ultimaker-cura - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/curl b/apps/curl new file mode 100644 index 000000000..f772c917f --- /dev/null +++ b/apps/curl @@ -0,0 +1,3 @@ +# curl +Command line tool and library for transferring data with URLs. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/curl.md b/apps/curl.md deleted file mode 100644 index 2cc773e7f..000000000 --- a/apps/curl.md +++ /dev/null @@ -1,8 +0,0 @@ -# CURL - - Command line tool and library for transferring data with URLs. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/curlie b/apps/curlie new file mode 100644 index 000000000..64f49f1b7 --- /dev/null +++ b/apps/curlie @@ -0,0 +1,3 @@ +# curlie +The power of curl, the ease of use of httpie. +# SITES: https://github.com/rs/curlie \ No newline at end of file diff --git a/apps/curlie.md b/apps/curlie.md deleted file mode 100644 index f9e05bf9a..000000000 --- a/apps/curlie.md +++ /dev/null @@ -1,8 +0,0 @@ -# CURLIE - - The power of curl, the ease of use of httpie. - - SITE: https://github.com/rs/curlie - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/curseforge b/apps/curseforge new file mode 100644 index 000000000..27a368b84 --- /dev/null +++ b/apps/curseforge @@ -0,0 +1,3 @@ +# curseforge +Discover endless mods for your favorite games, or forge your own and share them with millions. +# SITES: https://www.curseforge.com \ No newline at end of file diff --git a/apps/curseforge.md b/apps/curseforge.md deleted file mode 100644 index f805c3c84..000000000 --- a/apps/curseforge.md +++ /dev/null @@ -1,8 +0,0 @@ -# CURSEFORGE - - Discover endless mods for your favorite games, or forge your own and share them with millions. - - SITE: https://www.curseforge.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/cursor b/apps/cursor new file mode 100644 index 000000000..bc6f07e90 --- /dev/null +++ b/apps/cursor @@ -0,0 +1,3 @@ +# cursor +Built to make you extraordinarily productive, Cursor is the best way to code with AI. +# SITES: https://www.cursor.com \ No newline at end of file diff --git a/apps/cursor-cli b/apps/cursor-cli new file mode 100644 index 000000000..239eae2c2 --- /dev/null +++ b/apps/cursor-cli @@ -0,0 +1,3 @@ +# cursor-cli +Unofficial, AI-assisted development CLI tool. +# SITES: https://github.com/pkgforge-dev/cursor-cli-AppImage \ No newline at end of file diff --git a/apps/cursor-cli.md b/apps/cursor-cli.md deleted file mode 100644 index 520497ac4..000000000 --- a/apps/cursor-cli.md +++ /dev/null @@ -1,8 +0,0 @@ -# CURSOR-CLI - - Unofficial, AI-assisted development CLI tool. - - SITE: https://github.com/pkgforge-dev/cursor-cli-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/cursor.md b/apps/cursor.md deleted file mode 100644 index f78b44b15..000000000 --- a/apps/cursor.md +++ /dev/null @@ -1,8 +0,0 @@ -# CURSOR - - Built to make you extraordinarily productive, Cursor is the best way to code with AI. - - SITE: https://www.cursor.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/customrpc b/apps/customrpc new file mode 100644 index 000000000..f783e073d --- /dev/null +++ b/apps/customrpc @@ -0,0 +1,3 @@ +# customrpc +An electron-vue project +# SITES: https://github.com/KurozeroPB/CustomRPC \ No newline at end of file diff --git a/apps/customrpc.md b/apps/customrpc.md deleted file mode 100644 index 0d557f0a2..000000000 --- a/apps/customrpc.md +++ /dev/null @@ -1,8 +0,0 @@ -# CUSTOMRPC - - An electron-vue project - - SITE: https://github.com/KurozeroPB/CustomRPC - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/cut b/apps/cut new file mode 100644 index 000000000..ad513dbc4 --- /dev/null +++ b/apps/cut @@ -0,0 +1,3 @@ +# cut +From each line of files. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/cut.md b/apps/cut.md deleted file mode 100644 index 6d8f24792..000000000 --- a/apps/cut.md +++ /dev/null @@ -1,8 +0,0 @@ -# CUT - - From each line of files. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/cutechess b/apps/cutechess new file mode 100644 index 000000000..c21612ade --- /dev/null +++ b/apps/cutechess @@ -0,0 +1,3 @@ +# cutechess +Cute Chess is a graphical user interface, command-line interface and a library for playing chess. +# SITES: https://github.com/cutechess/cutechess \ No newline at end of file diff --git a/apps/cutechess.md b/apps/cutechess.md deleted file mode 100644 index 9713e2337..000000000 --- a/apps/cutechess.md +++ /dev/null @@ -1,8 +0,0 @@ -# CUTECHESS - - Cute Chess is a graphical user interface, command-line interface and a library for playing chess. - - SITE: https://github.com/cutechess/cutechess - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/cutepeaks b/apps/cutepeaks new file mode 100644 index 000000000..2a4336c48 --- /dev/null +++ b/apps/cutepeaks @@ -0,0 +1,3 @@ +# cutepeaks +A simple sanger trace file viewer +# SITES: https://github.com/labsquare/CutePeaks \ No newline at end of file diff --git a/apps/cutepeaks.md b/apps/cutepeaks.md deleted file mode 100644 index a127e8434..000000000 --- a/apps/cutepeaks.md +++ /dev/null @@ -1,8 +0,0 @@ -# CUTEPEAKS - - A simple sanger trace file viewer - - SITE: https://github.com/labsquare/CutePeaks - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/cutevariant b/apps/cutevariant new file mode 100644 index 000000000..b606ab9b8 --- /dev/null +++ b/apps/cutevariant @@ -0,0 +1,3 @@ +# cutevariant +A genetics variant filtering tools +# SITES: https://github.com/labsquare/CuteVariant-cpp \ No newline at end of file diff --git a/apps/cutevariant.md b/apps/cutevariant.md deleted file mode 100644 index 3f94d0698..000000000 --- a/apps/cutevariant.md +++ /dev/null @@ -1,8 +0,0 @@ -# CUTEVARIANT - - A genetics variant filtering tools - - SITE: https://github.com/labsquare/CuteVariant-cpp - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/cutter b/apps/cutter new file mode 100644 index 000000000..e81697944 --- /dev/null +++ b/apps/cutter @@ -0,0 +1,3 @@ +# cutter +Cutter is a free and open-source reverse engineering platform powered by rizin. It aims at being an advanced and customizable reverse engineering platform while keeping the user experience in mind. Cutter is created by reverse engineers for reverse engineers. +# SITES: https://github.com/rizinorg/cutter \ No newline at end of file diff --git a/apps/cutter.md b/apps/cutter.md deleted file mode 100644 index a2bf9a4a1..000000000 --- a/apps/cutter.md +++ /dev/null @@ -1,8 +0,0 @@ -# CUTTER - - Cutter is a free and open-source reverse engineering platform powered by rizin. It aims at being an advanced and customizable reverse engineering platform while keeping the user experience in mind. Cutter is created by reverse engineers for reverse engineers. - - SITE: https://github.com/rizinorg/cutter - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/cvrx b/apps/cvrx new file mode 100644 index 000000000..1bf20d0f5 --- /dev/null +++ b/apps/cvrx @@ -0,0 +1,3 @@ +# cvrx +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!. +# SITES: https://github.com/Malthbern/CVRX-Linux \ No newline at end of file diff --git a/apps/cvrx.md b/apps/cvrx.md deleted file mode 100644 index 0ef8f4010..000000000 --- a/apps/cvrx.md +++ /dev/null @@ -1,8 +0,0 @@ -# CVRX - - 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!. - - SITE: https://github.com/Malthbern/CVRX-Linux - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/czkawka b/apps/czkawka new file mode 100644 index 000000000..c6f6bc88b --- /dev/null +++ b/apps/czkawka @@ -0,0 +1,3 @@ +# czkawka +Multi functional app to find duplicates, empty folders, similar images etc. +# SITES: https://github.com/qarmin/czkawka \ No newline at end of file diff --git a/apps/czkawka.md b/apps/czkawka.md deleted file mode 100644 index be0ee6952..000000000 --- a/apps/czkawka.md +++ /dev/null @@ -1,8 +0,0 @@ -# CZKAWKA - - Multi functional app to find duplicates, empty folders, similar images etc. - - SITE: https://github.com/qarmin/czkawka - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/d1x-rebirth b/apps/d1x-rebirth new file mode 100644 index 000000000..5df220b2b --- /dev/null +++ b/apps/d1x-rebirth @@ -0,0 +1,3 @@ +# d1x-rebirth +Unofficial, a source port of the Descent engine. +# SITES: https://github.com/pkgforge-dev/D1X-Rebirth-AppImage \ No newline at end of file diff --git a/apps/d1x-rebirth.md b/apps/d1x-rebirth.md deleted file mode 100644 index 79084d344..000000000 --- a/apps/d1x-rebirth.md +++ /dev/null @@ -1,8 +0,0 @@ -# D1X-REBIRTH - - Unofficial, a source port of the Descent engine. - - SITE: https://github.com/pkgforge-dev/D1X-Rebirth-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/d2x-rebirth b/apps/d2x-rebirth new file mode 100644 index 000000000..3f0a3a674 --- /dev/null +++ b/apps/d2x-rebirth @@ -0,0 +1,3 @@ +# d2x-rebirth +Unofficial, a source port of the Descent 2 engine. +# SITES: https://github.com/pkgforge-dev/D2X-Rebirth-AppImage \ No newline at end of file diff --git a/apps/d2x-rebirth.md b/apps/d2x-rebirth.md deleted file mode 100644 index 9aca28f80..000000000 --- a/apps/d2x-rebirth.md +++ /dev/null @@ -1,8 +0,0 @@ -# D2X-REBIRTH - - Unofficial, a source port of the Descent 2 engine. - - SITE: https://github.com/pkgforge-dev/D2X-Rebirth-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/daggerfall-unity b/apps/daggerfall-unity new file mode 100644 index 000000000..cc43605ca --- /dev/null +++ b/apps/daggerfall-unity @@ -0,0 +1,3 @@ +# daggerfall-unity +Unofficial, open source recreation of Daggerfall in the Unity engine. +# SITES: https://github.com/pkgforge-dev/Daggerfall-Unity-AppImage \ No newline at end of file diff --git a/apps/daggerfall-unity.md b/apps/daggerfall-unity.md deleted file mode 100644 index 721108551..000000000 --- a/apps/daggerfall-unity.md +++ /dev/null @@ -1,8 +0,0 @@ -# DAGGERFALL-UNITY - - Unofficial, open source recreation of Daggerfall in the Unity engine. - - SITE: https://github.com/pkgforge-dev/Daggerfall-Unity-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/daisy b/apps/daisy new file mode 100644 index 000000000..d9e17a670 --- /dev/null +++ b/apps/daisy @@ -0,0 +1,3 @@ +# daisy +A beautiful, easy-to-use, ad-free manga and light novel client that supports both. (Anime Home). +# SITES: https://github.com/niuhuan/daisy \ No newline at end of file diff --git a/apps/daisy.md b/apps/daisy.md deleted file mode 100644 index bb4413dcd..000000000 --- a/apps/daisy.md +++ /dev/null @@ -1,8 +0,0 @@ -# DAISY - - A beautiful, easy-to-use, ad-free manga and light novel client that supports both. (Anime Home). - - SITE: https://github.com/niuhuan/daisy - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/dana b/apps/dana new file mode 100644 index 000000000..48af75453 --- /dev/null +++ b/apps/dana @@ -0,0 +1,3 @@ +# dana +A desktop client for the Dana learning box. +# SITES: https://github.com/b00f/dana \ No newline at end of file diff --git a/apps/dana.md b/apps/dana.md deleted file mode 100644 index dfef3c93e..000000000 --- a/apps/dana.md +++ /dev/null @@ -1,8 +0,0 @@ -# DANA - - A desktop client for the Dana learning box. - - SITE: https://github.com/b00f/dana - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/darkplaces b/apps/darkplaces new file mode 100644 index 000000000..7598970aa --- /dev/null +++ b/apps/darkplaces @@ -0,0 +1,3 @@ +# darkplaces +The DarkPlaces Quake engine, created by LadyHavoc. +# SITES: https://github.com/pkgforge-dev/DarkPlaces-AppImage \ No newline at end of file diff --git a/apps/darkplaces.md b/apps/darkplaces.md deleted file mode 100644 index 2b02e8baa..000000000 --- a/apps/darkplaces.md +++ /dev/null @@ -1,8 +0,0 @@ -# DARKPLACES - - The DarkPlaces Quake engine, created by LadyHavoc. - - SITE: https://github.com/pkgforge-dev/DarkPlaces-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/darktable b/apps/darktable new file mode 100644 index 000000000..66b1a5e51 --- /dev/null +++ b/apps/darktable @@ -0,0 +1,3 @@ +# darktable +Darktable is an open source photography workflow application and raw developer. +# SITES: https://github.com/darktable-org/darktable \ No newline at end of file diff --git a/apps/darktable-nightly b/apps/darktable-nightly new file mode 100644 index 000000000..87133077d --- /dev/null +++ b/apps/darktable-nightly @@ -0,0 +1,4 @@ +# darktable-nightly + Photography workflow application and raw developer (nightly). +# SITES: https://github.com/darktable-org/darktable +# SOURCES: https://github.com/darktable-org/darktable \ No newline at end of file diff --git a/apps/darktable-nightly.md b/apps/darktable-nightly.md deleted file mode 100644 index 5bd2b2d9d..000000000 --- a/apps/darktable-nightly.md +++ /dev/null @@ -1,8 +0,0 @@ -# DARKTABLE-NIGHTLY - - Photography workflow application and raw developer (nightly). - - SITE: https://github.com/darktable-org/darktable - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/darktable.md b/apps/darktable.md deleted file mode 100644 index a8116107c..000000000 --- a/apps/darktable.md +++ /dev/null @@ -1,8 +0,0 @@ -# DARKTABLE - - Darktable is an open source photography workflow application and raw developer. - - SITE: https://github.com/darktable-org/darktable - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/dashy-app b/apps/dashy-app new file mode 100644 index 000000000..b35bc4f5d --- /dev/null +++ b/apps/dashy-app @@ -0,0 +1,3 @@ +# dashy-app +Dashboard creation application +# SITES: https://github.com/GordonSmith/dashy-app \ No newline at end of file diff --git a/apps/dashy-app.md b/apps/dashy-app.md deleted file mode 100644 index f6eca2cac..000000000 --- a/apps/dashy-app.md +++ /dev/null @@ -1,8 +0,0 @@ -# DASHY-APP - - Dashboard creation application - - SITE: https://github.com/GordonSmith/dashy-app - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/database-dossier b/apps/database-dossier new file mode 100644 index 000000000..c9fa5b3f4 --- /dev/null +++ b/apps/database-dossier @@ -0,0 +1,4 @@ +# database-dossier +Database Dossier is a free database user interface program, you can use it for browsing and querying your databases. At present it can be used for accessing MariaDB and MySql database servers. +# SCREENSHOTS: https://media.githubusercontent.com/media/nshiell/database-dossier/master/artwork/screenshot-kde.png +# SITES: https://github.com/nshiell/database-dossier \ No newline at end of file diff --git a/apps/database-dossier.md b/apps/database-dossier.md deleted file mode 100644 index c7b0f9346..000000000 --- a/apps/database-dossier.md +++ /dev/null @@ -1,10 +0,0 @@ -# DATABASE-DOSSIER - - Database Dossier is a free database user interface program, you can use it for browsing and querying your databases. At present it can be used for accessing MariaDB and MySql database servers. - - ![Screenshot](https://media.githubusercontent.com/media/nshiell/database-dossier/master/artwork/screenshot-kde.png) - - SITE: https://github.com/nshiell/database-dossier - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/dataset-annotator b/apps/dataset-annotator new file mode 100644 index 000000000..e0d1e020a --- /dev/null +++ b/apps/dataset-annotator @@ -0,0 +1,3 @@ +# dataset-annotator +An annotation tool for a dataset. +# SITES: https://github.com/omenyayl/dataset-annotator \ No newline at end of file diff --git a/apps/dataset-annotator.md b/apps/dataset-annotator.md deleted file mode 100644 index e15d728f1..000000000 --- a/apps/dataset-annotator.md +++ /dev/null @@ -1,8 +0,0 @@ -# DATASET-ANNOTATOR - - An annotation tool for a dataset. - - SITE: https://github.com/omenyayl/dataset-annotator - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/datcord b/apps/datcord new file mode 100644 index 000000000..7e4620528 --- /dev/null +++ b/apps/datcord @@ -0,0 +1,3 @@ +# datcord +A Discord client. +# SITES: https://github.com/gamingdoom/datcord \ No newline at end of file diff --git a/apps/datcord.md b/apps/datcord.md deleted file mode 100644 index 0a5e5876f..000000000 --- a/apps/datcord.md +++ /dev/null @@ -1,8 +0,0 @@ -# DATCORD - - A Discord client. - - SITE: https://github.com/gamingdoom/datcord - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/date b/apps/date new file mode 100644 index 000000000..2facc057a --- /dev/null +++ b/apps/date @@ -0,0 +1,4 @@ +# date + A header-only library which builds upon . This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/date.md b/apps/date.md deleted file mode 100644 index 691811e77..000000000 --- a/apps/date.md +++ /dev/null @@ -1,8 +0,0 @@ -# DATE - - A header-only library which builds upon . This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/dawnlightsearch b/apps/dawnlightsearch new file mode 100644 index 000000000..06e1f2be9 --- /dev/null +++ b/apps/dawnlightsearch @@ -0,0 +1,3 @@ +# dawnlightsearch +Dawnlight Search Engine +# SITES: https://github.com/chg-hou/DawnlightSearch \ No newline at end of file diff --git a/apps/dawnlightsearch.md b/apps/dawnlightsearch.md deleted file mode 100644 index bddd82599..000000000 --- a/apps/dawnlightsearch.md +++ /dev/null @@ -1,9 +0,0 @@ -# DAWNLIGHTSEARCH - - Dawnlight Search Engine - - SITE: https://github.com/chg-hou/DawnlightSearch - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | - diff --git a/apps/dayon b/apps/dayon new file mode 100644 index 000000000..07a168be7 --- /dev/null +++ b/apps/dayon @@ -0,0 +1,3 @@ +# dayon +Dayon! - A cross-platform remote desktop assistance solution for your family and friends. +# SITES: https://github.com/RetGal/Dayon \ No newline at end of file diff --git a/apps/dayon.md b/apps/dayon.md deleted file mode 100644 index a22245689..000000000 --- a/apps/dayon.md +++ /dev/null @@ -1,8 +0,0 @@ -# DAYON - - Dayon! - A cross-platform remote desktop assistance solution for your family and friends. - - SITE: https://github.com/RetGal/Dayon - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/dbeaver-ce b/apps/dbeaver-ce new file mode 100644 index 000000000..492787bae --- /dev/null +++ b/apps/dbeaver-ce @@ -0,0 +1,5 @@ +# dbeaver-ce +DBeaver Community is a free cross-platform database tool for developers, database administrators, analysts, and everyone working with data. It supports all popular SQL databases like MySQL, MariaDB, PostgreSQL, SQLite, Apache Family, and more. + + This is the Unofficial AppImage. +# SITES: https://github.com/valicm/dbeaver-ce-appimage \ No newline at end of file diff --git a/apps/dbeaver-ce.md b/apps/dbeaver-ce.md deleted file mode 100644 index 8b3ed4f98..000000000 --- a/apps/dbeaver-ce.md +++ /dev/null @@ -1,10 +0,0 @@ -# DBEAVER-CE - - DBeaver Community is a free cross-platform database tool for developers, database administrators, analysts, and everyone working with data. It supports all popular SQL databases like MySQL, MariaDB, PostgreSQL, SQLite, Apache Family, and more. - - This is the Unofficial AppImage. - - SITE: https://github.com/valicm/dbeaver-ce-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/dbee b/apps/dbee new file mode 100644 index 000000000..1c7b85643 --- /dev/null +++ b/apps/dbee @@ -0,0 +1,3 @@ +# dbee +Fast & Minimalistic Database Browser. +# SITES: https://github.com/murat-cileli/dbee \ No newline at end of file diff --git a/apps/dbee.md b/apps/dbee.md deleted file mode 100644 index 1a934511f..000000000 --- a/apps/dbee.md +++ /dev/null @@ -1,8 +0,0 @@ -# DBEE - - Fast & Minimalistic Database Browser. - - SITE: https://github.com/murat-cileli/dbee - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/dbet-wallet b/apps/dbet-wallet new file mode 100644 index 000000000..a6a357ee2 --- /dev/null +++ b/apps/dbet-wallet @@ -0,0 +1,3 @@ +# dbet-wallet +DBET Wallet +# SITES: https://github.com/decent-bet/platform-wallet \ No newline at end of file diff --git a/apps/dbet-wallet.md b/apps/dbet-wallet.md deleted file mode 100644 index 1662ce206..000000000 --- a/apps/dbet-wallet.md +++ /dev/null @@ -1,8 +0,0 @@ -# DBET-WALLET - - DBET Wallet - - SITE: https://github.com/decent-bet/platform-wallet - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/dbgate b/apps/dbgate new file mode 100644 index 000000000..93f4a620b --- /dev/null +++ b/apps/dbgate @@ -0,0 +1,3 @@ +# dbgate +Opensource database administration tool +# SITES: https://github.com/dbgate/dbgate \ No newline at end of file diff --git a/apps/dbgate-premium b/apps/dbgate-premium new file mode 100644 index 000000000..a4134cfdb --- /dev/null +++ b/apps/dbgate-premium @@ -0,0 +1,3 @@ +# dbgate-premium +Opensource database administration tool (premium version) +# SITES: https://github.com/dbgate/dbgate \ No newline at end of file diff --git a/apps/dbgate-premium.md b/apps/dbgate-premium.md deleted file mode 100644 index e28468ca9..000000000 --- a/apps/dbgate-premium.md +++ /dev/null @@ -1,8 +0,0 @@ -# DBGATE-PREMIUM - - Opensource database administration tool (premium version) - - SITE: https://github.com/dbgate/dbgate - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/dbgate.md b/apps/dbgate.md deleted file mode 100644 index 034c69031..000000000 --- a/apps/dbgate.md +++ /dev/null @@ -1,8 +0,0 @@ -# DBGATE - - Opensource database administration tool - - SITE: https://github.com/dbgate/dbgate - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/dbin b/apps/dbin new file mode 100644 index 000000000..805a54605 --- /dev/null +++ b/apps/dbin @@ -0,0 +1,3 @@ +# dbin +📦 Poor man's package manager. +2930 statically linked binaries in the repos! The easy to use, easy to get, suckless software distribution system +# SITES: https://github.com/xplshn/dbin \ No newline at end of file diff --git a/apps/dbin.md b/apps/dbin.md deleted file mode 100644 index b8ac0150b..000000000 --- a/apps/dbin.md +++ /dev/null @@ -1,8 +0,0 @@ -# DBIN - - 📦 Poor man's package manager. +2930 statically linked binaries in the repos! The easy to use, easy to get, suckless software distribution system - - SITE: https://github.com/xplshn/dbin - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/dd b/apps/dd new file mode 100644 index 000000000..bdfcd3f26 --- /dev/null +++ b/apps/dd @@ -0,0 +1,3 @@ +# dd +Convert and copy a file. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/dd.md b/apps/dd.md deleted file mode 100644 index 20b7713a1..000000000 --- a/apps/dd.md +++ /dev/null @@ -1,8 +0,0 @@ -# DD - - Convert and copy a file. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/deadbeef b/apps/deadbeef new file mode 100644 index 000000000..097f55123 --- /dev/null +++ b/apps/deadbeef @@ -0,0 +1,3 @@ +# deadbeef +Unofficial AppImage of the DeaDBeeF music player (Stable version). +# SITES: https://github.com/pkgforge-dev/DeaDBeeF-AppImage \ No newline at end of file diff --git a/apps/deadbeef-nightly b/apps/deadbeef-nightly new file mode 100644 index 000000000..bb1897e27 --- /dev/null +++ b/apps/deadbeef-nightly @@ -0,0 +1,3 @@ +# deadbeef-nightly +Unofficial AppImage of the DeaDBeeF music player (Nightly version). +# SITES: https://github.com/pkgforge-dev/DeaDBeeF-AppImage \ No newline at end of file diff --git a/apps/deadbeef-nightly.md b/apps/deadbeef-nightly.md deleted file mode 100644 index 391750d70..000000000 --- a/apps/deadbeef-nightly.md +++ /dev/null @@ -1,8 +0,0 @@ -# DEADBEEF-NIGHTLY - - Unofficial AppImage of the DeaDBeeF music player (Nightly version). - - SITE: https://github.com/pkgforge-dev/DeaDBeeF-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/deadbeef.md b/apps/deadbeef.md deleted file mode 100644 index eff62bcbb..000000000 --- a/apps/deadbeef.md +++ /dev/null @@ -1,8 +0,0 @@ -# DEADBEEF - - Unofficial AppImage of the DeaDBeeF music player (Stable version). - - SITE: https://github.com/pkgforge-dev/DeaDBeeF-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/deadgame-2048 b/apps/deadgame-2048 new file mode 100644 index 000000000..089241595 --- /dev/null +++ b/apps/deadgame-2048 @@ -0,0 +1,3 @@ +# deadgame-2048 +An open-source GUI prototyping tool that is available for ALL platforms. +# SITES: https://github.com/TKNgu/DeadGame-2048 \ No newline at end of file diff --git a/apps/deadgame-2048.md b/apps/deadgame-2048.md deleted file mode 100644 index f0a17f03b..000000000 --- a/apps/deadgame-2048.md +++ /dev/null @@ -1,8 +0,0 @@ -# DEADGAME-2048 - - An open-source GUI prototyping tool that is available for ALL platforms. - - SITE: https://github.com/TKNgu/DeadGame-2048 - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/dealers-choice b/apps/dealers-choice new file mode 100644 index 000000000..244d7640f --- /dev/null +++ b/apps/dealers-choice @@ -0,0 +1,4 @@ +# dealers-choice +Multiplayer Stud and Draw Poker +# SCREENSHOTS: https://github.com/user-attachments/assets/86fe4f45-6a93-4cfd-86b6-c6bc457261f0 +# SITES: https://dealer-s-choice.github.io/ \ No newline at end of file diff --git a/apps/dealers-choice.md b/apps/dealers-choice.md deleted file mode 100644 index 2d0cf70fa..000000000 --- a/apps/dealers-choice.md +++ /dev/null @@ -1,10 +0,0 @@ -# DEALERS-CHOICE - - Multiplayer Poker with Draw, Stud, Texas Hold’em and Omaha - - ![Image](https://raw.githubusercontent.com/Dealer-s-Choice/dealer-s-choice.github.io/90401753ad83fe66372ad3b3a73fb478a43260fb/screenshots/dealers_choice_v0.0.14_omaha.png) - - SITE: https://dealer-s-choice.github.io/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/deb2appimage b/apps/deb2appimage new file mode 100644 index 000000000..136cf74bc --- /dev/null +++ b/apps/deb2appimage @@ -0,0 +1,3 @@ +# deb2appimage +Build AppImages from deb packages on any distro with simple json configuration. +# SITES: https://github.com/simoniz0r/deb2appimage \ No newline at end of file diff --git a/apps/deb2appimage.md b/apps/deb2appimage.md deleted file mode 100644 index a20f73858..000000000 --- a/apps/deb2appimage.md +++ /dev/null @@ -1,8 +0,0 @@ -# DEB2APPIMAGE - - Build AppImages from deb packages on any distro with simple json configuration. - - SITE: https://github.com/simoniz0r/deb2appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/deckboard b/apps/deckboard new file mode 100644 index 000000000..1f888abfb --- /dev/null +++ b/apps/deckboard @@ -0,0 +1,3 @@ +# deckboard +Control your PC with your phone in easy way possible. +# SITES: https://deckboard.app/ \ No newline at end of file diff --git a/apps/deckboard.md b/apps/deckboard.md deleted file mode 100644 index 4db341c29..000000000 --- a/apps/deckboard.md +++ /dev/null @@ -1,8 +0,0 @@ -# DECKBOARD - - Control your PC with your phone in easy way possible. - - SITE: https://deckboard.app/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/dedop-studio b/apps/dedop-studio new file mode 100644 index 000000000..96843c092 --- /dev/null +++ b/apps/dedop-studio @@ -0,0 +1,3 @@ +# dedop-studio +DeDop Studio +# SITES: https://github.com/DeDop/dedop-studio \ No newline at end of file diff --git a/apps/dedop-studio.md b/apps/dedop-studio.md deleted file mode 100644 index 68e5d853d..000000000 --- a/apps/dedop-studio.md +++ /dev/null @@ -1,8 +0,0 @@ -# DEDOP-STUDIO - - DeDop Studio - - SITE: https://github.com/DeDop/dedop-studio - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/deepl-linux-electron b/apps/deepl-linux-electron new file mode 100644 index 000000000..1f53e82f7 --- /dev/null +++ b/apps/deepl-linux-electron @@ -0,0 +1,5 @@ +# deepl-linux-electron +DeepL(https://www.deepl.com/) Integration for Linux. + + Select text in any application and simply press Ctrl+C and another shortcut to translate it. +# SITES: https://github.com/kumakichi/Deepl-linux-electron \ No newline at end of file diff --git a/apps/deepl-linux-electron.md b/apps/deepl-linux-electron.md deleted file mode 100644 index dd6611caf..000000000 --- a/apps/deepl-linux-electron.md +++ /dev/null @@ -1,10 +0,0 @@ -# DEEPL-LINUX-ELECTRON - - DeepL(https://www.deepl.com/) Integration for Linux. - - Select text in any application and simply press Ctrl+C and another shortcut to translate it. - - SITE: https://github.com/kumakichi/Deepl-linux-electron - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/deeplx b/apps/deeplx new file mode 100644 index 000000000..fb5465806 --- /dev/null +++ b/apps/deeplx @@ -0,0 +1,3 @@ +# deeplx +DeepL Free API (No TOKEN required). +# SITES: https://github.com/OwO-Network/DeepLX \ No newline at end of file diff --git a/apps/deeplx.md b/apps/deeplx.md deleted file mode 100644 index e6d3c525a..000000000 --- a/apps/deeplx.md +++ /dev/null @@ -1,8 +0,0 @@ -# DEEPLX - - DeepL Free API (No TOKEN required). - - SITE: https://github.com/OwO-Network/DeepLX - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/deepnotes b/apps/deepnotes new file mode 100644 index 000000000..6dcfb7902 --- /dev/null +++ b/apps/deepnotes @@ -0,0 +1,3 @@ +# deepnotes +End-to-end encrypted visual note-taking tool with deep page navigation. +# SITES: https://github.com/DeepNotesApp/DeepNotes \ No newline at end of file diff --git a/apps/deepnotes.md b/apps/deepnotes.md deleted file mode 100644 index e533d7911..000000000 --- a/apps/deepnotes.md +++ /dev/null @@ -1,8 +0,0 @@ -# DEEPNOTES - - End-to-end encrypted visual note-taking tool with deep page navigation. - - SITE: https://github.com/DeepNotesApp/DeepNotes - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/deeptags b/apps/deeptags new file mode 100644 index 000000000..bede1ce01 --- /dev/null +++ b/apps/deeptags @@ -0,0 +1,3 @@ +# deeptags +DeepTags is a markdown notes manager with support for nested tags. +# SITES: https://github.com/SZinedine/DeepTags \ No newline at end of file diff --git a/apps/deeptags.md b/apps/deeptags.md deleted file mode 100644 index 52f9a322a..000000000 --- a/apps/deeptags.md +++ /dev/null @@ -1,8 +0,0 @@ -# DEEPTAGS - - DeepTags is a markdown notes manager with support for nested tags. - - SITE: https://github.com/SZinedine/DeepTags - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/deerportal b/apps/deerportal new file mode 100644 index 000000000..ae9a5dbf6 --- /dev/null +++ b/apps/deerportal @@ -0,0 +1,3 @@ +# deerportal +Full of the diamonds :gem: board game driven by a :deer: Deer :deer: god and classical elements :fire: 💦 :dash: :earth_africa: +# SITES: https://github.com/deerportal/deerportal \ No newline at end of file diff --git a/apps/deerportal.md b/apps/deerportal.md deleted file mode 100644 index d7ab0009d..000000000 --- a/apps/deerportal.md +++ /dev/null @@ -1,8 +0,0 @@ -# DEERPORTAL - - Full of the diamonds :gem: board game driven by a :deer: Deer :deer: god and classical elements :fire: 💦 :dash: :earth_africa: - - SITE: https://github.com/deerportal/deerportal - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/deezer b/apps/deezer new file mode 100644 index 000000000..ffaca6576 --- /dev/null +++ b/apps/deezer @@ -0,0 +1,3 @@ +# deezer +An universal linux port of deezer, supporting both Flatpak and AppImage. Being based on the windows app, it allows downloading your songs to listen to them offline! +# SITES: https://github.com/aunetx/deezer-linux \ No newline at end of file diff --git a/apps/deezer-enhanced b/apps/deezer-enhanced new file mode 100644 index 000000000..023a5b21f --- /dev/null +++ b/apps/deezer-enhanced @@ -0,0 +1,4 @@ +# deezer-enhanced + An unofficial application for Deezer with enhanced features. +# SITES: https://github.com/duzda/deezer-enhanced +# SOURCES: https://github.com/duzda/deezer-enhanced \ No newline at end of file diff --git a/apps/deezer-enhanced.md b/apps/deezer-enhanced.md deleted file mode 100644 index c33c95800..000000000 --- a/apps/deezer-enhanced.md +++ /dev/null @@ -1,8 +0,0 @@ -# DEEZER-ENHANCED - - An unofficial application for Deezer with enhanced features. - - SITE: https://github.com/duzda/deezer-enhanced - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/deezer.md b/apps/deezer.md deleted file mode 100644 index e7ac1ee44..000000000 --- a/apps/deezer.md +++ /dev/null @@ -1,8 +0,0 @@ -# DEEZER - - An universal linux port of deezer, supporting both Flatpak and AppImage. Being based on the windows app, it allows downloading your songs to listen to them offline! - - SITE: https://github.com/aunetx/deezer-linux - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/defichain-app b/apps/defichain-app new file mode 100644 index 000000000..35bc4b97f --- /dev/null +++ b/apps/defichain-app @@ -0,0 +1,3 @@ +# defichain-app +DefiChain Wallet AppImage +# SITES: https://defichain.com/explore/wallets \ No newline at end of file diff --git a/apps/defichain-app.md b/apps/defichain-app.md deleted file mode 100644 index a13eba6a4..000000000 --- a/apps/defichain-app.md +++ /dev/null @@ -1,8 +0,0 @@ -# DEFICHAIN-APP - - DefiChain Wallet AppImage - - SITE: https://defichain.com/explore/wallets - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/defold b/apps/defold new file mode 100644 index 000000000..6743d07cf --- /dev/null +++ b/apps/defold @@ -0,0 +1,3 @@ +# defold +Unofficial, Defold is a completely free to use game engine for development of games. +# SITES: https://github.com/pkgforge-dev/Defold-AppImage \ No newline at end of file diff --git a/apps/defold.md b/apps/defold.md deleted file mode 100644 index 239815c26..000000000 --- a/apps/defold.md +++ /dev/null @@ -1,8 +0,0 @@ -# DEFOLD - - Unofficial, Defold is a completely free to use game engine for development of games. - - SITE: https://github.com/pkgforge-dev/Defold-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/delta b/apps/delta new file mode 100644 index 000000000..d12f17ae5 --- /dev/null +++ b/apps/delta @@ -0,0 +1,3 @@ +# delta +A syntax-highlighting pager for git, diff, grep, and blame output +# SITES: https://github.com/dandavison/delta \ No newline at end of file diff --git a/apps/delta.md b/apps/delta.md deleted file mode 100644 index 10fe9c48d..000000000 --- a/apps/delta.md +++ /dev/null @@ -1,8 +0,0 @@ -# DELTA - - A syntax-highlighting pager for git, diff, grep, and blame output - - SITE: https://github.com/dandavison/delta - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/deltachat-desktop b/apps/deltachat-desktop new file mode 100644 index 000000000..e2f67f81e --- /dev/null +++ b/apps/deltachat-desktop @@ -0,0 +1,3 @@ +# deltachat-desktop +Desktop Application for delta.chat +# SITES: https://github.com/deltachat/deltachat-desktop \ No newline at end of file diff --git a/apps/deltachat-desktop.md b/apps/deltachat-desktop.md deleted file mode 100644 index 54c92378f..000000000 --- a/apps/deltachat-desktop.md +++ /dev/null @@ -1,8 +0,0 @@ -# DELTACHAT-DESKTOP - - Desktop Application for delta.chat - - SITE: https://github.com/deltachat/deltachat-desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/demonizer b/apps/demonizer new file mode 100644 index 000000000..325add152 --- /dev/null +++ b/apps/demonizer @@ -0,0 +1,3 @@ +# demonizer +Demonic corruption fantasy shmup +# SITES: https://github.com/IoriBranford/demonizer \ No newline at end of file diff --git a/apps/demonizer.md b/apps/demonizer.md deleted file mode 100644 index a6291637b..000000000 --- a/apps/demonizer.md +++ /dev/null @@ -1,8 +0,0 @@ -# DEMONIZER - - Demonic corruption fantasy shmup - - SITE: https://github.com/IoriBranford/demonizer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/denise b/apps/denise new file mode 100644 index 000000000..c5d37c120 --- /dev/null +++ b/apps/denise @@ -0,0 +1,4 @@ +# denise + Unofficial AppImage of Denise. +# SITES: https://github.com/pkgforge-dev/denise-appimage +# SOURCES: https://github.com/pkgforge-dev/denise-appimage \ No newline at end of file diff --git a/apps/denise.md b/apps/denise.md deleted file mode 100644 index 0711e99dd..000000000 --- a/apps/denise.md +++ /dev/null @@ -1,8 +0,0 @@ -# DENISE - - Unofficial AppImage of Denise. - - SITE: https://github.com/pkgforge-dev/denise-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/densify b/apps/densify new file mode 100644 index 000000000..864657a6b --- /dev/null +++ b/apps/densify @@ -0,0 +1,3 @@ +# densify +A GTK+ GUI Application written in Python that simplifies compressing PDF files with Ghostscript. +# SITES: https://github.com/hkdb/Densify \ No newline at end of file diff --git a/apps/densify.md b/apps/densify.md deleted file mode 100644 index fe17ece1d..000000000 --- a/apps/densify.md +++ /dev/null @@ -1,8 +0,0 @@ -# DENSIFY - - A GTK+ GUI Application written in Python that simplifies compressing PDF files with Ghostscript. - - SITE: https://github.com/hkdb/Densify - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/deployer b/apps/deployer new file mode 100644 index 000000000..1010c81c6 --- /dev/null +++ b/apps/deployer @@ -0,0 +1,3 @@ +# deployer +Cross-platform application to deploy your applications through Jenkins. +# SITES: https://github.com/ziishaned/deployer \ No newline at end of file diff --git a/apps/deployer.md b/apps/deployer.md deleted file mode 100644 index 39026df41..000000000 --- a/apps/deployer.md +++ /dev/null @@ -1,8 +0,0 @@ -# DEPLOYER - - Cross-platform application to deploy your applications through Jenkins. - - SITE: https://github.com/ziishaned/deployer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/deskreen b/apps/deskreen new file mode 100644 index 000000000..3febcd7aa --- /dev/null +++ b/apps/deskreen @@ -0,0 +1,4 @@ +# deskreen +Turns any device with a web browser into a secondary screen for + your computer. +# SITES: https://deskreen.com/ \ No newline at end of file diff --git a/apps/deskreen.md b/apps/deskreen.md deleted file mode 100644 index f8693ad66..000000000 --- a/apps/deskreen.md +++ /dev/null @@ -1,9 +0,0 @@ -# DESKREEN - - Turns any device with a web browser into a secondary screen for - your computer. - - SITE: https://deskreen.com/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/deskthing b/apps/deskthing new file mode 100644 index 000000000..31b91902f --- /dev/null +++ b/apps/deskthing @@ -0,0 +1,3 @@ +# deskthing +Desk Thing: The Discord Thing, Trello Thing, The Weather Thing, The Macro Thing. Just not The Car Thing anymore. +# SITES: https://github.com/ItsRiprod/DeskThing \ No newline at end of file diff --git a/apps/deskthing.md b/apps/deskthing.md deleted file mode 100644 index feee5e133..000000000 --- a/apps/deskthing.md +++ /dev/null @@ -1,8 +0,0 @@ -# DESKTHING - - Desk Thing: The Discord Thing, Trello Thing, The Weather Thing, The Macro Thing. Just not The Car Thing anymore. - - SITE: https://github.com/ItsRiprod/DeskThing - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/desmume b/apps/desmume new file mode 100644 index 000000000..2f5459c29 --- /dev/null +++ b/apps/desmume @@ -0,0 +1,3 @@ +# desmume +Unofficial AppImage of the DeSmuME emulator. [Maintainer=@Samueru-sama] +# SITES: https://github.com/pkgforge-dev/DeSmuME-AppImage \ No newline at end of file diff --git a/apps/desmume.md b/apps/desmume.md deleted file mode 100644 index 2f209eb73..000000000 --- a/apps/desmume.md +++ /dev/null @@ -1,8 +0,0 @@ -# DESMUME - - Unofficial AppImage of the DeSmuME emulator. [Maintainer=@Samueru-sama] - - SITE: https://github.com/pkgforge-dev/DeSmuME-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/destiny b/apps/destiny new file mode 100644 index 000000000..bc7edd22f --- /dev/null +++ b/apps/destiny @@ -0,0 +1,3 @@ +# destiny +The latest stable AppImage of Destiny, a Cross-platform Magic Wormhole graphical client. +# SITES: https://github.com/LeastAuthority/destiny \ No newline at end of file diff --git a/apps/destiny.md b/apps/destiny.md deleted file mode 100644 index 4faef98ce..000000000 --- a/apps/destiny.md +++ /dev/null @@ -1,8 +0,0 @@ -# DESTINY - - The latest stable AppImage of Destiny, a Cross-platform Magic Wormhole graphical client. - - SITE: https://github.com/LeastAuthority/destiny - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/dethrace b/apps/dethrace new file mode 100644 index 000000000..5fad9c681 --- /dev/null +++ b/apps/dethrace @@ -0,0 +1,3 @@ +# dethrace +Reverse engineering the 1997 game "Carmageddon". +# SITES: https://github.com/pkgforge-dev/dethrace-AppImage \ No newline at end of file diff --git a/apps/dethrace.md b/apps/dethrace.md deleted file mode 100644 index c22a0e11e..000000000 --- a/apps/dethrace.md +++ /dev/null @@ -1,8 +0,0 @@ -# DETHRACE - - Reverse engineering the 1997 game "Carmageddon". - - SITE: https://github.com/pkgforge-dev/dethrace-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/devclean b/apps/devclean new file mode 100644 index 000000000..3b420064d --- /dev/null +++ b/apps/devclean @@ -0,0 +1,3 @@ +# devclean +A CLI and Desktop GUI app to clean dev dependencies (node_modules, cache) and more. +# SITES: https://github.com/HuakunShen/devclean \ No newline at end of file diff --git a/apps/devclean.md b/apps/devclean.md deleted file mode 100644 index bfb09250e..000000000 --- a/apps/devclean.md +++ /dev/null @@ -1,8 +0,0 @@ -# DEVCLEAN - - A CLI and Desktop GUI app to clean dev dependencies (node_modules, cache) and more. - - SITE: https://github.com/HuakunShen/devclean - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/devdocs-desktop b/apps/devdocs-desktop new file mode 100644 index 000000000..32dcb0541 --- /dev/null +++ b/apps/devdocs-desktop @@ -0,0 +1,3 @@ +# devdocs-desktop +Desktop client for devdocs.io +# SITES: https://github.com/egoist/devdocs-desktop \ No newline at end of file diff --git a/apps/devdocs-desktop.md b/apps/devdocs-desktop.md deleted file mode 100644 index 7970d5da0..000000000 --- a/apps/devdocs-desktop.md +++ /dev/null @@ -1,8 +0,0 @@ -# DEVDOCS-DESKTOP - - Desktop client for devdocs.io - - SITE: https://github.com/egoist/devdocs-desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/devhub b/apps/devhub new file mode 100644 index 000000000..559a9172a --- /dev/null +++ b/apps/devhub @@ -0,0 +1,3 @@ +# devhub +TweetDeck for GitHub +# SITES: https://github.com/devhubapp/devhub \ No newline at end of file diff --git a/apps/devhub.md b/apps/devhub.md deleted file mode 100644 index c96bb0999..000000000 --- a/apps/devhub.md +++ /dev/null @@ -1,8 +0,0 @@ -# DEVHUB - - TweetDeck for GitHub - - SITE: https://github.com/devhubapp/devhub - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/devilutionx b/apps/devilutionx new file mode 100644 index 000000000..667cd126d --- /dev/null +++ b/apps/devilutionx @@ -0,0 +1,4 @@ +# devilutionx +Diablo build for modern operating systems. +# SCREENSHOTS: https://user-images.githubusercontent.com/204594/113578478-26912400-9623-11eb-9ff6-9bd9717462b6.png +# SITES: https://github.com/diasurgical/devilutionX \ No newline at end of file diff --git a/apps/devilutionx-enhanced b/apps/devilutionx-enhanced new file mode 100644 index 000000000..c9a3ca50c --- /dev/null +++ b/apps/devilutionx-enhanced @@ -0,0 +1,3 @@ +# devilutionx-enhanced +Unofficial, Diablo build for modern operating systems. +# SITES: https://github.com/pkgforge-dev/DevilutionX-AppImage-Enhanced \ No newline at end of file diff --git a/apps/devilutionx-enhanced.md b/apps/devilutionx-enhanced.md deleted file mode 100644 index d725d63ee..000000000 --- a/apps/devilutionx-enhanced.md +++ /dev/null @@ -1,8 +0,0 @@ -# DEVILUTIONX-ENHANCED - - Unofficial, Diablo build for modern operating systems. - - SITE: https://github.com/pkgforge-dev/DevilutionX-AppImage-Enhanced - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/devilutionx.md b/apps/devilutionx.md deleted file mode 100644 index 825b04778..000000000 --- a/apps/devilutionx.md +++ /dev/null @@ -1,10 +0,0 @@ -# DEVILUTIONX - - Diablo build for modern operating systems. - - ![Screenshot](https://user-images.githubusercontent.com/204594/113578478-26912400-9623-11eb-9ff6-9bd9717462b6.png) - - SITE: https://github.com/diasurgical/devilutionX - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/devpod b/apps/devpod new file mode 100644 index 000000000..ce8cdae6f --- /dev/null +++ b/apps/devpod @@ -0,0 +1,3 @@ +# devpod +Codespaces but open-source, client-only and unopinionated: Works with any IDE and lets you use any cloud, kubernetes or just localhost docker. +# SITES: https://github.com/loft-sh/devpod \ No newline at end of file diff --git a/apps/devpod.md b/apps/devpod.md deleted file mode 100644 index 4005bd954..000000000 --- a/apps/devpod.md +++ /dev/null @@ -1,8 +0,0 @@ -# DEVPOD - - Codespaces but open-source, client-only and unopinionated: Works with any IDE and lets you use any cloud, kubernetes or just localhost docker. - - SITE: https://github.com/loft-sh/devpod - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/devsidecar b/apps/devsidecar new file mode 100644 index 000000000..e274994ef --- /dev/null +++ b/apps/devsidecar @@ -0,0 +1,3 @@ +# devsidecar +开发者边车,github打不开,github加速,git clone加速,git release下载加速,stackoverflow加速 +# SITES: https://github.com/docmirror/dev-sidecar \ No newline at end of file diff --git a/apps/devsidecar.md b/apps/devsidecar.md deleted file mode 100644 index b0f241ccb..000000000 --- a/apps/devsidecar.md +++ /dev/null @@ -1,8 +0,0 @@ -# DEVSIDECAR - - 开发者边车,github打不开,github加速,git clone加速,git release下载加速,stackoverflow加速 - - SITE: https://github.com/docmirror/dev-sidecar - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/devtools-x b/apps/devtools-x new file mode 100644 index 000000000..335ac6e84 --- /dev/null +++ b/apps/devtools-x @@ -0,0 +1,3 @@ +# devtools-x +Collection of offline first developer utilities available as desktop application. all in one place, cross-platform! +# SITES: https://github.com/fosslife/devtools-x \ No newline at end of file diff --git a/apps/devtools-x.md b/apps/devtools-x.md deleted file mode 100644 index 6beefd67c..000000000 --- a/apps/devtools-x.md +++ /dev/null @@ -1,8 +0,0 @@ -# DEVTOOLS-X - - Collection of offline first developer utilities available as desktop application. all in one place, cross-platform! - - SITE: https://github.com/fosslife/devtools-x - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/devtoys b/apps/devtoys new file mode 100644 index 000000000..eb9729b0d --- /dev/null +++ b/apps/devtoys @@ -0,0 +1,3 @@ +# devtoys +A Swiss Army knife for developers. +# SITES: https://github.com/DevToys-app/DevToys \ No newline at end of file diff --git a/apps/devtoys.md b/apps/devtoys.md deleted file mode 100644 index 65d4819c6..000000000 --- a/apps/devtoys.md +++ /dev/null @@ -1,8 +0,0 @@ -# DEVTOYS - - A Swiss Army knife for developers. - - SITE: https://github.com/DevToys-app/DevToys - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/dexter-dev-env b/apps/dexter-dev-env new file mode 100644 index 000000000..3fa57e7ed --- /dev/null +++ b/apps/dexter-dev-env @@ -0,0 +1,3 @@ +# dexter-dev-env +Dexter Development Environment +# SITES: https://github.com/cfry/dde \ No newline at end of file diff --git a/apps/dexter-dev-env.md b/apps/dexter-dev-env.md deleted file mode 100644 index 3844e4f12..000000000 --- a/apps/dexter-dev-env.md +++ /dev/null @@ -1,8 +0,0 @@ -# DEXTER-DEV-ENV - - Dexter Development Environment - - SITE: https://github.com/cfry/dde - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/dezor b/apps/dezor new file mode 100644 index 000000000..7343d52e4 --- /dev/null +++ b/apps/dezor @@ -0,0 +1,3 @@ +# dezor +The web browser including VPN and Adblocker. +# SITES: https://dezor.net \ No newline at end of file diff --git a/apps/dezor.md b/apps/dezor.md deleted file mode 100644 index e565e7d0c..000000000 --- a/apps/dezor.md +++ /dev/null @@ -1,8 +0,0 @@ -# DEZOR - - The web browser including VPN and Adblocker. - - SITE: https://dezor.net - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/df b/apps/df new file mode 100644 index 000000000..2cbbbafa0 --- /dev/null +++ b/apps/df @@ -0,0 +1,4 @@ +# df + Report file system space usage. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/df.md b/apps/df.md deleted file mode 100644 index 50cf82ad0..000000000 --- a/apps/df.md +++ /dev/null @@ -1,8 +0,0 @@ -# DF - - Report file system space usage. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/dfdemo b/apps/dfdemo new file mode 100644 index 000000000..edbda40cd --- /dev/null +++ b/apps/dfdemo @@ -0,0 +1,3 @@ +# dfdemo +A thin Tcl/Tk GUI around the df POSIX command. +# SITES: https://github.com/julien-montmartin/statcl-df-demo \ No newline at end of file diff --git a/apps/dfdemo.md b/apps/dfdemo.md deleted file mode 100644 index 3ed32fd71..000000000 --- a/apps/dfdemo.md +++ /dev/null @@ -1,8 +0,0 @@ -# DFDEMO - - A thin Tcl/Tk GUI around the df POSIX command. - - SITE: https://github.com/julien-montmartin/statcl-df-demo - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/dfilemanager b/apps/dfilemanager new file mode 100644 index 000000000..aa2ee753e --- /dev/null +++ b/apps/dfilemanager @@ -0,0 +1,3 @@ +# dfilemanager +Browse files +# SITES: https://github.com/probonopd/dfilemanager \ No newline at end of file diff --git a/apps/dfilemanager.md b/apps/dfilemanager.md deleted file mode 100644 index d19f3fced..000000000 --- a/apps/dfilemanager.md +++ /dev/null @@ -1,8 +0,0 @@ -# DFILEMANAGER - - Browse files - - SITE: https://github.com/probonopd/dfilemanager - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/dhammapada b/apps/dhammapada new file mode 100644 index 000000000..ceecaa39e --- /dev/null +++ b/apps/dhammapada @@ -0,0 +1,3 @@ +# dhammapada +A simple Dhammapada verse viewer for the Linux desktop. +# SITES: https://github.com/miroku-devel/dhammapada \ No newline at end of file diff --git a/apps/dhammapada.md b/apps/dhammapada.md deleted file mode 100644 index 0775f3f61..000000000 --- a/apps/dhammapada.md +++ /dev/null @@ -1,8 +0,0 @@ -# DHAMMAPADA - - A simple Dhammapada verse viewer for the Linux desktop. - - SITE: https://github.com/miroku-devel/dhammapada - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/dhewm3 b/apps/dhewm3 new file mode 100644 index 000000000..fcb306985 --- /dev/null +++ b/apps/dhewm3 @@ -0,0 +1,3 @@ +# dhewm3 +Doom 3 GPL source port. +# SITES: https://github.com/pkgforge-dev/dhewm3-AppImage \ No newline at end of file diff --git a/apps/dhewm3.md b/apps/dhewm3.md deleted file mode 100644 index 9a9f8d20e..000000000 --- a/apps/dhewm3.md +++ /dev/null @@ -1,8 +0,0 @@ -# DHEWM3 - - Doom 3 GPL source port. - - SITE: https://github.com/pkgforge-dev/dhewm3-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/dicomautomaton b/apps/dicomautomaton new file mode 100644 index 000000000..728ca13ce --- /dev/null +++ b/apps/dicomautomaton @@ -0,0 +1,3 @@ +# dicomautomaton +Tools for working with medical physics data +# SITES: https://github.com/hdclark/DICOMautomaton \ No newline at end of file diff --git a/apps/dicomautomaton.md b/apps/dicomautomaton.md deleted file mode 100644 index 5deb34274..000000000 --- a/apps/dicomautomaton.md +++ /dev/null @@ -1,8 +0,0 @@ -# DICOMAUTOMATON - - Tools for working with medical physics data - - SITE: https://github.com/hdclark/DICOMautomaton - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/didder b/apps/didder new file mode 100644 index 000000000..ec6ceaea5 --- /dev/null +++ b/apps/didder @@ -0,0 +1,3 @@ +# didder +An extensive, fast, and accurate command-line image dithering tool. +# SITES: https://github.com/makew0rld/didder \ No newline at end of file diff --git a/apps/didder.md b/apps/didder.md deleted file mode 100644 index 921a8cdbd..000000000 --- a/apps/didder.md +++ /dev/null @@ -1,8 +0,0 @@ -# DIDDER - - An extensive, fast, and accurate command-line image dithering tool. - - SITE: https://github.com/makew0rld/didder - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/die-engine b/apps/die-engine new file mode 100644 index 000000000..490b32700 --- /dev/null +++ b/apps/die-engine @@ -0,0 +1,3 @@ +# die-engine +Detect It Easy, or abbreviated "DIE" is a program for determining types of files. +# SITES: https://github.com/horsicq/DIE-engine \ No newline at end of file diff --git a/apps/die-engine.md b/apps/die-engine.md deleted file mode 100644 index ae5b3343a..000000000 --- a/apps/die-engine.md +++ /dev/null @@ -1,8 +0,0 @@ -# DIE-ENGINE - - Detect It Easy, or abbreviated "DIE" is a program for determining types of files. - - SITE: https://github.com/horsicq/DIE-engine - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/diff b/apps/diff new file mode 100644 index 000000000..d8a1a2b3f --- /dev/null +++ b/apps/diff @@ -0,0 +1,3 @@ +# diff +Compare files line by line. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/diff.md b/apps/diff.md deleted file mode 100644 index 96d95256b..000000000 --- a/apps/diff.md +++ /dev/null @@ -1,8 +0,0 @@ -# DIFF - - Compare files line by line. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/diffpdf b/apps/diffpdf new file mode 100644 index 000000000..3424d5d1d --- /dev/null +++ b/apps/diffpdf @@ -0,0 +1,4 @@ +# diffpdf + Unofficial AppImage of DiffPDF. +# SITES: https://github.com/pkgforge-dev/diffpdf-appimage +# SOURCES: https://github.com/pkgforge-dev/diffpdf-appimage \ No newline at end of file diff --git a/apps/diffpdf.md b/apps/diffpdf.md deleted file mode 100644 index a226e433a..000000000 --- a/apps/diffpdf.md +++ /dev/null @@ -1,8 +0,0 @@ -# DIFFPDF - - Unofficial AppImage of DiffPDF. - - SITE: https://github.com/pkgforge-dev/diffpdf-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/diffre b/apps/diffre new file mode 100644 index 000000000..71b2c6727 --- /dev/null +++ b/apps/diffre @@ -0,0 +1,4 @@ +# diffre + A fast, local file and folder diff tool like Beyond Compare, built for the desktop. +# SITES: https://github.com/printfapp/diffre +# SOURCES: https://github.com/printfapp/diffre \ No newline at end of file diff --git a/apps/diffre.md b/apps/diffre.md deleted file mode 100644 index d935c2722..000000000 --- a/apps/diffre.md +++ /dev/null @@ -1,8 +0,0 @@ -# DIFFRE - - A fast, local file and folder diff tool like Beyond Compare, built for the desktop. - - SITE: https://github.com/printfapp/diffre - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/diffuse b/apps/diffuse new file mode 100644 index 000000000..2122698e1 --- /dev/null +++ b/apps/diffuse @@ -0,0 +1,3 @@ +# diffuse +A music player which connects to your cloud/distributed storage +# SITES: https://github.com/icidasset/diffuse \ No newline at end of file diff --git a/apps/diffuse.md b/apps/diffuse.md deleted file mode 100644 index 88fe854dc..000000000 --- a/apps/diffuse.md +++ /dev/null @@ -1,8 +0,0 @@ -# DIFFUSE - - A music player which connects to your cloud/distributed storage - - SITE: https://github.com/icidasset/diffuse - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/digikam b/apps/digikam new file mode 100644 index 000000000..6cd6ca2c7 --- /dev/null +++ b/apps/digikam @@ -0,0 +1,3 @@ +# digikam +DigiKam is an advanced digital photo management application, which makes importing and organizing digital photos a “snap”. The photos are organized in albums which can be sorted chronologically, by folder layout or by custom collections. +# SITES: https://www.digikam.org \ No newline at end of file diff --git a/apps/digikam-dev b/apps/digikam-dev new file mode 100644 index 000000000..7597e92e9 --- /dev/null +++ b/apps/digikam-dev @@ -0,0 +1,5 @@ +# digikam-dev +DigiKam is an advanced digital photo management application, which makes importing and organizing digital photos a “snap”. The photos are organized in albums which can be sorted chronologically, by folder layout or by custom collections. + + This is the develpment release. +# SITES: https://www.digikam.org \ No newline at end of file diff --git a/apps/digikam-dev.md b/apps/digikam-dev.md deleted file mode 100644 index 195a04a36..000000000 --- a/apps/digikam-dev.md +++ /dev/null @@ -1,10 +0,0 @@ -# DIGIKAM-DEV - - DigiKam is an advanced digital photo management application, which makes importing and organizing digital photos a “snap”. The photos are organized in albums which can be sorted chronologically, by folder layout or by custom collections. - - This is the develpment release. - - SITE: https://www.digikam.org - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/digikam.md b/apps/digikam.md deleted file mode 100644 index 4e185daa7..000000000 --- a/apps/digikam.md +++ /dev/null @@ -1,8 +0,0 @@ -# DIGIKAM - - DigiKam is an advanced digital photo management application, which makes importing and organizing digital photos a “snap”. The photos are organized in albums which can be sorted chronologically, by folder layout or by custom collections. - - SITE: https://www.digikam.org - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/dillo b/apps/dillo new file mode 100644 index 000000000..d7e0ca8d9 --- /dev/null +++ b/apps/dillo @@ -0,0 +1,4 @@ +# dillo + Unofficial AppImage of Dillo. +# SITES: https://github.com/pkgforge-dev/dillo-appimage +# SOURCES: https://github.com/pkgforge-dev/dillo-appimage \ No newline at end of file diff --git a/apps/dillo.md b/apps/dillo.md deleted file mode 100644 index 4edd36e06..000000000 --- a/apps/dillo.md +++ /dev/null @@ -1,8 +0,0 @@ -# DILLO - - Unofficial AppImage of Dillo. - - SITE: https://github.com/pkgforge-dev/dillo-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/dingtalk b/apps/dingtalk new file mode 100644 index 000000000..2cc488777 --- /dev/null +++ b/apps/dingtalk @@ -0,0 +1,3 @@ +# dingtalk +DingTalk desktop version based on electron. +# SITES: https://github.com/nashaofu/dingtalk \ No newline at end of file diff --git a/apps/dingtalk.md b/apps/dingtalk.md deleted file mode 100644 index 9706be4ae..000000000 --- a/apps/dingtalk.md +++ /dev/null @@ -1,8 +0,0 @@ -# DINGTALK - - DingTalk desktop version based on electron. - - SITE: https://github.com/nashaofu/dingtalk - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/dinosaurplanetrecompiled b/apps/dinosaurplanetrecompiled new file mode 100644 index 000000000..803a9ca8d --- /dev/null +++ b/apps/dinosaurplanetrecompiled @@ -0,0 +1,3 @@ +# dinosaurplanetrecompiled +A static recompilation/native port of the game Dinosaur Planet. +# SITES: https://github.com/DinosaurPlanetRecomp/dino-recomp \ No newline at end of file diff --git a/apps/dinosaurplanetrecompiled.md b/apps/dinosaurplanetrecompiled.md deleted file mode 100644 index e78d24fab..000000000 --- a/apps/dinosaurplanetrecompiled.md +++ /dev/null @@ -1,8 +0,0 @@ -# DINOSAURPLANETRECOMPILED - - A static recompilation/native port of the game Dinosaur Planet. - - SITE: https://github.com/DinosaurPlanetRecomp/dino-recomp - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/dinox b/apps/dinox new file mode 100644 index 000000000..c81999529 --- /dev/null +++ b/apps/dinox @@ -0,0 +1,3 @@ +# dinox +DinoX - Modern XMPP Chat Client with Video Calls, Voice Messages & OMEMO Encryption. +# SITES: https://github.com/rallep71/dinox \ No newline at end of file diff --git a/apps/dinox.md b/apps/dinox.md deleted file mode 100644 index a2f3f16c8..000000000 --- a/apps/dinox.md +++ /dev/null @@ -1,8 +0,0 @@ -# DINOX - - DinoX - Modern XMPP Chat Client with Video Calls, Voice Messages & OMEMO Encryption. - - SITE: https://dinox.im - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/dione b/apps/dione new file mode 100644 index 000000000..c32f8d930 --- /dev/null +++ b/apps/dione @@ -0,0 +1,3 @@ +# dione +Explore, Install, Innovate — in 1 Click. +# SITES: https://github.com/dioneapp/dioneapp \ No newline at end of file diff --git a/apps/dione.md b/apps/dione.md deleted file mode 100644 index a6bcd1203..000000000 --- a/apps/dione.md +++ /dev/null @@ -1,8 +0,0 @@ -# DIONE - - Explore, Install, Innovate — in 1 Click. - - SITE: https://github.com/dioneapp/dioneapp - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/dir b/apps/dir new file mode 100644 index 000000000..02754f778 --- /dev/null +++ b/apps/dir @@ -0,0 +1,4 @@ +# dir + List directory contents. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/dir.md b/apps/dir.md deleted file mode 100644 index 1bddfbf2e..000000000 --- a/apps/dir.md +++ /dev/null @@ -1,8 +0,0 @@ -# DIR - - List directory contents. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/dircolors b/apps/dircolors new file mode 100644 index 000000000..ec17077b8 --- /dev/null +++ b/apps/dircolors @@ -0,0 +1,4 @@ +# dircolors + For ls. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/dircolors.md b/apps/dircolors.md deleted file mode 100644 index 4265d66a6..000000000 --- a/apps/dircolors.md +++ /dev/null @@ -1,8 +0,0 @@ -# DIRCOLORS - - For ls. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/dirname b/apps/dirname new file mode 100644 index 000000000..0192ec827 --- /dev/null +++ b/apps/dirname @@ -0,0 +1,3 @@ +# dirname +Strip last component from file name. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/dirname.md b/apps/dirname.md deleted file mode 100644 index cad4503c1..000000000 --- a/apps/dirname.md +++ /dev/null @@ -1,8 +0,0 @@ -# DIRNAME - - Strip last component from file name. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/disass b/apps/disass new file mode 100644 index 000000000..c594c3409 --- /dev/null +++ b/apps/disass @@ -0,0 +1,3 @@ +# disass +A simple disassembly tool. +# SITES: https://github.com/Satharus/Disass \ No newline at end of file diff --git a/apps/disass.md b/apps/disass.md deleted file mode 100644 index 14f66f7f6..000000000 --- a/apps/disass.md +++ /dev/null @@ -1,8 +0,0 @@ -# DISASS - - A simple disassembly tool. - - SITE: https://github.com/Satharus/Disass - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/discord b/apps/discord new file mode 100644 index 000000000..aa0f2c39e --- /dev/null +++ b/apps/discord @@ -0,0 +1,6 @@ +# discord +All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone. + + This is the unofficial AppImage. +# SITES: https://discord.com +# SOURCES: https://github.com/pkgforge-dev/Discord-appimage \ No newline at end of file diff --git a/apps/discord-bot-client b/apps/discord-bot-client new file mode 100644 index 000000000..0e6ab0e12 --- /dev/null +++ b/apps/discord-bot-client @@ -0,0 +1,3 @@ +# discord-bot-client +A patched version of discord, with bot login & Vencord support. +# SITES: https://github.com/aiko-chan-ai/DiscordBotClient \ No newline at end of file diff --git a/apps/discord-bot-client.md b/apps/discord-bot-client.md deleted file mode 100644 index c4788a89c..000000000 --- a/apps/discord-bot-client.md +++ /dev/null @@ -1,8 +0,0 @@ -# DISCORD-BOT-CLIENT - - A patched version of discord, with bot login & Vencord support. - - SITE: https://github.com/aiko-chan-ai/DiscordBotClient - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/discord-qt b/apps/discord-qt new file mode 100644 index 000000000..006d34a32 --- /dev/null +++ b/apps/discord-qt @@ -0,0 +1,3 @@ +# discord-qt +Discord client powered by Node.JS and Qt Widgets. +# SITES: https://github.com/ruslang02/discord-qt \ No newline at end of file diff --git a/apps/discord-qt.md b/apps/discord-qt.md deleted file mode 100644 index 12b68d8e4..000000000 --- a/apps/discord-qt.md +++ /dev/null @@ -1,8 +0,0 @@ -# DISCORD-QT - - Discord client powered by Node.JS and Qt Widgets. - - SITE: https://github.com/ruslang02/discord-qt - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/discord.md b/apps/discord.md deleted file mode 100644 index 36b8782d6..000000000 --- a/apps/discord.md +++ /dev/null @@ -1,12 +0,0 @@ -# DISCORD - - All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone. - - This is the unofficial AppImage. - - SITE: https://discord.com - - APPIMAGE: https://github.com/pkgforge-dev/Discord-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/diskfmt b/apps/diskfmt new file mode 100644 index 000000000..c5969f2f2 --- /dev/null +++ b/apps/diskfmt @@ -0,0 +1,3 @@ +# diskfmt +A disk formatting utility for linux that is similar to the windows format utility. +# SITES: https://github.com/MoAlyousef/diskfmt \ No newline at end of file diff --git a/apps/diskfmt.md b/apps/diskfmt.md deleted file mode 100644 index 644211311..000000000 --- a/apps/diskfmt.md +++ /dev/null @@ -1,8 +0,0 @@ -# DISKFMT - - A disk formatting utility for linux that is similar to the windows format utility. - - SITE: https://github.com/MoAlyousef/diskfmt - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/diskonaut b/apps/diskonaut new file mode 100644 index 000000000..e48e9842f --- /dev/null +++ b/apps/diskonaut @@ -0,0 +1,3 @@ +# diskonaut +Terminal disk space navigator 🔭 +# SITES: https://github.com/imsnif/diskonaut \ No newline at end of file diff --git a/apps/diskonaut.md b/apps/diskonaut.md deleted file mode 100644 index 8f81e7317..000000000 --- a/apps/diskonaut.md +++ /dev/null @@ -1,8 +0,0 @@ -# DISKONAUT - - Terminal disk space navigator 🔭 - - SITE: https://github.com/imsnif/diskonaut - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/dissent b/apps/dissent new file mode 100644 index 000000000..c6c3d1da7 --- /dev/null +++ b/apps/dissent @@ -0,0 +1,3 @@ +# dissent +Tiny native Discord app. +# SITES: https://github.com/diamondburned/dissent \ No newline at end of file diff --git a/apps/dissent.md b/apps/dissent.md deleted file mode 100644 index d8eee2a6f..000000000 --- a/apps/dissent.md +++ /dev/null @@ -1,8 +0,0 @@ -# DISSENT - - Tiny native Discord app. - - SITE: https://github.com/diamondburned/dissent - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/dl-desktop b/apps/dl-desktop new file mode 100644 index 000000000..cd64242c1 --- /dev/null +++ b/apps/dl-desktop @@ -0,0 +1,3 @@ +# dl-desktop +Desktop client for the Duolingo language learning application +# SITES: https://github.com/hmlendea/dl-desktop \ No newline at end of file diff --git a/apps/dl-desktop.md b/apps/dl-desktop.md deleted file mode 100644 index f9c1e2290..000000000 --- a/apps/dl-desktop.md +++ /dev/null @@ -1,8 +0,0 @@ -# DL-DESKTOP - - Desktop client for the Duolingo language learning application - - SITE: https://github.com/hmlendea/dl-desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/dlman b/apps/dlman new file mode 100644 index 000000000..f9aa57136 --- /dev/null +++ b/apps/dlman @@ -0,0 +1,3 @@ +# dlman +Free & fast modern download manager built with Rust for speed and reliability. +# SITES: https://github.com/novincode/dlman \ No newline at end of file diff --git a/apps/dlman.md b/apps/dlman.md deleted file mode 100644 index 99a87a089..000000000 --- a/apps/dlman.md +++ /dev/null @@ -1,8 +0,0 @@ -# DLMAN - - Free & fast modern download manager built with Rust for speed and reliability. - - SITE: https://github.com/novincode/dlman - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/dns-changer b/apps/dns-changer new file mode 100644 index 000000000..7dbb2ef41 --- /dev/null +++ b/apps/dns-changer @@ -0,0 +1,3 @@ +# dns-changer +An open-source DNS Changer app. +# SITES: https://github.com/DnsChanger/dnsChanger-desktop \ No newline at end of file diff --git a/apps/dns-changer.md b/apps/dns-changer.md deleted file mode 100644 index fe8409205..000000000 --- a/apps/dns-changer.md +++ /dev/null @@ -1,8 +0,0 @@ -# DNS-CHANGER - - An open-source DNS Changer app. - - SITE: https://github.com/DnsChanger/dnsChanger-desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/dnzhrecomp b/apps/dnzhrecomp new file mode 100644 index 000000000..cc1cc669c --- /dev/null +++ b/apps/dnzhrecomp @@ -0,0 +1,3 @@ +# dnzhrecomp +Unofficial, a native port of Duke Nukem Zero Hour, statically recompiled. +# SITES: https://github.com/pkgforge-dev/DNZHRecomp-AppImage \ No newline at end of file diff --git a/apps/dnzhrecomp.md b/apps/dnzhrecomp.md deleted file mode 100644 index 615892d87..000000000 --- a/apps/dnzhrecomp.md +++ /dev/null @@ -1,8 +0,0 @@ -# DNZHRECOMP - - Unofficial, a native port of Duke Nukem Zero Hour, statically recompiled. - - SITE: https://github.com/pkgforge-dev/DNZHRecomp-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/dockstation b/apps/dockstation new file mode 100644 index 000000000..220472421 --- /dev/null +++ b/apps/dockstation @@ -0,0 +1,3 @@ +# dockstation +DockStation, developing with Docker has never been so easy and convenient. +# SITES: https://dockstation.io \ No newline at end of file diff --git a/apps/dockstation.md b/apps/dockstation.md deleted file mode 100644 index d3d4dcf1b..000000000 --- a/apps/dockstation.md +++ /dev/null @@ -1,8 +0,0 @@ -# DOCKSTATION - - DockStation, developing with Docker has never been so easy and convenient. - - SITE: https://dockstation.io - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/doggo b/apps/doggo new file mode 100644 index 000000000..d08ae9a4e --- /dev/null +++ b/apps/doggo @@ -0,0 +1,3 @@ +# doggo +Command-line DNS Client for Humans. Written in Golang. +# SITES: https://github.com/mr-karan/doggo \ No newline at end of file diff --git a/apps/doggo.md b/apps/doggo.md deleted file mode 100644 index 0e18e12ca..000000000 --- a/apps/doggo.md +++ /dev/null @@ -1,8 +0,0 @@ -# DOGGO - - Command-line DNS Client for Humans. Written in Golang. - - SITE: https://github.com/mr-karan/doggo - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/dolphin-emu b/apps/dolphin-emu new file mode 100644 index 000000000..ded9fa3bc --- /dev/null +++ b/apps/dolphin-emu @@ -0,0 +1,4 @@ +# dolphin-emu +Dolphin is a GameCube / Wii emulator, allowing you to play games for these two platforms on PC with improvements. +# SITES: https://dolphin-emu.org/ +# SOURCES: https://github.com/dolphin-emu/dolphin https://github.com/pkgforge-dev/Dolphin-emu-AppImage \ No newline at end of file diff --git a/apps/dolphin-emu-nightly b/apps/dolphin-emu-nightly new file mode 100644 index 000000000..2f2a96e1b --- /dev/null +++ b/apps/dolphin-emu-nightly @@ -0,0 +1,3 @@ +# dolphin-emu-nightly +Unofficial nightly AppImage of the Dolphin emulator. +# SITES: https://github.com/pkgforge-dev/Dolphin-emu-AppImage \ No newline at end of file diff --git a/apps/dolphin-emu-nightly.md b/apps/dolphin-emu-nightly.md deleted file mode 100644 index 0bca120fc..000000000 --- a/apps/dolphin-emu-nightly.md +++ /dev/null @@ -1,8 +0,0 @@ -# DOLPHIN-EMU-NIGHTLY - - Unofficial nightly AppImage of the Dolphin emulator. - - SITE: https://github.com/pkgforge-dev/Dolphin-emu-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/dolphin-emu.md b/apps/dolphin-emu.md deleted file mode 100644 index 787705a8a..000000000 --- a/apps/dolphin-emu.md +++ /dev/null @@ -1,14 +0,0 @@ -# DOLPHIN-EMU - - Dolphin is a GameCube / Wii emulator, allowing you to play games for these two platforms on PC with improvements. - - - - SITE: https://dolphin-emu.org/ - - SOURCE: https://github.com/dolphin-emu/dolphin - - APPIMAGE: https://github.com/pkgforge-dev/Dolphin-emu-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/dolt-workbench b/apps/dolt-workbench new file mode 100644 index 000000000..3e1765a3d --- /dev/null +++ b/apps/dolt-workbench @@ -0,0 +1,3 @@ +# dolt-workbench +A modern, browser-based, open source SQL workbench for your MySQL and PostgreSQL compatible database with version control features when connected to Dolt. +# SITES: https://github.com/dolthub/dolt-workbench \ No newline at end of file diff --git a/apps/dolt-workbench.md b/apps/dolt-workbench.md deleted file mode 100644 index 6a4899af3..000000000 --- a/apps/dolt-workbench.md +++ /dev/null @@ -1,8 +0,0 @@ -# DOLT-WORKBENCH - - A modern, browser-based, open source SQL workbench for your MySQL and PostgreSQL compatible database with version control features when connected to Dolt. - - SITE: https://github.com/dolthub/dolt-workbench - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/domterm b/apps/domterm new file mode 100644 index 000000000..988fca056 --- /dev/null +++ b/apps/domterm @@ -0,0 +1,3 @@ +# domterm +DOM/JavaScript-based terminal-emulator/console +# SITES: https://github.com/PerBothner/DomTerm \ No newline at end of file diff --git a/apps/domterm.md b/apps/domterm.md deleted file mode 100644 index d8c7b0117..000000000 --- a/apps/domterm.md +++ /dev/null @@ -1,8 +0,0 @@ -# DOMTERM - - DOM/JavaScript-based terminal-emulator/console - - SITE: https://github.com/PerBothner/DomTerm - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/dooit b/apps/dooit new file mode 100644 index 000000000..ef0098ed6 --- /dev/null +++ b/apps/dooit @@ -0,0 +1,3 @@ +# dooit +An awesome TUI todo manager +# SITES: https://github.com/kraanzu/dooit \ No newline at end of file diff --git a/apps/dooit.md b/apps/dooit.md deleted file mode 100644 index 380f95e11..000000000 --- a/apps/dooit.md +++ /dev/null @@ -1,8 +0,0 @@ -# DOOIT - - An awesome TUI todo manager - - SITE: https://github.com/kraanzu/dooit - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/doom64exultra b/apps/doom64exultra new file mode 100644 index 000000000..4ac702e03 --- /dev/null +++ b/apps/doom64exultra @@ -0,0 +1,3 @@ +# doom64exultra +Unofficial, A fork of DOOM64EX+ with new stuff and fixes. +# SITES: https://github.com/pkgforge-dev/DOOM64EXUltra-AppImage \ No newline at end of file diff --git a/apps/doom64exultra.md b/apps/doom64exultra.md deleted file mode 100644 index d4e3febaa..000000000 --- a/apps/doom64exultra.md +++ /dev/null @@ -1,8 +0,0 @@ -# DOOM64EXULTRA - - Unofficial, A fork of DOOM64EX+ with new stuff and fixes. - - SITE: https://github.com/pkgforge-dev/DOOM64EXUltra-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/dopamine-preview b/apps/dopamine-preview new file mode 100644 index 000000000..05241167c --- /dev/null +++ b/apps/dopamine-preview @@ -0,0 +1,3 @@ +# dopamine-preview +The audio player that keeps it simple. +# SITES: https://digimezzo.github.io/site/ \ No newline at end of file diff --git a/apps/dopamine-preview.md b/apps/dopamine-preview.md deleted file mode 100644 index fed6bae5a..000000000 --- a/apps/dopamine-preview.md +++ /dev/null @@ -1,8 +0,0 @@ -# DOPAMINE-PREVIEW - - The audio player that keeps it simple. - - SITE: https://digimezzo.github.io/site/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/dorion b/apps/dorion new file mode 100644 index 000000000..21a011fa9 --- /dev/null +++ b/apps/dorion @@ -0,0 +1,3 @@ +# dorion +Tiny alternative Discord client with a smaller footprint, snappier startup, themes, plugins and more! +# SITES: https://github.com/SpikeHD/Dorion \ No newline at end of file diff --git a/apps/dorion.md b/apps/dorion.md deleted file mode 100644 index dcf77c6b8..000000000 --- a/apps/dorion.md +++ /dev/null @@ -1,8 +0,0 @@ -# DORION - - Tiny alternative Discord client with a smaller footprint, snappier startup, themes, plugins and more! - - SITE: https://github.com/SpikeHD/Dorion - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/dosbox-pure-unleashed b/apps/dosbox-pure-unleashed new file mode 100644 index 000000000..1cb6feb22 --- /dev/null +++ b/apps/dosbox-pure-unleashed @@ -0,0 +1,4 @@ +# dosbox-pure-unleashed + Unofficial AppImage of DOSBox Pure Unleashed. +# SITES: https://github.com/pkgforge-dev/dosbox-pure-unleashed-appimage +# SOURCES: https://github.com/pkgforge-dev/dosbox-pure-unleashed-appimage \ No newline at end of file diff --git a/apps/dosbox-pure-unleashed.md b/apps/dosbox-pure-unleashed.md deleted file mode 100644 index 505d9b5f5..000000000 --- a/apps/dosbox-pure-unleashed.md +++ /dev/null @@ -1,8 +0,0 @@ -# DOSBOX-PURE-UNLEASHED - - Unofficial AppImage of DOSBox Pure Unleashed. - - SITE: https://github.com/pkgforge-dev/dosbox-pure-unleashed-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/dosbox-x b/apps/dosbox-x new file mode 100644 index 000000000..b88521e61 --- /dev/null +++ b/apps/dosbox-x @@ -0,0 +1,3 @@ +# dosbox-x +Unofficial, DOSBox-X is a cross-platform DOS emulator for running many MS-DOS games. +# SITES: https://github.com/pkgforge-dev/DOSBox-X-AppImage \ No newline at end of file diff --git a/apps/dosbox-x.md b/apps/dosbox-x.md deleted file mode 100644 index 63b28ce99..000000000 --- a/apps/dosbox-x.md +++ /dev/null @@ -1,8 +0,0 @@ -# DOSBOX-X - - Unofficial, DOSBox-X is a cross-platform DOS emulator for running many MS-DOS games. - - SITE: https://github.com/pkgforge-dev/DOSBox-X-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/dosemu b/apps/dosemu new file mode 100644 index 000000000..0865ba611 --- /dev/null +++ b/apps/dosemu @@ -0,0 +1,7 @@ +# dosemu +dosemu2 is an emulator for running DOS programs under linux. + + It can also serve as a VM to boot various DOSes. +# SCREENSHOTS: https://raw.githubusercontent.com/theimpossibleastronaut/dosemu2-appimage/44430e01afc074a72bcf62e7573322ac1c54d211/dosemu.png +# SITES: https://github.com/dosemu2/dosemu2 +# SOURCES: https://github.com/theimpossibleastronaut/dosemu2-appimage \ No newline at end of file diff --git a/apps/dosemu.md b/apps/dosemu.md deleted file mode 100644 index 0bceadb53..000000000 --- a/apps/dosemu.md +++ /dev/null @@ -1,14 +0,0 @@ -# DOSEMU - - dosemu2 is an emulator for running DOS programs under linux. - - It can also serve as a VM to boot various DOSes. - - ![Screenshot](https://raw.githubusercontent.com/theimpossibleastronaut/dosemu2-appimage/44430e01afc074a72bcf62e7573322ac1c54d211/dosemu.png) - - SITE: https://github.com/dosemu2/dosemu2 - - APPIMAGE: https://github.com/theimpossibleastronaut/dosemu2-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/dotline b/apps/dotline new file mode 100644 index 000000000..f1ff7f74f --- /dev/null +++ b/apps/dotline @@ -0,0 +1,3 @@ +# dotline +A modern crosshair overlay app. +# SITES: https://github.com/thedogecraft/dotline \ No newline at end of file diff --git a/apps/dotline.md b/apps/dotline.md deleted file mode 100644 index bc2a7426f..000000000 --- a/apps/dotline.md +++ /dev/null @@ -1,8 +0,0 @@ -# DOTLINE - - A modern crosshair overlay app. - - SITE: https://github.com/thedogecraft/dotline - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/dotto b/apps/dotto new file mode 100644 index 000000000..1644437cc --- /dev/null +++ b/apps/dotto @@ -0,0 +1,3 @@ +# dotto +A portable and modern pixelart editor, written from scratch. +# SITES: https://github.com/LibreSprite/Dotto \ No newline at end of file diff --git a/apps/dotto.md b/apps/dotto.md deleted file mode 100644 index 736c51d41..000000000 --- a/apps/dotto.md +++ /dev/null @@ -1,8 +0,0 @@ -# DOTTO - - A portable and modern pixelart editor, written from scratch. - - SITE: https://github.com/LibreSprite/Dotto - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/doublecmd-gtk b/apps/doublecmd-gtk new file mode 100644 index 000000000..3e923f1e7 --- /dev/null +++ b/apps/doublecmd-gtk @@ -0,0 +1,5 @@ +# doublecmd-gtk +Double Commander is a free cross platform open source file manager with two panels side by side. It is inspired by Total Commander and features some new ideas. + + This is the GTK version. +# SITES: https://doublecmd.sourceforge.io \ No newline at end of file diff --git a/apps/doublecmd-gtk.md b/apps/doublecmd-gtk.md deleted file mode 100644 index 29de5ff66..000000000 --- a/apps/doublecmd-gtk.md +++ /dev/null @@ -1,12 +0,0 @@ -# DOUBLECMD-GTK - - Double Commander is a free cross platform open source file manager with two panels side by side. It is inspired by Total Commander and features some new ideas. - - This is the GTK version. - - SITE: https://doublecmd.sourceforge.io - - REPOSITORY: https://github.com/doublecmd/doublecmd - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/doublecmd-qt b/apps/doublecmd-qt new file mode 100644 index 000000000..d62e31e43 --- /dev/null +++ b/apps/doublecmd-qt @@ -0,0 +1,5 @@ +# doublecmd-qt +Double Commander is a free cross platform open source file manager with two panels side by side. It is inspired by Total Commander and features some new ideas. + + This is the QT version. +# SITES: https://doublecmd.sourceforge.io \ No newline at end of file diff --git a/apps/doublecmd-qt.md b/apps/doublecmd-qt.md deleted file mode 100644 index 5d3a1b3f1..000000000 --- a/apps/doublecmd-qt.md +++ /dev/null @@ -1,12 +0,0 @@ -# DOUBLECMD-QT - - Double Commander is a free cross platform open source file manager with two panels side by side. It is inspired by Total Commander and features some new ideas. - - This is the QT version. - - SITE: https://doublecmd.sourceforge.io - - REPOSITORY: https://github.com/doublecmd/doublecmd - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/downline b/apps/downline new file mode 100644 index 000000000..a77aca8f4 --- /dev/null +++ b/apps/downline @@ -0,0 +1,3 @@ +# downline +A cross-platform video and audio downloader for YouTube, Vimeo, Dailymotion... +# SITES: https://github.com/stefnotch/downline \ No newline at end of file diff --git a/apps/downline.md b/apps/downline.md deleted file mode 100644 index d9bea6df7..000000000 --- a/apps/downline.md +++ /dev/null @@ -1,8 +0,0 @@ -# DOWNLINE - - A cross-platform video and audio downloader for YouTube, Vimeo, Dailymotion... - - SITE: https://github.com/stefnotch/downline - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/dr-robotniks-ring-racers b/apps/dr-robotniks-ring-racers new file mode 100644 index 000000000..d50f7387f --- /dev/null +++ b/apps/dr-robotniks-ring-racers @@ -0,0 +1,3 @@ +# dr-robotniks-ring-racers +Kart racing video game originally based on SRB2Kart. +# SITES: https://github.com/pkgforge-dev/Dr-Robotniks-Ring-Racers-AppImage \ No newline at end of file diff --git a/apps/dr-robotniks-ring-racers.md b/apps/dr-robotniks-ring-racers.md deleted file mode 100644 index a886a7e32..000000000 --- a/apps/dr-robotniks-ring-racers.md +++ /dev/null @@ -1,8 +0,0 @@ -# DR-ROBOTNIKS-RING-RACERS - - Kart racing video game originally based on SRB2Kart. - - SITE: https://github.com/pkgforge-dev/Dr-Robotniks-Ring-Racers-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/dra b/apps/dra new file mode 100644 index 000000000..4d1af5deb --- /dev/null +++ b/apps/dra @@ -0,0 +1,3 @@ +# dra +A command line tool to download release assets from GitHub +# SITES: https://github.com/devmatteini/dra \ No newline at end of file diff --git a/apps/dra.md b/apps/dra.md deleted file mode 100644 index fb5add6c3..000000000 --- a/apps/dra.md +++ /dev/null @@ -1,8 +0,0 @@ -# DRA - - A command line tool to download release assets from GitHub - - SITE: https://github.com/devmatteini/dra - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/dragdrop b/apps/dragdrop new file mode 100644 index 000000000..8487a150f --- /dev/null +++ b/apps/dragdrop @@ -0,0 +1,4 @@ +# dragdrop +Small drag-and-drop file source for the command line. +# SCREENSHOTS: https://github.com/fernzi/dragdrop/blob/master/doc/screenshots/source.png +# SITES: https://github.com/fernzi/dragdrop \ No newline at end of file diff --git a/apps/dragdrop.md b/apps/dragdrop.md deleted file mode 100644 index 981d13674..000000000 --- a/apps/dragdrop.md +++ /dev/null @@ -1,10 +0,0 @@ -# DRAGDROP - - Small drag-and-drop file source for the command line. - - ![Screenshot](https://github.com/fernzi/dragdrop/blob/master/doc/screenshots/source.png) - - SITE: https://github.com/fernzi/dragdrop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/dragula b/apps/dragula new file mode 100644 index 000000000..12d79cbe7 --- /dev/null +++ b/apps/dragula @@ -0,0 +1,3 @@ +# dragula +🦇 Free Stock Images on Steroids +# SITES: https://github.com/sarthology/dragula \ No newline at end of file diff --git a/apps/dragula.md b/apps/dragula.md deleted file mode 100644 index b6d0ac3ab..000000000 --- a/apps/dragula.md +++ /dev/null @@ -1,8 +0,0 @@ -# DRAGULA - - 🦇 Free Stock Images on Steroids - - SITE: https://github.com/sarthology/dragula - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/drally b/apps/drally new file mode 100644 index 000000000..1f06553d8 --- /dev/null +++ b/apps/drally @@ -0,0 +1,3 @@ +# drally +Unofficial, a port of Death Rally (1996). +# SITES: https://github.com/pkgforge-dev/dRally-AppImage \ No newline at end of file diff --git a/apps/drally.md b/apps/drally.md deleted file mode 100644 index e3522bb5b..000000000 --- a/apps/drally.md +++ /dev/null @@ -1,8 +0,0 @@ -# DRALLY - - Unofficial, a port of Death Rally (1996). - - SITE: https://github.com/pkgforge-dev/dRally-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/draw b/apps/draw new file mode 100644 index 000000000..c92eaf5b1 --- /dev/null +++ b/apps/draw @@ -0,0 +1,3 @@ +# draw +Draw in your terminal +# SITES: https://github.com/maaslalani/draw \ No newline at end of file diff --git a/apps/draw.io b/apps/draw.io new file mode 100644 index 000000000..5d6b3d20a --- /dev/null +++ b/apps/draw.io @@ -0,0 +1,3 @@ +# draw.io +draw.io desktop +# SITES: https://github.com/jgraph/drawio-desktop \ No newline at end of file diff --git a/apps/draw.io.md b/apps/draw.io.md deleted file mode 100644 index 439165680..000000000 --- a/apps/draw.io.md +++ /dev/null @@ -1,8 +0,0 @@ -# DRAW.IO - - draw.io desktop - - SITE: https://github.com/jgraph/drawio-desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/draw.md b/apps/draw.md deleted file mode 100644 index f6b358b0d..000000000 --- a/apps/draw.md +++ /dev/null @@ -1,8 +0,0 @@ -# DRAW - - Draw in your terminal - - SITE: https://github.com/maaslalani/draw - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/drawish b/apps/drawish new file mode 100644 index 000000000..7f711b0ab --- /dev/null +++ b/apps/drawish @@ -0,0 +1,3 @@ +# drawish +Simple, yet complete drawing program. +# SITES: https://github.com/nikkNizz/Drawish \ No newline at end of file diff --git a/apps/drawish.md b/apps/drawish.md deleted file mode 100644 index d2ac89f39..000000000 --- a/apps/drawish.md +++ /dev/null @@ -1,8 +0,0 @@ -# DRAWISH - - Simple, yet complete drawing program. - - SITE: https://github.com/nikkNizz/Drawish - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/drawpile b/apps/drawpile new file mode 100644 index 000000000..5ce65890b --- /dev/null +++ b/apps/drawpile @@ -0,0 +1,3 @@ +# drawpile +Drawpile is a Free software collaborative drawing program that allows multiple users to sketch on the same canvas simultaneously. +# SITES: https://drawpile.net/ \ No newline at end of file diff --git a/apps/drawpile.md b/apps/drawpile.md deleted file mode 100644 index 4ac0f629b..000000000 --- a/apps/drawpile.md +++ /dev/null @@ -1,8 +0,0 @@ -# DRAWPILE - - Drawpile is a Free software collaborative drawing program that allows multiple users to sketch on the same canvas simultaneously. - - SITE: https://drawpile.net/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/drawy b/apps/drawy new file mode 100644 index 000000000..1ff38520f --- /dev/null +++ b/apps/drawy @@ -0,0 +1,3 @@ +# drawy +Your handy, infinite, brainstorming tool. +# SITES: https://github.com/Prayag2/drawy \ No newline at end of file diff --git a/apps/drawy.md b/apps/drawy.md deleted file mode 100644 index 32e8935c4..000000000 --- a/apps/drawy.md +++ /dev/null @@ -1,8 +0,0 @@ -# DRAWY - - Your handy, infinite, brainstorming tool. - - SITE: https://github.com/Prayag2/drawy - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/dreamm b/apps/dreamm new file mode 100644 index 000000000..fda2bd0bb --- /dev/null +++ b/apps/dreamm @@ -0,0 +1,4 @@ +# dreamm + Unofficial AppImage of DREAMM. +# SITES: https://github.com/pkgforge-dev/dreamm-appimage +# SOURCES: https://github.com/pkgforge-dev/dreamm-appimage \ No newline at end of file diff --git a/apps/dreamm.md b/apps/dreamm.md deleted file mode 100644 index 3d0b62f7b..000000000 --- a/apps/dreamm.md +++ /dev/null @@ -1,8 +0,0 @@ -# DREAMM - - Unofficial AppImage of DREAMM. - - SITE: https://github.com/pkgforge-dev/dreamm-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/drill b/apps/drill new file mode 100644 index 000000000..2f782c5f4 --- /dev/null +++ b/apps/drill @@ -0,0 +1,3 @@ +# drill +Search files without indexing, but clever crawling +# SITES: https://drill.software/ \ No newline at end of file diff --git a/apps/drill.md b/apps/drill.md deleted file mode 100644 index 10235684f..000000000 --- a/apps/drill.md +++ /dev/null @@ -1,8 +0,0 @@ -# DRILL - - Search files without indexing, but clever crawling - - SITE: https://drill.software/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/droidcam b/apps/droidcam new file mode 100644 index 000000000..0ab548ff8 --- /dev/null +++ b/apps/droidcam @@ -0,0 +1,3 @@ +# droidcam +A DroidCam AppImage for the Steam Deck/SteamOS 3.0 +# SITES: https://github.com/popsUlfr/droidcam-steam-deck-appimage \ No newline at end of file diff --git a/apps/droidcam.md b/apps/droidcam.md deleted file mode 100644 index fa89936bc..000000000 --- a/apps/droidcam.md +++ /dev/null @@ -1,8 +0,0 @@ -# DROIDCAM - - A DroidCam AppImage for the Steam Deck/SteamOS 3.0 - - SITE: https://github.com/popsUlfr/droidcam-steam-deck-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/dropbox b/apps/dropbox new file mode 100644 index 000000000..5470da1f0 --- /dev/null +++ b/apps/dropbox @@ -0,0 +1,6 @@ +# dropbox +DropBox - A free cloud service. Bring your photos, docs, and videos anywhere and share them easily. + + This is the Unofficial AppImage built from AUR. +# SITES: https://www.dropbox.com +# SOURCES: https://github.com/ivan-hc/Dropbox-appimage \ No newline at end of file diff --git a/apps/dropbox.md b/apps/dropbox.md deleted file mode 100644 index a5d1419f1..000000000 --- a/apps/dropbox.md +++ /dev/null @@ -1,12 +0,0 @@ -# DROPBOX - - DropBox - A free cloud service. Bring your photos, docs, and videos anywhere and share them easily. - - This is the Unofficial AppImage built from AUR. - - SITE: https://www.dropbox.com - - - APPIMAGE: https://github.com/ivan-hc/Dropbox-appimage - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/droppoint b/apps/droppoint new file mode 100644 index 000000000..619c4f219 --- /dev/null +++ b/apps/droppoint @@ -0,0 +1,3 @@ +# droppoint +Make drag-and-drop easier using DropPoint. Drag content without having to open side-by-side windows. +# SITES: https://droppoint.netlify.app/ \ No newline at end of file diff --git a/apps/droppoint.md b/apps/droppoint.md deleted file mode 100644 index 8f7ba01a4..000000000 --- a/apps/droppoint.md +++ /dev/null @@ -1,8 +0,0 @@ -# DROPPOINT - - Make drag-and-drop easier using DropPoint. Drag content without having to open side-by-side windows. - - SITE: https://droppoint.netlify.app/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/drovp b/apps/drovp new file mode 100644 index 000000000..643a2b2f6 --- /dev/null +++ b/apps/drovp @@ -0,0 +1,3 @@ +# drovp +Desktop app for encoding, converting, upscaling, and much more. +# SITES: https://github.com/drovp/drovp \ No newline at end of file diff --git a/apps/drovp.md b/apps/drovp.md deleted file mode 100644 index b3dc66809..000000000 --- a/apps/drovp.md +++ /dev/null @@ -1,8 +0,0 @@ -# DROVP - - Desktop app for encoding, converting, upscaling, and much more. - - SITE: https://github.com/drovp/drovp - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/drum-machine b/apps/drum-machine new file mode 100644 index 000000000..36cb88f89 --- /dev/null +++ b/apps/drum-machine @@ -0,0 +1,3 @@ +# drum-machine +Unofficial, Application for managing and playing with drum patterns. +# SITES: https://github.com/pkgforge-dev/Drum-Machine-AppImage \ No newline at end of file diff --git a/apps/drum-machine.md b/apps/drum-machine.md deleted file mode 100644 index ecc53b35b..000000000 --- a/apps/drum-machine.md +++ /dev/null @@ -1,8 +0,0 @@ -# DRUM-MACHINE - - Unofficial, Application for managing and playing with drum patterns. - - SITE: https://github.com/pkgforge-dev/Drum-Machine-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/dsda-doom b/apps/dsda-doom new file mode 100644 index 000000000..e99cb426c --- /dev/null +++ b/apps/dsda-doom @@ -0,0 +1,3 @@ +# dsda-doom +This is a successor of prboom+ with extra tooling for demo recording and playback, with a focus on speedrunning and quality of life. +# SITES: https://github.com/kraflab/dsda-doom \ No newline at end of file diff --git a/apps/dsda-doom.md b/apps/dsda-doom.md deleted file mode 100644 index 25b93a7a8..000000000 --- a/apps/dsda-doom.md +++ /dev/null @@ -1,8 +0,0 @@ -# DSDA-DOOM - - This is a successor of prboom+ with extra tooling for demo recording and playback, with a focus on speedrunning and quality of life. - - SITE: https://github.com/kraflab/dsda-doom - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/dstask b/apps/dstask new file mode 100644 index 000000000..5f6b4ee52 --- /dev/null +++ b/apps/dstask @@ -0,0 +1,5 @@ +# dstask +Git powered terminal-based todo/note manager + + Markdown note page per task. Single binary! +# SITES: https://github.com/naggie/dstask \ No newline at end of file diff --git a/apps/dstask.md b/apps/dstask.md deleted file mode 100644 index 79a0098ce..000000000 --- a/apps/dstask.md +++ /dev/null @@ -1,10 +0,0 @@ -# DSTASK - - Git powered terminal-based todo/note manager - - Markdown note page per task. Single binary! - - SITE: https://github.com/naggie/dstask - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/dtmate b/apps/dtmate new file mode 100644 index 000000000..41d47afba --- /dev/null +++ b/apps/dtmate @@ -0,0 +1,3 @@ +# dtmate +Golang package and CLI to compute the difference between date, time or duration. +# SITES: https://github.com/jftuga/DateTimeMate \ No newline at end of file diff --git a/apps/dtmate.md b/apps/dtmate.md deleted file mode 100644 index 84bcceb9a..000000000 --- a/apps/dtmate.md +++ /dev/null @@ -1,8 +0,0 @@ -# DTMATE - - Golang package and CLI to compute the difference between date, time or duration. - - SITE: https://github.com/jftuga/DateTimeMate - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/du b/apps/du new file mode 100644 index 000000000..eb1315eec --- /dev/null +++ b/apps/du @@ -0,0 +1,3 @@ +# du +Estimate file space usage. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/du.md b/apps/du.md deleted file mode 100644 index 6f478d45c..000000000 --- a/apps/du.md +++ /dev/null @@ -1,8 +0,0 @@ -# DU - - Estimate file space usage. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/dua b/apps/dua new file mode 100644 index 000000000..ac764fa69 --- /dev/null +++ b/apps/dua @@ -0,0 +1,3 @@ +# dua +View disk space usage and delete unwanted data, fast. +# SITES: https://github.com/Byron/dua-cli \ No newline at end of file diff --git a/apps/dua.md b/apps/dua.md deleted file mode 100644 index b60ac614f..000000000 --- a/apps/dua.md +++ /dev/null @@ -1,8 +0,0 @@ -# DUA - - View disk space usage and delete unwanted data, fast. - - SITE: https://github.com/Byron/dua-cli - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/duckling b/apps/duckling new file mode 100644 index 000000000..35fa6196e --- /dev/null +++ b/apps/duckling @@ -0,0 +1,3 @@ +# duckling +A fast viewer for CSV/Parquet files and databases such as DuckDB, SQLite, PostgreSQL, MySQL, Clickhouse, etc., base on Tauri +# SITES: https://github.com/l1xnan/duckling \ No newline at end of file diff --git a/apps/duckling.md b/apps/duckling.md deleted file mode 100644 index 581792316..000000000 --- a/apps/duckling.md +++ /dev/null @@ -1,8 +0,0 @@ -# DUCKLING - - A fast viewer for CSV/Parquet files and databases such as DuckDB, SQLite, PostgreSQL, MySQL, Clickhouse, etc., base on Tauri - - SITE: https://github.com/l1xnan/duckling - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/duckstation b/apps/duckstation new file mode 100644 index 000000000..0764f4b6a --- /dev/null +++ b/apps/duckstation @@ -0,0 +1,3 @@ +# duckstation +DuckStation - PlayStation 1, aka PSX Emulator. +# SITES: https://www.duckstation.org \ No newline at end of file diff --git a/apps/duckstation-gpl-enhanced b/apps/duckstation-gpl-enhanced new file mode 100644 index 000000000..d875da90d --- /dev/null +++ b/apps/duckstation-gpl-enhanced @@ -0,0 +1,3 @@ +# duckstation-gpl-enhanced +Unofficial, fast PlayStation 1 emulator when it was still using GPLv3. +# SITES: https://github.com/pkgforge-dev/DuckStation-GPL-AppImage-Enhanced \ No newline at end of file diff --git a/apps/duckstation-gpl-enhanced.md b/apps/duckstation-gpl-enhanced.md deleted file mode 100644 index f18a78ab3..000000000 --- a/apps/duckstation-gpl-enhanced.md +++ /dev/null @@ -1,8 +0,0 @@ -# DUCKSTATION-GPL-ENHANCED - - Unofficial, fast PlayStation 1 emulator when it was still using GPLv3. - - SITE: https://github.com/pkgforge-dev/DuckStation-GPL-AppImage-Enhanced - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/duckstation.md b/apps/duckstation.md deleted file mode 100644 index 45d8f7102..000000000 --- a/apps/duckstation.md +++ /dev/null @@ -1,8 +0,0 @@ -# DUCKSTATION - - DuckStation - PlayStation 1, aka PSX Emulator. - - SITE: https://www.duckstation.org - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/duf b/apps/duf new file mode 100644 index 000000000..afa453a69 --- /dev/null +++ b/apps/duf @@ -0,0 +1,4 @@ +# duf +Disk Usage/Free Utility - a better 'df' alternative. +# SCREENSHOTS: https://raw.githubusercontent.com/muesli/duf/master/duf.png +# SITES: https://github.com/muesli/duf \ No newline at end of file diff --git a/apps/duf.md b/apps/duf.md deleted file mode 100644 index b3373634e..000000000 --- a/apps/duf.md +++ /dev/null @@ -1,10 +0,0 @@ -# DUF - - Disk Usage/Free Utility - a better 'df' alternative. - - ![Screenshot](https://raw.githubusercontent.com/muesli/duf/master/duf.png) - - SITE: https://github.com/muesli/duf - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/dukto b/apps/dukto new file mode 100644 index 000000000..9ab3351da --- /dev/null +++ b/apps/dukto @@ -0,0 +1,3 @@ +# dukto +Easy and multi-platform file transfer tool +# SITES: https://github.com/cpuuntery/dukto \ No newline at end of file diff --git a/apps/dukto.md b/apps/dukto.md deleted file mode 100644 index 07e590593..000000000 --- a/apps/dukto.md +++ /dev/null @@ -1,8 +0,0 @@ -# DUKTO - - Easy and multi-platform file transfer tool - - SITE: https://github.com/cpuuntery/dukto - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/dune b/apps/dune new file mode 100644 index 000000000..1716c64bd --- /dev/null +++ b/apps/dune @@ -0,0 +1,3 @@ +# dune +A shell🐚 by the beach🏖️! +# SITES: https://github.com/adam-mcdaniel/dune \ No newline at end of file diff --git a/apps/dune.md b/apps/dune.md deleted file mode 100644 index 38618262a..000000000 --- a/apps/dune.md +++ /dev/null @@ -1,8 +0,0 @@ -# DUNE - - A shell🐚 by the beach🏖️! - - SITE: https://github.com/adam-mcdaniel/dune - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/dunst b/apps/dunst new file mode 100644 index 000000000..7a28339e2 --- /dev/null +++ b/apps/dunst @@ -0,0 +1,3 @@ +# dunst +Unofficial AppImage of dunst, lightweight and customizable notification daemon. +# SITES: https://github.com/Samueru-sama/dunst-AppImage \ No newline at end of file diff --git a/apps/dunst.md b/apps/dunst.md deleted file mode 100644 index fb0556328..000000000 --- a/apps/dunst.md +++ /dev/null @@ -1,8 +0,0 @@ -# DUNST - - Unofficial AppImage of dunst, lightweight and customizable notification daemon. - - SITE: https://github.com/Samueru-sama/dunst-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/duplicate-image-finder b/apps/duplicate-image-finder new file mode 100644 index 000000000..314558d5c --- /dev/null +++ b/apps/duplicate-image-finder @@ -0,0 +1,3 @@ +# duplicate-image-finder +It is an application that can find duplicated images (jpg, png, bitmap, etc) in a collection. +# SITES: https://github.com/volatilflerovium/Duplicate_Image_Finder \ No newline at end of file diff --git a/apps/duplicate-image-finder.md b/apps/duplicate-image-finder.md deleted file mode 100644 index ef061d858..000000000 --- a/apps/duplicate-image-finder.md +++ /dev/null @@ -1,8 +0,0 @@ -# DUPLICATE-IMAGE-FINDER - - It is an application that can find duplicated images (jpg, png, bitmap, etc) in a collection. - - SITE: https://github.com/volatilflerovium/Duplicate_Image_Finder - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/dusklight b/apps/dusklight new file mode 100644 index 000000000..a2bce66c6 --- /dev/null +++ b/apps/dusklight @@ -0,0 +1,3 @@ +# dusklight +Dusklight brings a classic adventure to PC and mobile platforms with a variety of fixes and improvements. +# SITES: https://github.com/twilitrealm/dusklight \ No newline at end of file diff --git a/apps/dusklight.md b/apps/dusklight.md deleted file mode 100644 index 0ea9d3503..000000000 --- a/apps/dusklight.md +++ /dev/null @@ -1,8 +0,0 @@ -# DUSKLIGHT - - Dusklight brings a classic adventure to PC and mobile platforms with a variety of fixes and improvements. - - SITE: https://github.com/twilitrealm/dusklight - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/duskplayer b/apps/duskplayer new file mode 100644 index 000000000..338b85755 --- /dev/null +++ b/apps/duskplayer @@ -0,0 +1,3 @@ +# duskplayer +A minimal music player built on electron. +# SITES: https://github.com/Aveek-Saha/DuskPlayer \ No newline at end of file diff --git a/apps/duskplayer.md b/apps/duskplayer.md deleted file mode 100644 index 985c3184c..000000000 --- a/apps/duskplayer.md +++ /dev/null @@ -1,8 +0,0 @@ -# DUSKPLAYER - - A minimal music player built on electron. - - SITE: https://github.com/Aveek-Saha/DuskPlayer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/dust b/apps/dust new file mode 100644 index 000000000..7416ad9c6 --- /dev/null +++ b/apps/dust @@ -0,0 +1,3 @@ +# dust +A more intuitive version of du in rust. +# SITES: https://github.com/bootandy/dust \ No newline at end of file diff --git a/apps/dust.md b/apps/dust.md deleted file mode 100644 index 772a7c85b..000000000 --- a/apps/dust.md +++ /dev/null @@ -1,8 +0,0 @@ -# DUST - - A more intuitive version of du in rust. - - SITE: https://github.com/bootandy/dust - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/dust3d b/apps/dust3d new file mode 100644 index 000000000..f0055469c --- /dev/null +++ b/apps/dust3d @@ -0,0 +1,3 @@ +# dust3d +Dust3D is brand new 3D modeling software. It lets you create watertight 3D models in seconds. Use it to speed up character modeling for games, 3D printing, and so on. +# SITES: https://dust3d.org \ No newline at end of file diff --git a/apps/dust3d.md b/apps/dust3d.md deleted file mode 100644 index a5f3fa239..000000000 --- a/apps/dust3d.md +++ /dev/null @@ -1,8 +0,0 @@ -# DUST3D - - Dust3D is brand new 3D modeling software. It lets you create watertight 3D models in seconds. Use it to speed up character modeling for games, 3D printing, and so on. - - SITE: https://dust3d.org - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/dvdisaster b/apps/dvdisaster new file mode 100644 index 000000000..d6a93b52a --- /dev/null +++ b/apps/dvdisaster @@ -0,0 +1,3 @@ +# dvdisaster +Additional error protection for CD/DVD media +# SITES: https://github.com/speed47/dvdisaster \ No newline at end of file diff --git a/apps/dvdisaster.md b/apps/dvdisaster.md deleted file mode 100644 index d449099ec..000000000 --- a/apps/dvdisaster.md +++ /dev/null @@ -1,8 +0,0 @@ -# DVDISASTER - - Additional error protection for CD/DVD media - - SITE: https://github.com/speed47/dvdisaster - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/dwarf-fortress b/apps/dwarf-fortress new file mode 100644 index 000000000..360f7face --- /dev/null +++ b/apps/dwarf-fortress @@ -0,0 +1,3 @@ +# dwarf-fortress +The AppImage of lnp-forge built LinuxDwarfPack. +# SITES: https://github.com/McArcady/lnp-forge \ No newline at end of file diff --git a/apps/dwarf-fortress-legacy b/apps/dwarf-fortress-legacy new file mode 100644 index 000000000..e7aa38a7c --- /dev/null +++ b/apps/dwarf-fortress-legacy @@ -0,0 +1,4 @@ +# dwarf-fortress-legacy + Unofficial AppImage of Dwarf Fortress Legacy. +# SITES: https://github.com/pkgforge-dev/dwarf-fortress-legacy-appimage +# SOURCES: https://github.com/pkgforge-dev/dwarf-fortress-legacy-appimage \ No newline at end of file diff --git a/apps/dwarf-fortress-legacy.md b/apps/dwarf-fortress-legacy.md deleted file mode 100644 index 557f82b39..000000000 --- a/apps/dwarf-fortress-legacy.md +++ /dev/null @@ -1,8 +0,0 @@ -# DWARF-FORTRESS-LEGACY - - Unofficial AppImage of Dwarf Fortress Legacy. - - SITE: https://github.com/pkgforge-dev/dwarf-fortress-legacy-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/dwarf-fortress.md b/apps/dwarf-fortress.md deleted file mode 100644 index db21d18aa..000000000 --- a/apps/dwarf-fortress.md +++ /dev/null @@ -1,8 +0,0 @@ -# DWARF-FORTRESS - - The AppImage of lnp-forge built LinuxDwarfPack. - - SITE: https://github.com/McArcady/lnp-forge - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/dwarffortress b/apps/dwarffortress new file mode 100644 index 000000000..f23f97e95 --- /dev/null +++ b/apps/dwarffortress @@ -0,0 +1,3 @@ +# dwarffortress +A Dwarf Fortress game. Build a fortress and try to help your dwarves survive against a deeply generated world. +# SITES: https://github.com/McArcady/lnp-forge \ No newline at end of file diff --git a/apps/dwarffortress.md b/apps/dwarffortress.md deleted file mode 100644 index 323dd5e67..000000000 --- a/apps/dwarffortress.md +++ /dev/null @@ -1,8 +0,0 @@ -# DWARFFORTRESS - - A Dwarf Fortress game. Build a fortress and try to help your dwarves survive against a deeply generated world. - - SITE: https://github.com/McArcady/lnp-forge - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/dwyco-phoo b/apps/dwyco-phoo new file mode 100644 index 000000000..1101ef90c --- /dev/null +++ b/apps/dwyco-phoo @@ -0,0 +1,3 @@ +# dwyco-phoo +Dwyco Phoo Chat and Video Calling +# SITES: https://github.com/blindchimp/dwyco \ No newline at end of file diff --git a/apps/dwyco-phoo.md b/apps/dwyco-phoo.md deleted file mode 100644 index e29be4c98..000000000 --- a/apps/dwyco-phoo.md +++ /dev/null @@ -1,8 +0,0 @@ -# DWYCO-PHOO - - Dwyco Phoo Chat and Video Calling - - SITE: https://github.com/blindchimp/dwyco - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/dysk b/apps/dysk new file mode 100644 index 000000000..92cfc1b00 --- /dev/null +++ b/apps/dysk @@ -0,0 +1,3 @@ +# dysk +A linux utility to get information on filesystems, like df but better. +# SITES: https://github.com/Canop/dysk \ No newline at end of file diff --git a/apps/dysk.md b/apps/dysk.md deleted file mode 100644 index 9e84c2f6e..000000000 --- a/apps/dysk.md +++ /dev/null @@ -1,8 +0,0 @@ -# DYSK - - A linux utility to get information on filesystems, like df but better. - - SITE: https://github.com/Canop/dysk - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/e2-sat-editor b/apps/e2-sat-editor new file mode 100644 index 000000000..0b9c36c3f --- /dev/null +++ b/apps/e2-sat-editor @@ -0,0 +1,4 @@ +# e2-sat-editor +Satellite channel lists editor with tabbed nav 📡 for Enigma2, Neutrino, + Lamedb, dreambox lists. +# SITES: https://github.com/ctlcltd/e2-sat-editor \ No newline at end of file diff --git a/apps/e2-sat-editor.md b/apps/e2-sat-editor.md deleted file mode 100644 index 581831fd8..000000000 --- a/apps/e2-sat-editor.md +++ /dev/null @@ -1,9 +0,0 @@ -# E2-SAT-EDITOR - - Satellite channel lists editor with tabbed nav 📡 for Enigma2, Neutrino, - Lamedb, dreambox lists. - - SITE: https://github.com/ctlcltd/e2-sat-editor - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/eaglemode b/apps/eaglemode new file mode 100644 index 000000000..051818e7a --- /dev/null +++ b/apps/eaglemode @@ -0,0 +1,3 @@ +# eaglemode +Zoomable user interface (ZUI) with file manager, file viewers and more. +# SITES: https://github.com/probonopd/eaglemode \ No newline at end of file diff --git a/apps/eaglemode.md b/apps/eaglemode.md deleted file mode 100644 index 70128df7c..000000000 --- a/apps/eaglemode.md +++ /dev/null @@ -1,8 +0,0 @@ -# EAGLEMODE - - Zoomable user interface (ZUI) with file manager, file viewers and more. - - SITE: https://github.com/probonopd/eaglemode - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/easytag b/apps/easytag new file mode 100644 index 000000000..fc5e723ad --- /dev/null +++ b/apps/easytag @@ -0,0 +1,3 @@ +# easytag +Unofficial AppImage of EasyTAG tag editor. +# SITES: https://github.com/pkgforge-dev/EasyTAG-AppImage \ No newline at end of file diff --git a/apps/easytag.md b/apps/easytag.md deleted file mode 100644 index 6c848b525..000000000 --- a/apps/easytag.md +++ /dev/null @@ -1,8 +0,0 @@ -# EASYTAG - - Unofficial AppImage of EasyTAG tag editor. - - SITE: https://github.com/pkgforge-dev/EasyTAG-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ecency-surfer b/apps/ecency-surfer new file mode 100644 index 000000000..04160e07a --- /dev/null +++ b/apps/ecency-surfer @@ -0,0 +1,3 @@ +# ecency-surfer +Immutable, decentralized, uncensored, rewarding communities built, owned and operated by its users. +# SITES: https://ecency.com/ \ No newline at end of file diff --git a/apps/ecency-surfer.md b/apps/ecency-surfer.md deleted file mode 100644 index 637e971ce..000000000 --- a/apps/ecency-surfer.md +++ /dev/null @@ -1,8 +0,0 @@ -# ECENCY-SURFER - - Immutable, decentralized, uncensored, rewarding communities built, owned and operated by its users. - - SITE: https://ecency.com/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/echo b/apps/echo new file mode 100644 index 000000000..20452e981 --- /dev/null +++ b/apps/echo @@ -0,0 +1,3 @@ +# echo +Display a line of text. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/echo.md b/apps/echo.md deleted file mode 100644 index 7e45f5ef6..000000000 --- a/apps/echo.md +++ /dev/null @@ -1,8 +0,0 @@ -# ECHO - - Display a line of text. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/ecode b/apps/ecode new file mode 100644 index 000000000..144108561 --- /dev/null +++ b/apps/ecode @@ -0,0 +1,3 @@ +# ecode +Lightweight multi-platform code editor designed for modern hardware with a focus on responsiveness and performance. +# SITES: https://github.com/SpartanJ/ecode \ No newline at end of file diff --git a/apps/ecode.md b/apps/ecode.md deleted file mode 100644 index 5c6e3570d..000000000 --- a/apps/ecode.md +++ /dev/null @@ -1,8 +0,0 @@ -# ECODE - - Lightweight multi-platform code editor designed for modern hardware with a focus on responsiveness and performance. - - SITE: https://github.com/SpartanJ/ecode - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ecwolf b/apps/ecwolf new file mode 100644 index 000000000..e03b20708 --- /dev/null +++ b/apps/ecwolf @@ -0,0 +1,3 @@ +# ecwolf +Advanced port of Wolfenstein 3D based off of Wolf4SDL. +# SITES: https://github.com/pkgforge-dev/ECWolf-AppImage \ No newline at end of file diff --git a/apps/ecwolf.md b/apps/ecwolf.md deleted file mode 100644 index f182e741a..000000000 --- a/apps/ecwolf.md +++ /dev/null @@ -1,8 +0,0 @@ -# ECWOLF - - Advanced port of Wolfenstein 3D based off of Wolf4SDL. - - SITE: https://github.com/pkgforge-dev/ECWolf-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/edconv b/apps/edconv new file mode 100644 index 000000000..e643dfd47 --- /dev/null +++ b/apps/edconv @@ -0,0 +1,3 @@ +# edconv +A user-friendly FFmpeg GUI. +# SITES: https://github.com/edneyosf/Edconv \ No newline at end of file diff --git a/apps/edconv.md b/apps/edconv.md deleted file mode 100644 index 630678e42..000000000 --- a/apps/edconv.md +++ /dev/null @@ -1,8 +0,0 @@ -# EDCONV - - A user-friendly FFmpeg GUI. - - SITE: https://github.com/edneyosf/Edconv - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/eden b/apps/eden new file mode 100644 index 000000000..1cd93551b --- /dev/null +++ b/apps/eden @@ -0,0 +1,3 @@ +# eden +An experimental open-source emulator for Nintendo Switch (yuzu fork). +# SITES: https://git.eden-emu.dev \ No newline at end of file diff --git a/apps/eden-nightly b/apps/eden-nightly new file mode 100644 index 000000000..1a346f0f6 --- /dev/null +++ b/apps/eden-nightly @@ -0,0 +1,3 @@ +# eden-nightly +An experimental open-source emulator for Nintendo Switch (yuzu fork, nightly builds). +# SITES: https://git.eden-emu.dev \ No newline at end of file diff --git a/apps/eden-nightly.md b/apps/eden-nightly.md deleted file mode 100644 index 0311b6ec8..000000000 --- a/apps/eden-nightly.md +++ /dev/null @@ -1,8 +0,0 @@ -# EDEN-NIGHTLY - - An experimental open-source emulator for Nintendo Switch (yuzu fork, nightly builds). - - SITE: https://git.eden-emu.dev - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/eden.md b/apps/eden.md deleted file mode 100644 index c5cd0101e..000000000 --- a/apps/eden.md +++ /dev/null @@ -1,8 +0,0 @@ -# EDEN - - An experimental open-source emulator for Nintendo Switch (yuzu fork). - - SITE: https://git.eden-emu.dev - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/edex-ui b/apps/edex-ui new file mode 100644 index 000000000..3ddc8ca08 --- /dev/null +++ b/apps/edex-ui @@ -0,0 +1,3 @@ +# edex-ui +A cross-platform, customizable science fiction terminal emulator with advanced monitoring and touchscreen support. +# SITES: https://github.com/GitSquared/edex-ui \ No newline at end of file diff --git a/apps/edex-ui.md b/apps/edex-ui.md deleted file mode 100644 index 8149fb68a..000000000 --- a/apps/edex-ui.md +++ /dev/null @@ -1,8 +0,0 @@ -# EDEX-UI - - A cross-platform, customizable science fiction terminal emulator with advanced monitoring and touchscreen support. - - SITE: https://github.com/GitSquared/edex-ui - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/eduke32 b/apps/eduke32 new file mode 100644 index 000000000..094b1b578 --- /dev/null +++ b/apps/eduke32 @@ -0,0 +1,3 @@ +# eduke32 +An advanced Duke Nukem 3D source port. +# SITES: https://github.com/pkgforge-dev/EDuke32-AppImage \ No newline at end of file diff --git a/apps/eduke32.md b/apps/eduke32.md deleted file mode 100644 index b13ac83cc..000000000 --- a/apps/eduke32.md +++ /dev/null @@ -1,8 +0,0 @@ -# EDUKE32 - - An advanced Duke Nukem 3D source port. - - SITE: https://github.com/pkgforge-dev/EDuke32-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/eez-studio b/apps/eez-studio new file mode 100644 index 000000000..5d4697609 --- /dev/null +++ b/apps/eez-studio @@ -0,0 +1,3 @@ +# eez-studio +Cross-platform low-code GUI and automation. +# SITES: https://github.com/eez-open/studio \ No newline at end of file diff --git a/apps/eez-studio.md b/apps/eez-studio.md deleted file mode 100644 index f8a2fc5ba..000000000 --- a/apps/eez-studio.md +++ /dev/null @@ -1,8 +0,0 @@ -# EEZ-STUDIO - - Cross-platform low-code GUI and automation. - - SITE: https://github.com/eez-open/studio - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/eget b/apps/eget new file mode 100644 index 000000000..8fc2123ba --- /dev/null +++ b/apps/eget @@ -0,0 +1,3 @@ +# eget +Easily install prebuilt binaries from GitHub. +# SITES: https://github.com/zyedidia/eget \ No newline at end of file diff --git a/apps/eget.md b/apps/eget.md deleted file mode 100644 index 030d8c2aa..000000000 --- a/apps/eget.md +++ /dev/null @@ -1,8 +0,0 @@ -# EGET - - Easily install prebuilt binaries from GitHub. - - SITE: https://github.com/zyedidia/eget - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ehdev-shell b/apps/ehdev-shell new file mode 100644 index 000000000..d33e100ae --- /dev/null +++ b/apps/ehdev-shell @@ -0,0 +1,3 @@ +# ehdev-shell +An electron based developing tool for feds. +# SITES: https://github.com/EHDFE/ehdev-shell \ No newline at end of file diff --git a/apps/ehdev-shell.md b/apps/ehdev-shell.md deleted file mode 100644 index cf0c70a7c..000000000 --- a/apps/ehdev-shell.md +++ /dev/null @@ -1,8 +0,0 @@ -# EHDEV-SHELL - - An electron based developing tool for feds. - - SITE: https://github.com/EHDFE/ehdev-shell - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/eiskaltdcpp b/apps/eiskaltdcpp new file mode 100644 index 000000000..18cbcdcc6 --- /dev/null +++ b/apps/eiskaltdcpp @@ -0,0 +1,3 @@ +# eiskaltdcpp +Client for EiskaltDC++ core. +# SITES: https://sourceforge.net/p/eiskaltdcpp \ No newline at end of file diff --git a/apps/eiskaltdcpp.md b/apps/eiskaltdcpp.md deleted file mode 100644 index 57a45cc1a..000000000 --- a/apps/eiskaltdcpp.md +++ /dev/null @@ -1,8 +0,0 @@ -# EISKALTDCPP - - Client for EiskaltDC++ core. - - SITE: https://sourceforge.net/p/eiskaltdcpp - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/eka2l1 b/apps/eka2l1 new file mode 100644 index 000000000..2716f2cc6 --- /dev/null +++ b/apps/eka2l1 @@ -0,0 +1,3 @@ +# eka2l1 +A Symbian OS/N-Gage emulator +# SITES: https://github.com/EKA2L1/EKA2L1 \ No newline at end of file diff --git a/apps/eka2l1.md b/apps/eka2l1.md deleted file mode 100644 index 6168f6374..000000000 --- a/apps/eka2l1.md +++ /dev/null @@ -1,8 +0,0 @@ -# EKA2L1 - - A Symbian OS/N-Gage emulator - - SITE: https://github.com/EKA2L1/EKA2L1 - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/eksplode.re b/apps/eksplode.re new file mode 100644 index 000000000..1fa3f81b1 --- /dev/null +++ b/apps/eksplode.re @@ -0,0 +1,3 @@ +# eksplode.re +Bomberman game made with Godot under BSD3. +# SITES: https://github.com/AmarOk1412/Eksplode.re \ No newline at end of file diff --git a/apps/eksplode.re.md b/apps/eksplode.re.md deleted file mode 100644 index 123fe82ea..000000000 --- a/apps/eksplode.re.md +++ /dev/null @@ -1,8 +0,0 @@ -# EKSPLODE.RE - - Bomberman game made with Godot under BSD3. - - SITE: https://github.com/AmarOk1412/Eksplode.re - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/elastic b/apps/elastic new file mode 100644 index 000000000..8285a7abf --- /dev/null +++ b/apps/elastic @@ -0,0 +1,3 @@ +# elastic +Unofficial. Visualize and design physics-based animation of objects. +# SITES: https://github.com/pkgforge-dev/Elastic-AppImage \ No newline at end of file diff --git a/apps/elastic.md b/apps/elastic.md deleted file mode 100644 index 8e307f3b7..000000000 --- a/apps/elastic.md +++ /dev/null @@ -1,8 +0,0 @@ -# ELASTIC - - Unofficial. Visualize and design physics-based animation of objects. - - SITE: https://github.com/pkgforge-dev/Elastic-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/elcalc b/apps/elcalc new file mode 100644 index 000000000..24402729b --- /dev/null +++ b/apps/elcalc @@ -0,0 +1,3 @@ +# elcalc +Cross-Platform calculator built with Electron! +# SITES: https://github.com/elcalc/elcalc \ No newline at end of file diff --git a/apps/elcalc.md b/apps/elcalc.md deleted file mode 100644 index 9c79dd51f..000000000 --- a/apps/elcalc.md +++ /dev/null @@ -1,8 +0,0 @@ -# ELCALC - - Cross-Platform calculator built with Electron! - - SITE: https://github.com/elcalc/elcalc - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/eldumper b/apps/eldumper new file mode 100644 index 000000000..c7487ba32 --- /dev/null +++ b/apps/eldumper @@ -0,0 +1,3 @@ +# eldumper +A GB Cartridge Dumper +# SITES: https://github.com/rodri042/el-dumper \ No newline at end of file diff --git a/apps/eldumper.md b/apps/eldumper.md deleted file mode 100644 index 466378efc..000000000 --- a/apps/eldumper.md +++ /dev/null @@ -1,8 +0,0 @@ -# ELDUMPER - - A GB Cartridge Dumper - - SITE: https://github.com/rodri042/el-dumper - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/electorrent b/apps/electorrent new file mode 100644 index 000000000..6ce5702bf --- /dev/null +++ b/apps/electorrent @@ -0,0 +1,3 @@ +# electorrent +A remote control client for µTorrent, qBittorrent, rTorrent, Transmission, Synology & Deluge. +# SITES: https://github.com/Tympanix/Electorrent \ No newline at end of file diff --git a/apps/electorrent.md b/apps/electorrent.md deleted file mode 100644 index ed36c9235..000000000 --- a/apps/electorrent.md +++ /dev/null @@ -1,8 +0,0 @@ -# ELECTORRENT - - A remote control client for µTorrent, qBittorrent, rTorrent, Transmission, Synology & Deluge. - - SITE: https://github.com/Tympanix/Electorrent - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/electrocrud b/apps/electrocrud new file mode 100644 index 000000000..da25ea462 --- /dev/null +++ b/apps/electrocrud @@ -0,0 +1,3 @@ +# electrocrud +No coding is required +# SITES: https://github.com/garrylachman/ElectroCRUD \ No newline at end of file diff --git a/apps/electrocrud.md b/apps/electrocrud.md deleted file mode 100644 index 6f54ca665..000000000 --- a/apps/electrocrud.md +++ /dev/null @@ -1,8 +0,0 @@ -# ELECTROCRUD - - No coding is required - - SITE: https://github.com/garrylachman/ElectroCRUD - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/electron-app-store b/apps/electron-app-store new file mode 100644 index 000000000..f86706b14 --- /dev/null +++ b/apps/electron-app-store @@ -0,0 +1,3 @@ +# electron-app-store +A Simple App Store for Apps Built with Electron +# SITES: https://github.com/Electron-Store/electron-app-store \ No newline at end of file diff --git a/apps/electron-app-store.md b/apps/electron-app-store.md deleted file mode 100644 index f69e68f09..000000000 --- a/apps/electron-app-store.md +++ /dev/null @@ -1,8 +0,0 @@ -# ELECTRON-APP-STORE - - A Simple App Store for Apps Built with Electron - - SITE: https://github.com/Electron-Store/electron-app-store - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/electron-cash b/apps/electron-cash new file mode 100644 index 000000000..35249004c --- /dev/null +++ b/apps/electron-cash @@ -0,0 +1,3 @@ +# electron-cash +Lightweight Bitcoin Cash Client +# SITES: https://electroncash.org/ \ No newline at end of file diff --git a/apps/electron-cash.md b/apps/electron-cash.md deleted file mode 100644 index e2c071c77..000000000 --- a/apps/electron-cash.md +++ /dev/null @@ -1,7 +0,0 @@ -# ELECTRON-CASH - - Lightweight Bitcoin Cash Client - - SITE: https://electroncash.org/ - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/electron-mail b/apps/electron-mail new file mode 100644 index 000000000..0bb62aff4 --- /dev/null +++ b/apps/electron-mail @@ -0,0 +1,3 @@ +# electron-mail +Unofficial ProtonMail Desktop App. +# SITES: https://github.com/vladimiry/ElectronMail \ No newline at end of file diff --git a/apps/electron-mail.md b/apps/electron-mail.md deleted file mode 100644 index 0203bb9d6..000000000 --- a/apps/electron-mail.md +++ /dev/null @@ -1,8 +0,0 @@ -# ELECTRON-MAIL - - Unofficial ProtonMail Desktop App. - - SITE: https://github.com/vladimiry/ElectronMail - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/electron-react-boilerplate b/apps/electron-react-boilerplate new file mode 100644 index 000000000..b1d9c1373 --- /dev/null +++ b/apps/electron-react-boilerplate @@ -0,0 +1,3 @@ +# electron-react-boilerplate +A Foundation for Scalable Cross-Platform Apps. +# SITES: \ No newline at end of file diff --git a/apps/electron-react-boilerplate.md b/apps/electron-react-boilerplate.md deleted file mode 100644 index 6a2728793..000000000 --- a/apps/electron-react-boilerplate.md +++ /dev/null @@ -1,8 +0,0 @@ -# ELECTRON-REACT-BOILERPLATE - - A Foundation for Scalable Cross-Platform Apps. - - SITE: - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/electron-ssr b/apps/electron-ssr new file mode 100644 index 000000000..0e95e60ce --- /dev/null +++ b/apps/electron-ssr @@ -0,0 +1,3 @@ +# electron-ssr +Install electron-ssr from appimage. +# SITES: https://github.com/shadowsocksrr/electron-ssr \ No newline at end of file diff --git a/apps/electron-ssr.md b/apps/electron-ssr.md deleted file mode 100644 index ceccaea1e..000000000 --- a/apps/electron-ssr.md +++ /dev/null @@ -1,8 +0,0 @@ -# ELECTRON-SSR - - Install electron-ssr from appimage. - - SITE: https://github.com/shadowsocksrr/electron-ssr - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/electron-utils b/apps/electron-utils new file mode 100644 index 000000000..fc231127d --- /dev/null +++ b/apps/electron-utils @@ -0,0 +1,3 @@ +# electron-utils +Electron Utils for every day usage as a dev. +# SITES: https://github.com/SamTV12345/DevRustPilot \ No newline at end of file diff --git a/apps/electron-utils.md b/apps/electron-utils.md deleted file mode 100644 index 556204b99..000000000 --- a/apps/electron-utils.md +++ /dev/null @@ -1,8 +0,0 @@ -# ELECTRON-UTILS - - Electron Utils for every day usage as a dev. - - SITE: https://github.com/SamTV12345/DevRustPilot - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/electron-wechat b/apps/electron-wechat new file mode 100644 index 000000000..0abcb854c --- /dev/null +++ b/apps/electron-wechat @@ -0,0 +1,3 @@ +# electron-wechat +Wechat desktop application +# SITES: https://github.com/eNkru/electron-wechat \ No newline at end of file diff --git a/apps/electron-wechat.md b/apps/electron-wechat.md deleted file mode 100644 index 334476c95..000000000 --- a/apps/electron-wechat.md +++ /dev/null @@ -1,8 +0,0 @@ -# ELECTRON-WECHAT - - Wechat desktop application - - SITE: https://github.com/eNkru/electron-wechat - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/electron-xiami b/apps/electron-xiami new file mode 100644 index 000000000..ce42f6300 --- /dev/null +++ b/apps/electron-xiami @@ -0,0 +1,3 @@ +# electron-xiami +Xiami Electron desktop application +# SITES: https://github.com/eNkru/electron-xiami \ No newline at end of file diff --git a/apps/electron-xiami.md b/apps/electron-xiami.md deleted file mode 100644 index 59b50510c..000000000 --- a/apps/electron-xiami.md +++ /dev/null @@ -1,8 +0,0 @@ -# ELECTRON-XIAMI - - Xiami Electron desktop application - - SITE: https://github.com/eNkru/electron-xiami - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/electronreact b/apps/electronreact new file mode 100644 index 000000000..f88bcb48c --- /dev/null +++ b/apps/electronreact @@ -0,0 +1,3 @@ +# electronreact +Desktop application using Electron and React. +# SITES: https://github.com/ito-rui/electron-react-desktop-app \ No newline at end of file diff --git a/apps/electronreact.md b/apps/electronreact.md deleted file mode 100644 index 636d19068..000000000 --- a/apps/electronreact.md +++ /dev/null @@ -1,8 +0,0 @@ -# ELECTRONREACT - - Desktop application using Electron and React. - - SITE: https://github.com/ito-rui/electron-react-desktop-app - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/electronwmd b/apps/electronwmd new file mode 100644 index 000000000..e1c3f11ac --- /dev/null +++ b/apps/electronwmd @@ -0,0 +1,3 @@ +# electronwmd +Upload music to NetMD MiniDisc devices +# SITES: https://web.minidisc.wiki/ \ No newline at end of file diff --git a/apps/electronwmd.md b/apps/electronwmd.md deleted file mode 100644 index f69cea77c..000000000 --- a/apps/electronwmd.md +++ /dev/null @@ -1,8 +0,0 @@ -# ELECTRONWMD - - Upload music to NetMD MiniDisc devices - - SITE: https://web.minidisc.wiki/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/electrum b/apps/electrum new file mode 100644 index 000000000..959956f23 --- /dev/null +++ b/apps/electrum @@ -0,0 +1,3 @@ +# electrum +Lightweight Bitcoin Client +# SITES: https://electrum.org \ No newline at end of file diff --git a/apps/electrum-neurai b/apps/electrum-neurai new file mode 100644 index 000000000..bb384a494 --- /dev/null +++ b/apps/electrum-neurai @@ -0,0 +1,3 @@ +# electrum-neurai +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. +# SITES: https://github.com/NeuraiProject/electrum-neurai \ No newline at end of file diff --git a/apps/electrum-neurai.md b/apps/electrum-neurai.md deleted file mode 100644 index 08139451b..000000000 --- a/apps/electrum-neurai.md +++ /dev/null @@ -1,8 +0,0 @@ -# ELECTRUM-NEURAI - - 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. - - SITE: https://github.com/NeuraiProject/electrum-neurai - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/electrum-ravencoin b/apps/electrum-ravencoin new file mode 100644 index 000000000..a4a8c8405 --- /dev/null +++ b/apps/electrum-ravencoin @@ -0,0 +1,3 @@ +# electrum-ravencoin +Electrum Ravencoin Wallet Client Forked from the Electrum Bitcoin base client +# SITES: https://github.com/Electrum-RVN-SIG/electrum-ravencoin \ No newline at end of file diff --git a/apps/electrum-ravencoin.md b/apps/electrum-ravencoin.md deleted file mode 100644 index 6993554e8..000000000 --- a/apps/electrum-ravencoin.md +++ /dev/null @@ -1,8 +0,0 @@ -# ELECTRUM-RAVENCOIN - - Electrum Ravencoin Wallet Client Forked from the Electrum Bitcoin base client - - SITE: https://github.com/Electrum-RVN-SIG/electrum-ravencoin - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/electrum.md b/apps/electrum.md deleted file mode 100644 index 4a619837b..000000000 --- a/apps/electrum.md +++ /dev/null @@ -1,8 +0,0 @@ -# ELECTRUM - - Lightweight Bitcoin Client - - SITE: https://electrum.org - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/electrumfair b/apps/electrumfair new file mode 100644 index 000000000..724368544 --- /dev/null +++ b/apps/electrumfair @@ -0,0 +1,3 @@ +# electrumfair +Lightweight FairCoin Client +# SITES: https://github.com/faircoin/electrumfair \ No newline at end of file diff --git a/apps/electrumfair.md b/apps/electrumfair.md deleted file mode 100644 index af52b585b..000000000 --- a/apps/electrumfair.md +++ /dev/null @@ -1,8 +0,0 @@ -# ELECTRUMFAIR - - Lightweight FairCoin Client - - SITE: https://github.com/faircoin/electrumfair - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/electrumsvp b/apps/electrumsvp new file mode 100644 index 000000000..47f5d9bba --- /dev/null +++ b/apps/electrumsvp @@ -0,0 +1,3 @@ +# electrumsvp +Bitcoin BSV wallet, fork of ElectrumSV. +# SITES: https://github.com/TruthMachine/ElectrumSVP \ No newline at end of file diff --git a/apps/electrumsvp.md b/apps/electrumsvp.md deleted file mode 100644 index a2b58b95b..000000000 --- a/apps/electrumsvp.md +++ /dev/null @@ -1,8 +0,0 @@ -# ELECTRUMSVP - - Bitcoin BSV wallet, fork of ElectrumSV. - - SITE: https://github.com/TruthMachine/ElectrumSVP - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/element b/apps/element new file mode 100644 index 000000000..ea76de4d3 --- /dev/null +++ b/apps/element @@ -0,0 +1,3 @@ +# element +A feature-rich client for Matrix.org +# SITES: https://github.com/srevinsaju/element-appimage \ No newline at end of file diff --git a/apps/element-desktop b/apps/element-desktop new file mode 100644 index 000000000..4821f1927 --- /dev/null +++ b/apps/element-desktop @@ -0,0 +1,3 @@ +# element-desktop +Unofficial, glossy Matrix collaboration client for desktop. +# SITES: https://github.com/pkgforge-dev/Element-Desktop-AppImage \ No newline at end of file diff --git a/apps/element-desktop.md b/apps/element-desktop.md deleted file mode 100644 index 1222ea903..000000000 --- a/apps/element-desktop.md +++ /dev/null @@ -1,8 +0,0 @@ -# ELEMENT-DESKTOP - - Unofficial, glossy Matrix collaboration client for desktop. - - SITE: https://github.com/pkgforge-dev/Element-Desktop-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/element.md b/apps/element.md deleted file mode 100644 index b4bb549d9..000000000 --- a/apps/element.md +++ /dev/null @@ -1,8 +0,0 @@ -# ELEMENT - - A feature-rich client for Matrix.org - - SITE: https://github.com/srevinsaju/element-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/elementary-code b/apps/elementary-code new file mode 100644 index 000000000..045029cdd --- /dev/null +++ b/apps/elementary-code @@ -0,0 +1,3 @@ +# elementary-code +AppImage version of Elementary OS "Code" (unofficial) from Maksym Titenko +# SITES: https://github.com/titenko/elementary-code \ No newline at end of file diff --git a/apps/elementary-code.md b/apps/elementary-code.md deleted file mode 100644 index 63e3a54f6..000000000 --- a/apps/elementary-code.md +++ /dev/null @@ -1,8 +0,0 @@ -# ELEMENTARY-CODE - - AppImage version of Elementary OS "Code" (unofficial) from Maksym Titenko - - SITE: https://github.com/titenko/elementary-code - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/elements b/apps/elements new file mode 100644 index 000000000..ad4da7e9b --- /dev/null +++ b/apps/elements @@ -0,0 +1,3 @@ +# elements +Elements - a desktop App which displays the periodic table. +# SITES: https://github.com/FlorianFe/Elements \ No newline at end of file diff --git a/apps/elements.md b/apps/elements.md deleted file mode 100644 index 096f5fae9..000000000 --- a/apps/elements.md +++ /dev/null @@ -1,8 +0,0 @@ -# ELEMENTS - - Elements - a desktop App which displays the periodic table. - - SITE: https://github.com/FlorianFe/Elements - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/elfedit b/apps/elfedit new file mode 100644 index 000000000..d865d407c --- /dev/null +++ b/apps/elfedit @@ -0,0 +1,4 @@ +# elfedit + Header and program property of ELF files. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/elfedit.md b/apps/elfedit.md deleted file mode 100644 index e84c90abe..000000000 --- a/apps/elfedit.md +++ /dev/null @@ -1,8 +0,0 @@ -# ELFEDIT - - Header and program property of ELF files. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/elk b/apps/elk new file mode 100644 index 000000000..b6c066924 --- /dev/null +++ b/apps/elk @@ -0,0 +1,3 @@ +# elk +Native version of Elk, a nimble Mastodon web. +# SITES: https://github.com/elk-zone/elk-native \ No newline at end of file diff --git a/apps/elk.md b/apps/elk.md deleted file mode 100644 index 485d7b042..000000000 --- a/apps/elk.md +++ /dev/null @@ -1,8 +0,0 @@ -# ELK - - Native version of Elk, a nimble Mastodon web. - - SITE: https://github.com/elk-zone/elk-native - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ellas-war b/apps/ellas-war new file mode 100644 index 000000000..d63285d8c --- /dev/null +++ b/apps/ellas-war @@ -0,0 +1,9 @@ +# ellas-war +Explore Ancient Greece on Ellas-War. Start the development of your city by collecting various resources that will help you to construct your buildings. + + Venerate the gods by building temples dedicated in their honor, in gratitude they will help you in your conquest! Venerate Ares that will provide its terrible spartan, Zeus will allow you to engage its legendary Myrmidons. + + Federate the other cities and create an alliance, declare war on other city groups and show them your superiority. Plunder the neighboring cities or trade with them to buy or sell as desired resources. + + But be careful, other cities or even the gods can return again you at any time and cause your loss. +# SITES: https://github.com/V-Paranoiaque/Ellas-War \ No newline at end of file diff --git a/apps/ellas-war.md b/apps/ellas-war.md deleted file mode 100644 index 962159699..000000000 --- a/apps/ellas-war.md +++ /dev/null @@ -1,14 +0,0 @@ -# ELLAS-WAR - - Explore Ancient Greece on Ellas-War. Start the development of your city by collecting various resources that will help you to construct your buildings. - - Venerate the gods by building temples dedicated in their honor, in gratitude they will help you in your conquest! Venerate Ares that will provide its terrible spartan, Zeus will allow you to engage its legendary Myrmidons. - - Federate the other cities and create an alliance, declare war on other city groups and show them your superiority. Plunder the neighboring cities or trade with them to buy or sell as desired resources. - - But be careful, other cities or even the gods can return again you at any time and cause your loss. - - SITE: https://github.com/V-Paranoiaque/Ellas-War - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/elphyre-walletshell b/apps/elphyre-walletshell new file mode 100644 index 000000000..76766047f --- /dev/null +++ b/apps/elphyre-walletshell @@ -0,0 +1,3 @@ +# elphyre-walletshell +Elphyrecoin GUI Wallet +# SITES: https://github.com/elphyrecoin/elphyre-wallet-electron \ No newline at end of file diff --git a/apps/elphyre-walletshell.md b/apps/elphyre-walletshell.md deleted file mode 100644 index e8e951a09..000000000 --- a/apps/elphyre-walletshell.md +++ /dev/null @@ -1,8 +0,0 @@ -# ELPHYRE-WALLETSHELL - - Elphyrecoin GUI Wallet - - SITE: https://github.com/elphyrecoin/elphyre-wallet-electron - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/elvish b/apps/elvish new file mode 100644 index 000000000..614ec3d87 --- /dev/null +++ b/apps/elvish @@ -0,0 +1,3 @@ +# elvish +Powerful modern shell scripting. +# SITES: https://elv.sh \ No newline at end of file diff --git a/apps/elvish.md b/apps/elvish.md deleted file mode 100644 index 6f4789211..000000000 --- a/apps/elvish.md +++ /dev/null @@ -1,8 +0,0 @@ -# ELVISH - - Powerful modern shell scripting. - - SITE: https://elv.sh - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/elyprismlauncher b/apps/elyprismlauncher new file mode 100644 index 000000000..c3276b448 --- /dev/null +++ b/apps/elyprismlauncher @@ -0,0 +1,3 @@ +# elyprismlauncher +This fork of Prism Launcher adds integrated support for Ely.by accounts. +# SITES: https://github.com/ElyPrismLauncher/ElyPrismLauncher \ No newline at end of file diff --git a/apps/elyprismlauncher.md b/apps/elyprismlauncher.md deleted file mode 100644 index 10eaba9e2..000000000 --- a/apps/elyprismlauncher.md +++ /dev/null @@ -1,8 +0,0 @@ -# ELYPRISMLAUNCHER - - This fork of Prism Launcher adds integrated support for Ely.by accounts. - - SITE: https://github.com/ElyPrismLauncher/ElyPrismLauncher - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/elzabrowser b/apps/elzabrowser new file mode 100644 index 000000000..1eec9db5e --- /dev/null +++ b/apps/elzabrowser @@ -0,0 +1,3 @@ +# elzabrowser +Elza incognito web browser +# SITES: https://github.com/elzabrowser/elza \ No newline at end of file diff --git a/apps/elzabrowser.md b/apps/elzabrowser.md deleted file mode 100644 index 7f7ea9a8f..000000000 --- a/apps/elzabrowser.md +++ /dev/null @@ -1,8 +0,0 @@ -# ELZABROWSER - - Elza incognito web browser - - SITE: https://github.com/elzabrowser/elza - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/emacs b/apps/emacs new file mode 100644 index 000000000..b71823c52 --- /dev/null +++ b/apps/emacs @@ -0,0 +1,7 @@ +# emacs +GNU Emacs is a free software text editor. It was created by GNU Project founder Richard Stallman. In common with other varieties of Emacs, GNU Emacs is extensible using a Turing complete programming language. + GNU Emacs has been called "the most powerful text editor available today". + + This is the new Unofficial AppImage released for AM and AppMan. +# SITES: https://www.gnu.org/software/emacs +# SOURCES: https://github.com/ivan-hc/Emacs-appimage \ No newline at end of file diff --git a/apps/emacs-nox b/apps/emacs-nox new file mode 100644 index 000000000..e021c3729 --- /dev/null +++ b/apps/emacs-nox @@ -0,0 +1,5 @@ +# emacs-nox +GNU Emacs is a free software text editor. It was created by GNU Project founder Richard Stallman. In common with other varieties of Emacs, GNU Emacs is extensible using a Turing complete programming language. GNU Emacs has been called "the most powerful text editor available today". + + This is the unofficial AppImage. +# SITES: https://github.com/blahgeek/emacs-appimage \ No newline at end of file diff --git a/apps/emacs-nox.md b/apps/emacs-nox.md deleted file mode 100644 index 5e755ad25..000000000 --- a/apps/emacs-nox.md +++ /dev/null @@ -1,10 +0,0 @@ -# EMACS-NOX - - GNU Emacs is a free software text editor. It was created by GNU Project founder Richard Stallman. In common with other varieties of Emacs, GNU Emacs is extensible using a Turing complete programming language. GNU Emacs has been called "the most powerful text editor available today". - - This is the unofficial AppImage. - - SITE: https://github.com/blahgeek/emacs-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/emacs.md b/apps/emacs.md deleted file mode 100644 index 917a6ab58..000000000 --- a/apps/emacs.md +++ /dev/null @@ -1,13 +0,0 @@ -# EMACS - - GNU Emacs is a free software text editor. It was created by GNU Project founder Richard Stallman. In common with other varieties of Emacs, GNU Emacs is extensible using a Turing complete programming language. - GNU Emacs has been called "the most powerful text editor available today". - - This is the new Unofficial AppImage released for AM and AppMan. - - SITE: https://www.gnu.org/software/emacs - - SOURCE: https://github.com/ivan-hc/Emacs-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/embedded-ide b/apps/embedded-ide new file mode 100644 index 000000000..50f631633 --- /dev/null +++ b/apps/embedded-ide @@ -0,0 +1,3 @@ +# embedded-ide +Makefile based IDE for embedded systems +# SITES: https://github.com/martinribelotta/embedded-ide \ No newline at end of file diff --git a/apps/embedded-ide.md b/apps/embedded-ide.md deleted file mode 100644 index f8fca7ef8..000000000 --- a/apps/embedded-ide.md +++ /dev/null @@ -1,8 +0,0 @@ -# EMBEDDED-IDE - - Makefile based IDE for embedded systems - - SITE: https://github.com/martinribelotta/embedded-ide - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/emoji-keyboard b/apps/emoji-keyboard new file mode 100644 index 000000000..612a00b0d --- /dev/null +++ b/apps/emoji-keyboard @@ -0,0 +1,3 @@ +# emoji-keyboard +Virtual keyboard-like emoji palette for Linux - AppImage version +# SITES: https://github.com/OzymandiasTheGreat/emoji-keyboard \ No newline at end of file diff --git a/apps/emoji-keyboard.md b/apps/emoji-keyboard.md deleted file mode 100644 index 93ed6ecc7..000000000 --- a/apps/emoji-keyboard.md +++ /dev/null @@ -1,8 +0,0 @@ -# EMOJI-KEYBOARD - - Virtual keyboard-like emoji palette for Linux - AppImage version - - SITE: https://github.com/OzymandiasTheGreat/emoji-keyboard - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/emudeck b/apps/emudeck new file mode 100644 index 000000000..6382967d5 --- /dev/null +++ b/apps/emudeck @@ -0,0 +1,3 @@ +# emudeck +EmuDeck Desktop Electron Wrapper. +# SITES: https://github.com/EmuDeck/emudeck-electron \ No newline at end of file diff --git a/apps/emudeck.md b/apps/emudeck.md deleted file mode 100644 index 9eb98248d..000000000 --- a/apps/emudeck.md +++ /dev/null @@ -1,8 +0,0 @@ -# EMUDECK - - EmuDeck Desktop Electron Wrapper. - - SITE: https://github.com/EmuDeck/emudeck-electron - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/emulsion b/apps/emulsion new file mode 100644 index 000000000..da4eda236 --- /dev/null +++ b/apps/emulsion @@ -0,0 +1,3 @@ +# emulsion +Better gaming through chemistry. +# SITES: https://github.com/yphil-dev/Emulsion \ No newline at end of file diff --git a/apps/emulsion.md b/apps/emulsion.md deleted file mode 100644 index df08ea3c9..000000000 --- a/apps/emulsion.md +++ /dev/null @@ -1,8 +0,0 @@ -# EMULSION - - Better gaming through chemistry. - - SITE: https://github.com/yphil-dev/Emulsion - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/en-croissant b/apps/en-croissant new file mode 100644 index 000000000..30a83526c --- /dev/null +++ b/apps/en-croissant @@ -0,0 +1,3 @@ +# en-croissant +The Ultimate Chess Toolkit. +# SITES: https://github.com/franciscoBSalgueiro/en-croissant \ No newline at end of file diff --git a/apps/en-croissant.md b/apps/en-croissant.md deleted file mode 100644 index 9d3121572..000000000 --- a/apps/en-croissant.md +++ /dev/null @@ -1,8 +0,0 @@ -# EN-CROISSANT - - The Ultimate Chess Toolkit. - - SITE: https://github.com/franciscoBSalgueiro/en-croissant - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/encryptpad b/apps/encryptpad new file mode 100644 index 000000000..cac1e73ac --- /dev/null +++ b/apps/encryptpad @@ -0,0 +1,3 @@ +# encryptpad +Minimalist secure text editor and binary encryptor that implements RFC 4880 Open PGP format: symmetrically encrypted, compressed and integrity protected. The editor can protect files with passwords, key files or both. +# SITES: https://github.com/evpo/EncryptPad \ No newline at end of file diff --git a/apps/encryptpad.md b/apps/encryptpad.md deleted file mode 100644 index 93341cbb5..000000000 --- a/apps/encryptpad.md +++ /dev/null @@ -1,8 +0,0 @@ -# ENCRYPTPAD - - Minimalist secure text editor and binary encryptor that implements RFC 4880 Open PGP format: symmetrically encrypted, compressed and integrity protected. The editor can protect files with passwords, key files or both. - - SITE: https://github.com/evpo/EncryptPad - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/endless-sky b/apps/endless-sky new file mode 100644 index 000000000..798916761 --- /dev/null +++ b/apps/endless-sky @@ -0,0 +1,3 @@ +# endless-sky +Endless Sky - Space exploration and combat game. +# SITES: https://endless-sky.github.io \ No newline at end of file diff --git a/apps/endless-sky.md b/apps/endless-sky.md deleted file mode 100644 index bc5ea2ff0..000000000 --- a/apps/endless-sky.md +++ /dev/null @@ -1,8 +0,0 @@ -# ENDLESS-SKY - - Endless Sky - Space exploration and combat game. - - SITE: https://endless-sky.github.io - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/enoseannotator b/apps/enoseannotator new file mode 100644 index 000000000..6f39692ce --- /dev/null +++ b/apps/enoseannotator @@ -0,0 +1,3 @@ +# enoseannotator +View, annotate and store measurements of the eNose sensor. +# SITES: https://github.com/Tilagiho/eNoseAnnotator \ No newline at end of file diff --git a/apps/enoseannotator.md b/apps/enoseannotator.md deleted file mode 100644 index 66f3a7615..000000000 --- a/apps/enoseannotator.md +++ /dev/null @@ -1,8 +0,0 @@ -# ENOSEANNOTATOR - - View, annotate and store measurements of the eNose sensor. - - SITE: https://github.com/Tilagiho/eNoseAnnotator - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ente-auth b/apps/ente-auth new file mode 100644 index 000000000..8a904468b --- /dev/null +++ b/apps/ente-auth @@ -0,0 +1,9 @@ +# ente-auth +Ente is a service that provides a fully open source, end-to-end encrypted platform for you to store your data in the cloud without needing to trust the service provider. On top of this platform, we have built two apps so far: Ente Photos (an alternative to Apple and Google Photos) and Ente Auth (a 2FA alternative to the deprecated Authy). + + This monorepo contains all our source code - the client apps (iOS / Android / F-Droid / Web / Linux / macOS / Windows) for both the products (and more planned future ones!), and the server that powers them. + + Our source code and cryptography have been externally audited by Cure53 (a German cybersecurity firm, arguably the world's best), Symbolic Software (French cryptography experts) and Fallible (an Indian penetration testing firm). + + Learn more at ente.io. +# SITES: https://ente.io/auth \ No newline at end of file diff --git a/apps/ente-auth.md b/apps/ente-auth.md deleted file mode 100644 index faaba9d27..000000000 --- a/apps/ente-auth.md +++ /dev/null @@ -1,16 +0,0 @@ -# ENTE-AUTH - - Ente is a service that provides a fully open source, end-to-end encrypted platform for you to store your data in the cloud without needing to trust the service provider. On top of this platform, we have built two apps so far: Ente Photos (an alternative to Apple and Google Photos) and Ente Auth (a 2FA alternative to the deprecated Authy). - - This monorepo contains all our source code - the client apps (iOS / Android / F-Droid / Web / Linux / macOS / Windows) for both the products (and more planned future ones!), and the server that powers them. - - Our source code and cryptography have been externally audited by Cure53 (a German cybersecurity firm, arguably the world's best), Symbolic Software (French cryptography experts) and Fallible (an Indian penetration testing firm). - - Learn more at ente.io. - - SITE: https://ente.io/auth - - REPO: https://github.com/ente-io/ente - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ente-photos b/apps/ente-photos new file mode 100644 index 000000000..d8adbf997 --- /dev/null +++ b/apps/ente-photos @@ -0,0 +1,5 @@ +# ente-photos +📦 Binary releases of the Ente Photos desktop app. + + site: https://ente.io +# SITES: \ No newline at end of file diff --git a/apps/ente-photos.md b/apps/ente-photos.md deleted file mode 100644 index 610f2c2f4..000000000 --- a/apps/ente-photos.md +++ /dev/null @@ -1,10 +0,0 @@ -# ENTE-PHOTOS - - 📦 Binary releases of the Ente Photos desktop app. - - site: https://ente.io - - REPO: https://github.com/ente-io/photos-desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/env b/apps/env new file mode 100644 index 000000000..dfe361889 --- /dev/null +++ b/apps/env @@ -0,0 +1,4 @@ +# env + Run a program in a modified environment. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/env.md b/apps/env.md deleted file mode 100644 index eb9333768..000000000 --- a/apps/env.md +++ /dev/null @@ -1,8 +0,0 @@ -# ENV - - Run a program in a modified environment. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/enve b/apps/enve new file mode 100644 index 000000000..81b25cb92 --- /dev/null +++ b/apps/enve @@ -0,0 +1,3 @@ +# enve +Create 2D Animations +# SITES: https://github.com/MaurycyLiebner/enve \ No newline at end of file diff --git a/apps/enve.md b/apps/enve.md deleted file mode 100644 index 1ff0714ae..000000000 --- a/apps/enve.md +++ /dev/null @@ -1,8 +0,0 @@ -# ENVE - - Create 2D Animations - - SITE: https://github.com/MaurycyLiebner/enve - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/envkey b/apps/envkey new file mode 100644 index 000000000..33142a043 --- /dev/null +++ b/apps/envkey @@ -0,0 +1,3 @@ +# envkey +EnvKey’s cross-platform native app +# SITES: https://github.com/envkey/envkey-ui \ No newline at end of file diff --git a/apps/envkey.md b/apps/envkey.md deleted file mode 100644 index 1ad43ff2b..000000000 --- a/apps/envkey.md +++ /dev/null @@ -1,8 +0,0 @@ -# ENVKEY - - EnvKey’s cross-platform native app - - SITE: https://github.com/envkey/envkey-ui - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/eog b/apps/eog new file mode 100644 index 000000000..ba02441cd --- /dev/null +++ b/apps/eog @@ -0,0 +1,4 @@ +# eog + Eye of Gnome is an image viewing and cataloging program. +# SITES: https://github.com/REPLACETHIS +# SOURCES: https://github.com/REPLACETHIS \ No newline at end of file diff --git a/apps/eog.md b/apps/eog.md deleted file mode 100644 index 7e95560bb..000000000 --- a/apps/eog.md +++ /dev/null @@ -1,10 +0,0 @@ -# EOG - - Eye of Gnome is an image viewing and cataloging program. - - This script can install the latest release (if any) and a legacy variant. - - SITE (GTK3): https://github.com/ivan-hc/GNOME3-appimages - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/eosvc b/apps/eosvc new file mode 100644 index 000000000..0c907af28 --- /dev/null +++ b/apps/eosvc @@ -0,0 +1,3 @@ +# eosvc +Application for management of self-employeed people +# SITES: https://github.com/bedrich-schindler/e-osvc \ No newline at end of file diff --git a/apps/eosvc.md b/apps/eosvc.md deleted file mode 100644 index b903d392d..000000000 --- a/apps/eosvc.md +++ /dev/null @@ -1,8 +0,0 @@ -# EOSVC - - Application for management of self-employeed people - - SITE: https://github.com/bedrich-schindler/e-osvc - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/eplee b/apps/eplee new file mode 100644 index 000000000..cc3c9dedc --- /dev/null +++ b/apps/eplee @@ -0,0 +1,3 @@ +# eplee +Sweet, simple epub reader. +# SITES: https://github.com/Janglee123/eplee \ No newline at end of file diff --git a/apps/eplee.md b/apps/eplee.md deleted file mode 100644 index d587ccbad..000000000 --- a/apps/eplee.md +++ /dev/null @@ -1,8 +0,0 @@ -# EPLEE - - Sweet, simple epub reader. - - SITE: https://github.com/Janglee123/eplee - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/epsxe b/apps/epsxe new file mode 100644 index 000000000..f31a93cd1 --- /dev/null +++ b/apps/epsxe @@ -0,0 +1,3 @@ +# epsxe +Unofficial, enhanced PSX emulator. +# SITES: https://github.com/pkgforge-dev/ePSXe-AppImage \ No newline at end of file diff --git a/apps/epsxe.md b/apps/epsxe.md deleted file mode 100644 index c2734cc11..000000000 --- a/apps/epsxe.md +++ /dev/null @@ -1,8 +0,0 @@ -# EPSXE - - Unofficial, enhanced PSX emulator. - - SITE: https://github.com/pkgforge-dev/ePSXe-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/eqonomize b/apps/eqonomize new file mode 100644 index 000000000..2f4bca960 --- /dev/null +++ b/apps/eqonomize @@ -0,0 +1,3 @@ +# eqonomize +Eqonomize! is a personal accounting software, with focus on efficiency and ease of use for small households. Eqonomize! provides a complete solution, with bookkeeping by double entry and support for scheduled recurring transactions, security investments, and budgeting. It gives a clear overview of past and present transactions, and development of incomes and expenses, with descriptive tables and charts, as well as an approximation of future account values. +# SITES: https://github.com/Eqonomize/Eqonomize \ No newline at end of file diff --git a/apps/eqonomize.md b/apps/eqonomize.md deleted file mode 100644 index f5ec5f514..000000000 --- a/apps/eqonomize.md +++ /dev/null @@ -1,8 +0,0 @@ -# EQONOMIZE - - Eqonomize! is a personal accounting software, with focus on efficiency and ease of use for small households. Eqonomize! provides a complete solution, with bookkeeping by double entry and support for scheduled recurring transactions, security investments, and budgeting. It gives a clear overview of past and present transactions, and development of incomes and expenses, with descriptive tables and charts, as well as an approximation of future account values. - - SITE: https://github.com/Eqonomize/Eqonomize - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/equibop b/apps/equibop new file mode 100644 index 000000000..87f8509b7 --- /dev/null +++ b/apps/equibop @@ -0,0 +1,3 @@ +# equibop +Equibop is a custom Discord App aiming to give you better performance and improve linux support. +# SITES: https://github.com/Equicord/Equibop \ No newline at end of file diff --git a/apps/equibop.md b/apps/equibop.md deleted file mode 100644 index e82097c12..000000000 --- a/apps/equibop.md +++ /dev/null @@ -1,8 +0,0 @@ -# EQUIBOP - - Equibop is a custom Discord App aiming to give you better performance and improve linux support. - - SITE: https://github.com/Equicord/Equibop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/era b/apps/era new file mode 100644 index 000000000..85aa8f123 --- /dev/null +++ b/apps/era @@ -0,0 +1,3 @@ +# era +ERA is your note-taking tool. Simple, efficient, and focused on what truly matters: your notes and your time. +# SITES: https://era.sh \ No newline at end of file diff --git a/apps/era.md b/apps/era.md deleted file mode 100644 index f4ed631d7..000000000 --- a/apps/era.md +++ /dev/null @@ -1,8 +0,0 @@ -# ERA - - ERA is your note-taking tool. Simple, efficient, and focused on what truly matters: your notes and your time. - - SITE: https://era.sh - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/erscaffold b/apps/erscaffold new file mode 100644 index 000000000..41c68f9bb --- /dev/null +++ b/apps/erscaffold @@ -0,0 +1,3 @@ +# erscaffold +code generator for websites +# SITES: https://github.com/fxdave/ERScaffold \ No newline at end of file diff --git a/apps/erscaffold.md b/apps/erscaffold.md deleted file mode 100644 index 8a9b90322..000000000 --- a/apps/erscaffold.md +++ /dev/null @@ -1,8 +0,0 @@ -# ERSCAFFOLD - - code generator for websites - - SITE: https://github.com/fxdave/ERScaffold - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/es-de b/apps/es-de new file mode 100644 index 000000000..4bd552a7d --- /dev/null +++ b/apps/es-de @@ -0,0 +1,3 @@ +# es-de +EmulationStation Desktop Edition. +# SITES: https://es-de.org \ No newline at end of file diff --git a/apps/es-de.md b/apps/es-de.md deleted file mode 100644 index 702953145..000000000 --- a/apps/es-de.md +++ /dev/null @@ -1,8 +0,0 @@ -# ES-DE - - EmulationStation Desktop Edition. - - SITE: https://es-de.org - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/escrcpy b/apps/escrcpy new file mode 100644 index 000000000..c41a2e4ca --- /dev/null +++ b/apps/escrcpy @@ -0,0 +1,5 @@ +# escrcpy +📱 Graphical Scrcpy to display and control Android, devices powered by Electron. + + 使用图形化的 Scrcpy 显示和控制您的 Android 设备,由 Electron 驱动。 +# SITES: https://github.com/viarotel-org/escrcpy \ No newline at end of file diff --git a/apps/escrcpy.md b/apps/escrcpy.md deleted file mode 100644 index db3b6d132..000000000 --- a/apps/escrcpy.md +++ /dev/null @@ -1,10 +0,0 @@ -# ESCRCPY - - 📱 Graphical Scrcpy to display and control Android, devices powered by Electron. - - 使用图形化的 Scrcpy 显示和控制您的 Android 设备,由 Electron 驱动。 - - SITE: https://github.com/viarotel-org/escrcpy - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/esearch b/apps/esearch new file mode 100644 index 000000000..6cbae7ea6 --- /dev/null +++ b/apps/esearch @@ -0,0 +1,3 @@ +# esearch +截屏 离线OCR 搜索翻译 以图搜图 贴图 录屏 滚动截屏 Screenshot OCR search translate search for picture paste the picture on the screen screen recorder. +# SITES: https://esearch-app.netlify.app/ \ No newline at end of file diff --git a/apps/esearch.md b/apps/esearch.md deleted file mode 100644 index d3582ce5b..000000000 --- a/apps/esearch.md +++ /dev/null @@ -1,8 +0,0 @@ -# ESEARCH - - 截屏 离线OCR 搜索翻译 以图搜图 贴图 录屏 滚动截屏 Screenshot OCR search translate search for picture paste the picture on the screen screen recorder. - - SITE: https://esearch-app.netlify.app/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/espanso b/apps/espanso new file mode 100644 index 000000000..fbc303a49 --- /dev/null +++ b/apps/espanso @@ -0,0 +1,3 @@ +# espanso +Cross-platform Text Expander written in Rust +# SITES: https://github.com/espanso/espanso \ No newline at end of file diff --git a/apps/espanso.md b/apps/espanso.md deleted file mode 100644 index 97142366e..000000000 --- a/apps/espanso.md +++ /dev/null @@ -1,8 +0,0 @@ -# ESPANSO - - Cross-platform Text Expander written in Rust - - SITE: https://github.com/espanso/espanso - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/espi b/apps/espi new file mode 100644 index 000000000..1c2ced467 --- /dev/null +++ b/apps/espi @@ -0,0 +1,3 @@ +# espi +Software recreation of the SP-1200 drum machine +# SITES: https://low-hiss.com/ \ No newline at end of file diff --git a/apps/espi.md b/apps/espi.md deleted file mode 100644 index eedf5e9c1..000000000 --- a/apps/espi.md +++ /dev/null @@ -1,8 +0,0 @@ -# ESPI - - Software recreation of the SP-1200 drum machine - - SITE: https://low-hiss.com/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/etcher b/apps/etcher new file mode 100644 index 000000000..d53e7af4a --- /dev/null +++ b/apps/etcher @@ -0,0 +1,4 @@ +# etcher +Balena Etcher - Flash OS images to SD cards and USB drives, safely and easily. +# SCREENSHOTS: https://blog.balena.io/assets/archive/2020/07/etcher-1.png +# SITES: https://www.balena.io/etcher \ No newline at end of file diff --git a/apps/etcher.md b/apps/etcher.md deleted file mode 100644 index fb8dbc436..000000000 --- a/apps/etcher.md +++ /dev/null @@ -1,10 +0,0 @@ -# ETCHER - - Balena Etcher - Flash OS images to SD cards and USB drives, safely and easily. - - ![Screenshot](https://blog.balena.io/assets/archive/2020/07/etcher-1.png) - - SITE: https://www.balena.io/etcher - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/eternal-lands b/apps/eternal-lands new file mode 100644 index 000000000..74bcab871 --- /dev/null +++ b/apps/eternal-lands @@ -0,0 +1,5 @@ +# eternal-lands +Eternal Lands is a free 3D fantasy MMORPG (massively multiplayer online role playing game) that can be played on Windows, Android, Linux and OSX. +# SCREENSHOTS: https://www.eternal-lands.com/forum/uploads/gallery/category_5/gallery_4_5_125833.jpg +# SITES: http://www.eternal-lands.com/ +# SOURCES: https://github.com/raduprv/Eternal-Lands \ No newline at end of file diff --git a/apps/eternal-lands.md b/apps/eternal-lands.md deleted file mode 100644 index 4a9c5779f..000000000 --- a/apps/eternal-lands.md +++ /dev/null @@ -1,12 +0,0 @@ -# ETERNAL-LANDS - - Eternal Lands is a free 3D fantasy MMORPG (massively multiplayer online role playing game) that can be played on Windows, Android, Linux and OSX. - - ![Screenshot](https://www.eternal-lands.com/forum/uploads/gallery/category_5/gallery_4_5_125833.jpg) - - SITE: http://www.eternal-lands.com/ - - SOURCE: https://github.com/raduprv/Eternal-Lands - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/eternalmodmanager b/apps/eternalmodmanager new file mode 100644 index 000000000..d8566b05a --- /dev/null +++ b/apps/eternalmodmanager @@ -0,0 +1,3 @@ +# eternalmodmanager +A cross platform mod manager for DOOM Eternal. +# SITES: https://github.com/PowerBall253/EternalModManager-Avalonia \ No newline at end of file diff --git a/apps/eternalmodmanager.md b/apps/eternalmodmanager.md deleted file mode 100644 index 95339f097..000000000 --- a/apps/eternalmodmanager.md +++ /dev/null @@ -1,8 +0,0 @@ -# ETERNALMODMANAGER - - A cross platform mod manager for DOOM Eternal. - - SITE: https://github.com/PowerBall253/EternalModManager-Avalonia - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/etherealengine-cc b/apps/etherealengine-cc new file mode 100644 index 000000000..d0836fd50 --- /dev/null +++ b/apps/etherealengine-cc @@ -0,0 +1,3 @@ +# etherealengine-cc +One stop solution for all your Metaverse needs. A desktop app for managing Ethereal Engine cluster. +# SITES: https://etherealengine.org/ \ No newline at end of file diff --git a/apps/etherealengine-cc.md b/apps/etherealengine-cc.md deleted file mode 100644 index 8f0b0a8b1..000000000 --- a/apps/etherealengine-cc.md +++ /dev/null @@ -1,8 +0,0 @@ -# ETHEREALENGINE-CC - - One stop solution for all your Metaverse needs. A desktop app for managing Ethereal Engine cluster. - - SITE: https://etherealengine.org/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/etichetta b/apps/etichetta new file mode 100644 index 000000000..69dbe987d --- /dev/null +++ b/apps/etichetta @@ -0,0 +1,3 @@ +# etichetta +A YOLO annotator, for human beings. +# SITES: https://github.com/trikko/etichetta \ No newline at end of file diff --git a/apps/etichetta.md b/apps/etichetta.md deleted file mode 100644 index d47aa9bb2..000000000 --- a/apps/etichetta.md +++ /dev/null @@ -1,8 +0,0 @@ -# ETICHETTA - - A YOLO annotator, for human beings. - - SITE: https://github.com/trikko/etichetta - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/etlegacy b/apps/etlegacy new file mode 100644 index 000000000..2cd250bec --- /dev/null +++ b/apps/etlegacy @@ -0,0 +1,3 @@ +# etlegacy +Unofficial, an open source project based on the code of Wolfenstein: Enemy Territory. +# SITES: https://github.com/pkgforge-dev/ETLegacy-AppImage \ No newline at end of file diff --git a/apps/etlegacy.md b/apps/etlegacy.md deleted file mode 100644 index 9e415a978..000000000 --- a/apps/etlegacy.md +++ /dev/null @@ -1,8 +0,0 @@ -# ETLEGACY - - Unofficial, an open source project based on the code of Wolfenstein: Enemy Territory. - - SITE: https://github.com/pkgforge-dev/ETLegacy-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/evalit b/apps/evalit new file mode 100644 index 000000000..2625c9a8f --- /dev/null +++ b/apps/evalit @@ -0,0 +1,3 @@ +# evalit +A notepad calculator application with JavaScript configuration. +# SITES: https://github.com/MTDonovan/Evalit \ No newline at end of file diff --git a/apps/evalit.md b/apps/evalit.md deleted file mode 100644 index 08e0853ad..000000000 --- a/apps/evalit.md +++ /dev/null @@ -1,8 +0,0 @@ -# EVALIT - - A notepad calculator application with JavaScript configuration. - - SITE: https://github.com/MTDonovan/Evalit - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/everdo b/apps/everdo new file mode 100644 index 000000000..665dcb196 --- /dev/null +++ b/apps/everdo @@ -0,0 +1,3 @@ +# everdo +A powerful cross-platform GTD app with focus on privacy. +# SITES: https://everdo.net \ No newline at end of file diff --git a/apps/everdo.md b/apps/everdo.md deleted file mode 100644 index 3a7b9e8f1..000000000 --- a/apps/everdo.md +++ /dev/null @@ -1,8 +0,0 @@ -# EVERDO - - A powerful cross-platform GTD app with focus on privacy. - - SITE: https://everdo.net - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/everinst b/apps/everinst new file mode 100644 index 000000000..0b3360569 --- /dev/null +++ b/apps/everinst @@ -0,0 +1,3 @@ +# everinst +An installer for the Everest mod loader. +# SITES: https://github.com/leo60228/everinst \ No newline at end of file diff --git a/apps/everinst.md b/apps/everinst.md deleted file mode 100644 index c9b4ff492..000000000 --- a/apps/everinst.md +++ /dev/null @@ -1,8 +0,0 @@ -# EVERINST - - An installer for the Everest mod loader. - - SITE: https://github.com/leo60228/everinst - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/evernote b/apps/evernote new file mode 100644 index 000000000..259d73145 --- /dev/null +++ b/apps/evernote @@ -0,0 +1,4 @@ +# evernote + Unofficial. Note taking app. Remember everything and tackle any project with your notes, tasks, and schedule all in one place. +# SITES: https://github.com/vitaly-zdanevich/evernote-linux-repackage +# SOURCES: https://github.com/vitaly-zdanevich/evernote-linux-repackage \ No newline at end of file diff --git a/apps/evernote.md b/apps/evernote.md deleted file mode 100644 index 6e265778b..000000000 --- a/apps/evernote.md +++ /dev/null @@ -1,8 +0,0 @@ -# EVERNOTE - - Unofficial. Note taking app. Remember everything and tackle any project with your notes, tasks, and schedule all in one place. - - SITE: https://github.com/vitaly-zdanevich/evernote-linux-repackage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/evince b/apps/evince new file mode 100644 index 000000000..abd8d28aa --- /dev/null +++ b/apps/evince @@ -0,0 +1,8 @@ +# evince +Document viewer for popular document formats. + + A document viewer for the GNOME desktop. You can view, search or annotate documents in many different formats. + + Evince supports documents in: PDF, PS, EPS, XPS, DjVu, TIFF, DVI (with SyncTeX), and Comic Books archives (CBR, CBT, CBZ, CB7). +# SCREENSHOTS: https://upload.wikimedia.org/wikipedia/commons/8/8c/Evince_42.3.png +# SITES: https://github.com/ivan-hc/Evince-appimage \ No newline at end of file diff --git a/apps/evince.md b/apps/evince.md deleted file mode 100644 index 908e8f37d..000000000 --- a/apps/evince.md +++ /dev/null @@ -1,14 +0,0 @@ -# EVINCE - - Document viewer for popular document formats. - - A document viewer for the GNOME desktop. You can view, search or annotate documents in many different formats. - - Evince supports documents in: PDF, PS, EPS, XPS, DjVu, TIFF, DVI (with SyncTeX), and Comic Books archives (CBR, CBT, CBZ, CB7). - - ![Screenshot](https://upload.wikimedia.org/wikipedia/commons/8/8c/Evince_42.3.png) - - SITE: https://github.com/ivan-hc/Evince-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/evoplex b/apps/evoplex new file mode 100644 index 000000000..08ae9db9e --- /dev/null +++ b/apps/evoplex @@ -0,0 +1,3 @@ +# evoplex +Agent-based modeling +# SITES: https://github.com/evoplex/evoplex \ No newline at end of file diff --git a/apps/evoplex.md b/apps/evoplex.md deleted file mode 100644 index b91c20016..000000000 --- a/apps/evoplex.md +++ /dev/null @@ -1,8 +0,0 @@ -# EVOPLEX - - Agent-based modeling - - SITE: https://github.com/evoplex/evoplex - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/excel-parser-processor b/apps/excel-parser-processor new file mode 100644 index 000000000..f110ea257 --- /dev/null +++ b/apps/excel-parser-processor @@ -0,0 +1,3 @@ +# excel-parser-processor +Simply generates an array of items from the rows of an Excel file and does the repetitive tedious operations step by step recursively till every item of the array is processed. +# SITES: https://github.com/btargac/excel-parser-processor \ No newline at end of file diff --git a/apps/excel-parser-processor.md b/apps/excel-parser-processor.md deleted file mode 100644 index 591b19c44..000000000 --- a/apps/excel-parser-processor.md +++ /dev/null @@ -1,8 +0,0 @@ -# EXCEL-PARSER-PROCESSOR - - Simply generates an array of items from the rows of an Excel file and does the repetitive tedious operations step by step recursively till every item of the array is processed. - - SITE: https://github.com/btargac/excel-parser-processor - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/exe b/apps/exe new file mode 100644 index 000000000..b30edf79d --- /dev/null +++ b/apps/exe @@ -0,0 +1,3 @@ +# exe +A Elearning XHTML/HTML5 editor. +# SITES: http://exelearning.net/ \ No newline at end of file diff --git a/apps/exe.md b/apps/exe.md deleted file mode 100644 index 7260205b0..000000000 --- a/apps/exe.md +++ /dev/null @@ -1,8 +0,0 @@ -# EXE - - A Elearning XHTML/HTML5 editor. - - SITE: http://exelearning.net/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/exeqt b/apps/exeqt new file mode 100644 index 000000000..8da598a1d --- /dev/null +++ b/apps/exeqt @@ -0,0 +1,3 @@ +# exeqt +A nifty little utility for pinning commands, applications or links to the system tray. ExeQt goes even further and provides network facilities so that your custom actions can be transfered, accesed and used from computers around the world or computers around your house. +# SITES: https://github.com/AlexandruIstrate/ExeQt \ No newline at end of file diff --git a/apps/exeqt.md b/apps/exeqt.md deleted file mode 100644 index 22c0c32dd..000000000 --- a/apps/exeqt.md +++ /dev/null @@ -1,8 +0,0 @@ -# EXEQT - - A nifty little utility for pinning commands, applications or links to the system tray. ExeQt goes even further and provides network facilities so that your custom actions can be transfered, accesed and used from computers around the world or computers around your house. - - SITE: https://github.com/AlexandruIstrate/ExeQt - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/exifcleaner b/apps/exifcleaner new file mode 100644 index 000000000..bab28028d --- /dev/null +++ b/apps/exifcleaner @@ -0,0 +1,3 @@ +# exifcleaner +Cross-platform desktop GUI app to clean image metadata +# SITES: https://github.com/szTheory/exifcleaner \ No newline at end of file diff --git a/apps/exifcleaner.md b/apps/exifcleaner.md deleted file mode 100644 index a9e167d25..000000000 --- a/apps/exifcleaner.md +++ /dev/null @@ -1,8 +0,0 @@ -# EXIFCLEANER - - Cross-platform desktop GUI app to clean image metadata - - SITE: https://github.com/szTheory/exifcleaner - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/eximchain-wallet b/apps/eximchain-wallet new file mode 100644 index 000000000..bf772670b --- /dev/null +++ b/apps/eximchain-wallet @@ -0,0 +1,3 @@ +# eximchain-wallet +Eximchain Wallet web and electron app +# SITES: https://github.com/Eximchain/EximchainWallet \ No newline at end of file diff --git a/apps/eximchain-wallet.md b/apps/eximchain-wallet.md deleted file mode 100644 index 23609e159..000000000 --- a/apps/eximchain-wallet.md +++ /dev/null @@ -1,8 +0,0 @@ -# EXIMCHAIN-WALLET - - Eximchain Wallet web and electron app - - SITE: https://github.com/Eximchain/EximchainWallet - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/exodus b/apps/exodus new file mode 100644 index 000000000..a6c7bf87e --- /dev/null +++ b/apps/exodus @@ -0,0 +1,5 @@ +# exodus +Send, receive & exchange cryptocurrency with ease on the world's leading Desktop, Mobile and Hardware wallets. + + Bitcoin wallet. +# SITES: https://exodus.com \ No newline at end of file diff --git a/apps/exodus.md b/apps/exodus.md deleted file mode 100644 index 97532e9e6..000000000 --- a/apps/exodus.md +++ /dev/null @@ -1,10 +0,0 @@ -# EXODUS - - Send, receive & exchange cryptocurrency with ease on the world's leading Desktop, Mobile and Hardware wallets. - - Bitcoin wallet. - - SITE: https://exodus.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/expand b/apps/expand new file mode 100644 index 000000000..9bb0ba71b --- /dev/null +++ b/apps/expand @@ -0,0 +1,4 @@ +# expand + Convert tabs to spaces. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/expand.md b/apps/expand.md deleted file mode 100644 index 9903b98bd..000000000 --- a/apps/expand.md +++ /dev/null @@ -1,8 +0,0 @@ -# EXPAND - - Convert tabs to spaces. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/explorook b/apps/explorook new file mode 100644 index 000000000..c062ae879 --- /dev/null +++ b/apps/explorook @@ -0,0 +1,3 @@ +# explorook +Rookout’s site addon to support local files and folders +# SITES: https://github.com/Rookout/explorook \ No newline at end of file diff --git a/apps/explorook.md b/apps/explorook.md deleted file mode 100644 index ef2cad428..000000000 --- a/apps/explorook.md +++ /dev/null @@ -1,8 +0,0 @@ -# EXPLOROOK - - Rookout’s site addon to support local files and folders - - SITE: https://github.com/Rookout/explorook - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/exportoo b/apps/exportoo new file mode 100644 index 000000000..9e17d29e6 --- /dev/null +++ b/apps/exportoo @@ -0,0 +1,3 @@ +# exportoo +Read and search your exports +# SITES: https://github.com/NiklasMerz/exportoo \ No newline at end of file diff --git a/apps/exportoo.md b/apps/exportoo.md deleted file mode 100644 index 5381c22b1..000000000 --- a/apps/exportoo.md +++ /dev/null @@ -1,8 +0,0 @@ -# EXPORTOO - - Read and search your exports - - SITE: https://github.com/NiklasMerz/exportoo - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/expr b/apps/expr new file mode 100644 index 000000000..9a499306e --- /dev/null +++ b/apps/expr @@ -0,0 +1,4 @@ +# expr + Evaluate expressions. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/expr.md b/apps/expr.md deleted file mode 100644 index 6078f1e8b..000000000 --- a/apps/expr.md +++ /dev/null @@ -1,8 +0,0 @@ -# EXPR - - Evaluate expressions. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/exsplode.re b/apps/exsplode.re new file mode 100644 index 000000000..b1c21a96e --- /dev/null +++ b/apps/exsplode.re @@ -0,0 +1,3 @@ +# exsplode.re +Eksplode.re is a Bomberman game made with Godot under BSD3. +# SITES: https://github.com/AmarOk1412/Eksplode.re \ No newline at end of file diff --git a/apps/exsplode.re.md b/apps/exsplode.re.md deleted file mode 100644 index 49a36d4af..000000000 --- a/apps/exsplode.re.md +++ /dev/null @@ -1,8 +0,0 @@ -# EXSPLODE.RE - - Eksplode.re is a Bomberman game made with Godot under BSD3. - - SITE: https://github.com/AmarOk1412/Eksplode.re - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/extension-manager b/apps/extension-manager new file mode 100644 index 000000000..b714b245b --- /dev/null +++ b/apps/extension-manager @@ -0,0 +1,17 @@ +# extension-manager +A native tool for browsing, installing, and managing GNOME Shell Extensions + +## Features +The tool supports: + - Browsing and searching extensions from `extensions.gnome.org` + - Installation and Removal + - Enabling and Disabling + - Updating in-app ([GNOME 43+](https://github.com/mjakeman/extension-manager/wiki/Known-Issue:-Updates)) + - Screenshots & Images + - Ratings & Comments + - Translations ([add your language!](#-translations)) + +If there's something you'd like to see, contributions are welcome! +# SCREENSHOTS: https://github.com/mjakeman/extension-manager/raw/master/data/screenshot-installed-light.png#gh-light-mode-only +# SITES: https://github.com/mjakeman/extension-manager +# SOURCES: https://github.com/pkgforge-dev/Extension-Manager-AppImage \ No newline at end of file diff --git a/apps/extension-manager.md b/apps/extension-manager.md deleted file mode 100644 index 18bf4c9ef..000000000 --- a/apps/extension-manager.md +++ /dev/null @@ -1,26 +0,0 @@ -# EXTENSION-MANAGER - - A native tool for browsing, installing, and managing GNOME Shell Extensions - -![Screenshot](https://github.com/mjakeman/extension-manager/raw/master/data/screenshot-installed-light.png#gh-light-mode-only) - - -## Features -The tool supports: - - Browsing and searching extensions from `extensions.gnome.org` - - Installation and Removal - - Enabling and Disabling - - Updating in-app ([GNOME 43+](https://github.com/mjakeman/extension-manager/wiki/Known-Issue:-Updates)) - - Screenshots & Images - - Ratings & Comments - - Translations ([add your language!](#-translations)) - -If there's something you'd like to see, contributions are welcome! - - - SITE:https://github.com/mjakeman/extension-manager - - SOURCE: https://github.com/pkgforge-dev/Extension-Manager-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/extraterm b/apps/extraterm new file mode 100644 index 000000000..a10a0f348 --- /dev/null +++ b/apps/extraterm @@ -0,0 +1,3 @@ +# extraterm +The swiss army chainsaw of terminal emulators +# SITES: https://github.com/sedwards2009/extraterm \ No newline at end of file diff --git a/apps/extraterm.md b/apps/extraterm.md deleted file mode 100644 index 8d2c421c1..000000000 --- a/apps/extraterm.md +++ /dev/null @@ -1,8 +0,0 @@ -# EXTRATERM - - The swiss army chainsaw of terminal emulators - - SITE: https://github.com/sedwards2009/extraterm - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/extrema b/apps/extrema new file mode 100644 index 000000000..10f1e3e47 --- /dev/null +++ b/apps/extrema @@ -0,0 +1,3 @@ +# extrema +Data visualisation and analysis +# SITES: https://github.com/esternin/eXtrema \ No newline at end of file diff --git a/apps/extrema.md b/apps/extrema.md deleted file mode 100644 index 7a9a5a4ec..000000000 --- a/apps/extrema.md +++ /dev/null @@ -1,8 +0,0 @@ -# EXTREMA - - Data visualisation and analysis - - SITE: https://github.com/esternin/eXtrema - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/extremetuxracer b/apps/extremetuxracer new file mode 100644 index 000000000..3fb7519ff --- /dev/null +++ b/apps/extremetuxracer @@ -0,0 +1,6 @@ +# extremetuxracer +Extreme Tux Racer, or etracer for short, is a simple OpenGL racing game featuring Tux, the Linux mascot. The object of the game is to slide down a mountain covered in ice and snow as fast as possible, avoiding the trees and rocks that would slow you down. + + This is the unofficial AppImage. +# SITES: https://sourceforge.net/projects/extremetuxracer +# SOURCES: https://github.com/pkgforge-dev/extremetuxracer-AppImage \ No newline at end of file diff --git a/apps/extremetuxracer.md b/apps/extremetuxracer.md deleted file mode 100644 index 7bd4a7e4c..000000000 --- a/apps/extremetuxracer.md +++ /dev/null @@ -1,12 +0,0 @@ -# EXTREMETUXRACER - - Extreme Tux Racer, or etracer for short, is a simple OpenGL racing game featuring Tux, the Linux mascot. The object of the game is to slide down a mountain covered in ice and snow as fast as possible, avoiding the trees and rocks that would slow you down. - - This is the unofficial AppImage. - - SITE: https://sourceforge.net/projects/extremetuxracer - - APPIMAGE: https://github.com/pkgforge-dev/extremetuxracer-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/exult b/apps/exult new file mode 100644 index 000000000..0aa4f10dc --- /dev/null +++ b/apps/exult @@ -0,0 +1,3 @@ +# exult +A project to recreate Ultima 7 for modern operating systems. +# SITES: https://github.com/pkgforge-dev/Exult-AppImage \ No newline at end of file diff --git a/apps/exult.md b/apps/exult.md deleted file mode 100644 index 0984c5912..000000000 --- a/apps/exult.md +++ /dev/null @@ -1,8 +0,0 @@ -# EXULT - - A project to recreate Ultima 7 for modern operating systems. - - SITE: https://github.com/pkgforge-dev/Exult-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/eyedropper b/apps/eyedropper new file mode 100644 index 000000000..05cb765b4 --- /dev/null +++ b/apps/eyedropper @@ -0,0 +1,3 @@ +# eyedropper +Unofficial. Simple color picker, with support for various color palettes. +# SITES: https://github.com/pkgforge-dev/Eyedropper-AppImage \ No newline at end of file diff --git a/apps/eyedropper.md b/apps/eyedropper.md deleted file mode 100644 index a6699d1c7..000000000 --- a/apps/eyedropper.md +++ /dev/null @@ -1,8 +0,0 @@ -# EYEDROPPER - - Unofficial. Simple color picker, with support for various color palettes. - - SITE: https://github.com/pkgforge-dev/Eyedropper-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/eyestalker b/apps/eyestalker new file mode 100644 index 000000000..9dae5cc88 --- /dev/null +++ b/apps/eyestalker @@ -0,0 +1,3 @@ +# eyestalker +Robust video-based eye tracking using recursive estimation of pupil characteristics. +# SITES: https://github.com/tbrouns/eyestalker \ No newline at end of file diff --git a/apps/eyestalker.md b/apps/eyestalker.md deleted file mode 100644 index cb36ee2aa..000000000 --- a/apps/eyestalker.md +++ /dev/null @@ -1,8 +0,0 @@ -# EYESTALKER - - Robust video-based eye tracking using recursive estimation of pupil characteristics. - - SITE: https://github.com/tbrouns/eyestalker - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ez-tree b/apps/ez-tree new file mode 100644 index 000000000..8a3f217ed --- /dev/null +++ b/apps/ez-tree @@ -0,0 +1,3 @@ +# ez-tree +EZ Tree – Procedural tree generator. +# SITES: https://github.com/sinfulbobcat/ez-tree_electron_aur \ No newline at end of file diff --git a/apps/ez-tree.md b/apps/ez-tree.md deleted file mode 100644 index 195bf72da..000000000 --- a/apps/ez-tree.md +++ /dev/null @@ -1,8 +0,0 @@ -# EZ-TREE - - EZ Tree – Procedural tree generator. - - SITE: https://github.com/sinfulbobcat/ez-tree_electron_aur - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/eza b/apps/eza new file mode 100644 index 000000000..d680bc1b3 --- /dev/null +++ b/apps/eza @@ -0,0 +1,3 @@ +# eza +A modern, maintained replacement for ls. +# SITES: https://github.com/eza-community/eza \ No newline at end of file diff --git a/apps/eza.md b/apps/eza.md deleted file mode 100644 index c30a29d3d..000000000 --- a/apps/eza.md +++ /dev/null @@ -1,8 +0,0 @@ -# EZA - - A modern, maintained replacement for ls. - - SITE: https://github.com/eza-community/eza - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ezup b/apps/ezup new file mode 100644 index 000000000..f00ddb685 --- /dev/null +++ b/apps/ezup @@ -0,0 +1,3 @@ +# ezup +Easy File Upload to Cloud Storage +# SITES: https://github.com/HuakunShen/EzUp \ No newline at end of file diff --git a/apps/ezup.md b/apps/ezup.md deleted file mode 100644 index e596aade0..000000000 --- a/apps/ezup.md +++ /dev/null @@ -1,8 +0,0 @@ -# EZUP - - Easy File Upload to Cloud Storage - - SITE: https://github.com/HuakunShen/EzUp - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/f-crm b/apps/f-crm new file mode 100644 index 000000000..2d1244623 --- /dev/null +++ b/apps/f-crm @@ -0,0 +1,3 @@ +# f-crm +Customer Relations Management for Freelancers and Individual Contractors. +# SITES: https://github.com/jgaa/f-crm \ No newline at end of file diff --git a/apps/f-crm.md b/apps/f-crm.md deleted file mode 100644 index 3b6ca79e6..000000000 --- a/apps/f-crm.md +++ /dev/null @@ -1,8 +0,0 @@ -# F-CRM - - Customer Relations Management for Freelancers and Individual Contractors. - - SITE: https://github.com/jgaa/f-crm - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/f1mv-lights-integration b/apps/f1mv-lights-integration new file mode 100644 index 000000000..be5d41c0f --- /dev/null +++ b/apps/f1mv-lights-integration @@ -0,0 +1,3 @@ +# f1mv-lights-integration +The best way to connect your smart home lights to MultiViewer. +# SITES: https://f1mvli.jstt.me/ \ No newline at end of file diff --git a/apps/f1mv-lights-integration.md b/apps/f1mv-lights-integration.md deleted file mode 100644 index 5158fe6fd..000000000 --- a/apps/f1mv-lights-integration.md +++ /dev/null @@ -1,8 +0,0 @@ -# F1MV-LIGHTS-INTEGRATION - - The best way to connect your smart home lights to MultiViewer. - - SITE: https://f1mvli.jstt.me/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/fabother-world b/apps/fabother-world new file mode 100644 index 000000000..63c9c375d --- /dev/null +++ b/apps/fabother-world @@ -0,0 +1,3 @@ +# fabother-world +Unofficial, an interpreter for Another World (Out of this world). +# SITES: https://github.com/pkgforge-dev/Fabother-World-AppImage \ No newline at end of file diff --git a/apps/fabother-world.md b/apps/fabother-world.md deleted file mode 100644 index d04da9dbc..000000000 --- a/apps/fabother-world.md +++ /dev/null @@ -1,8 +0,0 @@ -# FABOTHER-WORLD - - Unofficial, an interpreter for Another World (Out of this world). - - SITE: https://github.com/pkgforge-dev/Fabother-World-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/factor b/apps/factor new file mode 100644 index 000000000..6dbcf1140 --- /dev/null +++ b/apps/factor @@ -0,0 +1,4 @@ +# factor + A general purpose, dynamically typed, stack-based programming language.. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/factor.md b/apps/factor.md deleted file mode 100644 index 6c577abb9..000000000 --- a/apps/factor.md +++ /dev/null @@ -1,8 +0,0 @@ -# FACTOR - - A general purpose, dynamically typed, stack-based programming language.. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/fafarunner b/apps/fafarunner new file mode 100644 index 000000000..0c0778b94 --- /dev/null +++ b/apps/fafarunner @@ -0,0 +1,3 @@ +# fafarunner +A game developed using flutter and flame. +# SITES: https://github.com/fafarunner/fafarunner \ No newline at end of file diff --git a/apps/fafarunner.md b/apps/fafarunner.md deleted file mode 100644 index f621deed5..000000000 --- a/apps/fafarunner.md +++ /dev/null @@ -1,8 +0,0 @@ -# FAFARUNNER - - A game developed using flutter and flame. - - SITE: https://github.com/fafarunner/fafarunner - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/fairshare b/apps/fairshare new file mode 100644 index 000000000..876b18812 --- /dev/null +++ b/apps/fairshare @@ -0,0 +1,3 @@ +# fairshare +Simplifying the curation and sharing of biomedical research data and software according to applicable FAIR guidelines. +# SITES: https://fairdataihub.org/fairshare \ No newline at end of file diff --git a/apps/fairshare.md b/apps/fairshare.md deleted file mode 100644 index b840438be..000000000 --- a/apps/fairshare.md +++ /dev/null @@ -1,8 +0,0 @@ -# FAIRSHARE - - Simplifying the curation and sharing of biomedical research data and software according to applicable FAIR guidelines. - - SITE: https://fairdataihub.org/fairshare - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/fakedata b/apps/fakedata new file mode 100644 index 000000000..8d759748d --- /dev/null +++ b/apps/fakedata @@ -0,0 +1,3 @@ +# fakedata +CLI utility for fake data generation +# SITES: https://github.com/lucapette/fakedata \ No newline at end of file diff --git a/apps/fakedata.md b/apps/fakedata.md deleted file mode 100644 index 8dad6e932..000000000 --- a/apps/fakedata.md +++ /dev/null @@ -1,8 +0,0 @@ -# FAKEDATA - - CLI utility for fake data generation - - SITE: https://github.com/lucapette/fakedata - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/falkon b/apps/falkon new file mode 100644 index 000000000..207d76fd9 --- /dev/null +++ b/apps/falkon @@ -0,0 +1,8 @@ +# falkon +Falkon is a new and very fast Qt web browser. It aims to be a lightweight web browser available through all major platforms. This project has been originally started only for educational purposes. But from its start, Falkon has grown into a feature-rich browser. + + Falkon has all standard functions you expect from a web browser. It includes bookmarks, history (both also in sidebar) and tabs. Above that, you can manage RSS feeds with an included RSS reader, block ads with a built-in AdBlock plugin, block Flash content with Click2Flash and edit the local CA Certificates database with an SSL manager. + + This is the unofficial AppImage. +# SCREENSHOTS: https://github.com/user-attachments/assets/d91a3d97-10d9-459b-82e1-b89c18da1465 +# SITES: https://github.com/ivan-hc/falkon-appimage \ No newline at end of file diff --git a/apps/falkon.md b/apps/falkon.md deleted file mode 100644 index 19b88adc2..000000000 --- a/apps/falkon.md +++ /dev/null @@ -1,14 +0,0 @@ -# FALKON - - Falkon is a new and very fast Qt web browser. It aims to be a lightweight web browser available through all major platforms. This project has been originally started only for educational purposes. But from its start, Falkon has grown into a feature-rich browser. - - Falkon has all standard functions you expect from a web browser. It includes bookmarks, history (both also in sidebar) and tabs. Above that, you can manage RSS feeds with an included RSS reader, block ads with a built-in AdBlock plugin, block Flash content with Click2Flash and edit the local CA Certificates database with an SSL manager. - - This is the unofficial AppImage. - - ![falkon](https://github.com/user-attachments/assets/d91a3d97-10d9-459b-82e1-b89c18da1465) - - SITE: https://github.com/ivan-hc/falkon-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/false b/apps/false new file mode 100644 index 000000000..4f2931423 --- /dev/null +++ b/apps/false @@ -0,0 +1,4 @@ +# false + Do nothing, unsuccessfully. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/false.md b/apps/false.md deleted file mode 100644 index d035dc85a..000000000 --- a/apps/false.md +++ /dev/null @@ -1,8 +0,0 @@ -# FALSE - - Do nothing, unsuccessfully. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/fantascene-dynamic-wallpaper b/apps/fantascene-dynamic-wallpaper new file mode 100644 index 000000000..1de57e6ad --- /dev/null +++ b/apps/fantascene-dynamic-wallpaper @@ -0,0 +1,4 @@ +# fantascene-dynamic-wallpaper +Dynamic wallpaper software for Linux. +# SITES: https://github.com/dependon/fantascene-dynamic-wallpaper +# SOURCES: https://sourceforge.net/projects/fantascene-dynamic-wallpaper \ No newline at end of file diff --git a/apps/fantascene-dynamic-wallpaper.md b/apps/fantascene-dynamic-wallpaper.md deleted file mode 100644 index 33f6fb8e6..000000000 --- a/apps/fantascene-dynamic-wallpaper.md +++ /dev/null @@ -1,10 +0,0 @@ -# FANTASCENE-DYNAMIC-WALLPAPER - - Dynamic wallpaper software for Linux. - - SITE: https://github.com/dependon/fantascene-dynamic-wallpaper - - SOURCE: https://sourceforge.net/projects/fantascene-dynamic-wallpaper - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/fantasia-archive b/apps/fantasia-archive new file mode 100644 index 000000000..1953151b5 --- /dev/null +++ b/apps/fantasia-archive @@ -0,0 +1,3 @@ +# fantasia-archive +A database manager for world building. +# SITES: https://github.com/Elvanos/fantasia-archive \ No newline at end of file diff --git a/apps/fantasia-archive.md b/apps/fantasia-archive.md deleted file mode 100644 index 58a6fa899..000000000 --- a/apps/fantasia-archive.md +++ /dev/null @@ -1,8 +0,0 @@ -# FANTASIA-ARCHIVE - - A database manager for world building. - - SITE: https://github.com/Elvanos/fantasia-archive - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/farmhand b/apps/farmhand new file mode 100644 index 000000000..caaa0be00 --- /dev/null +++ b/apps/farmhand @@ -0,0 +1,3 @@ +# farmhand +A resource management game that puts a farm in your hand. +# SITES: https://github.com/jeremyckahn/farmhand \ No newline at end of file diff --git a/apps/farmhand.md b/apps/farmhand.md deleted file mode 100644 index 8ca55bfb4..000000000 --- a/apps/farmhand.md +++ /dev/null @@ -1,8 +0,0 @@ -# FARMHAND - - A resource management game that puts a farm in your hand. - - SITE: https://github.com/jeremyckahn/farmhand - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/fastboot b/apps/fastboot new file mode 100644 index 000000000..3422e3dac --- /dev/null +++ b/apps/fastboot @@ -0,0 +1,7 @@ +# fastboot +Fastboot is a part of Platform Tools: + + Command line utilities to manage Android devices, including adb and fastboot. + + This is a transitional script, like "adb", needed to install "platform-tools". +# SITES: https://developer.android.com/studio/releases/platform-tools \ No newline at end of file diff --git a/apps/fastboot.md b/apps/fastboot.md deleted file mode 100644 index e3a385d39..000000000 --- a/apps/fastboot.md +++ /dev/null @@ -1,12 +0,0 @@ -# FASTBOOT - - Fastboot is a part of Platform Tools: - - Command line utilities to manage Android devices, including adb and fastboot. - - This is a transitional script, like "adb", needed to install "platform-tools". - - SITE: https://developer.android.com/studio/releases/platform-tools - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/fastcompmgr b/apps/fastcompmgr new file mode 100644 index 000000000..e8c5e7a95 --- /dev/null +++ b/apps/fastcompmgr @@ -0,0 +1,3 @@ +# fastcompmgr +A fast compositor for X11. +# SITES: https://github.com/tycho-kirchner/fastcompmgr \ No newline at end of file diff --git a/apps/fastcompmgr.md b/apps/fastcompmgr.md deleted file mode 100644 index e07b3eef0..000000000 --- a/apps/fastcompmgr.md +++ /dev/null @@ -1,8 +0,0 @@ -# FASTCOMPMGR - - A fast compositor for X11. - - SITE: https://github.com/tycho-kirchner/fastcompmgr - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/fastfetch b/apps/fastfetch new file mode 100644 index 000000000..5f3f82f5f --- /dev/null +++ b/apps/fastfetch @@ -0,0 +1,6 @@ +# fastfetch +Like neofetch, but much faster because written mostly in C. + + This is the portable official version converted to an AppImage by our team, "Portable Linux Apps" , no additional changes have been made. +# SITES: https://github.com/fastfetch-cli/fastfetch +# SOURCES: https://github.com/Portable-Linux-Apps/fastfetch-AppImage \ No newline at end of file diff --git a/apps/fastfetch.md b/apps/fastfetch.md deleted file mode 100644 index ab79df345..000000000 --- a/apps/fastfetch.md +++ /dev/null @@ -1,12 +0,0 @@ -# FASTFETCH - - Like neofetch, but much faster because written mostly in C. - - This is the portable official version converted to an AppImage by our team, "Portable Linux Apps" , no additional changes have been made. - - SITE: https://github.com/fastfetch-cli/fastfetch - - APPIMAGE: https://github.com/Portable-Linux-Apps/fastfetch-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/fasttrack b/apps/fasttrack new file mode 100644 index 000000000..f455632ef --- /dev/null +++ b/apps/fasttrack @@ -0,0 +1,3 @@ +# fasttrack +Fast tracking of multiple objects +# SITES: https://github.com/FastTrackOrg/FastTrack \ No newline at end of file diff --git a/apps/fasttrack.md b/apps/fasttrack.md deleted file mode 100644 index a8dcb07c9..000000000 --- a/apps/fasttrack.md +++ /dev/null @@ -1,8 +0,0 @@ -# FASTTRACK - - Fast tracking of multiple objects - - SITE: https://github.com/FastTrackOrg/FastTrack - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/fat-wallet b/apps/fat-wallet new file mode 100644 index 000000000..6847cb77d --- /dev/null +++ b/apps/fat-wallet @@ -0,0 +1,3 @@ +# fat-wallet +Wallet for FAT tokens. Factom Asset Tokens (FAT) is a protocol of tokenization +# SITES: https://github.com/Factom-Asset-Tokens/wallet \ No newline at end of file diff --git a/apps/fat-wallet.md b/apps/fat-wallet.md deleted file mode 100644 index fbc483bfa..000000000 --- a/apps/fat-wallet.md +++ /dev/null @@ -1,8 +0,0 @@ -# FAT-WALLET - - Wallet for FAT tokens. Factom Asset Tokens (FAT) is a protocol of tokenization - - SITE: https://github.com/Factom-Asset-Tokens/wallet - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/fauxx b/apps/fauxx new file mode 100644 index 000000000..5cdccc6fa --- /dev/null +++ b/apps/fauxx @@ -0,0 +1,4 @@ +# fauxx + 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. +# SITES: https://github.com/digital-grease/fauxx-desktop +# SOURCES: https://github.com/digital-grease/fauxx-desktop \ No newline at end of file diff --git a/apps/fauxx.md b/apps/fauxx.md deleted file mode 100644 index 6daaf075c..000000000 --- a/apps/fauxx.md +++ /dev/null @@ -1,8 +0,0 @@ -# FAUXX - - 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. - - SITE: https://github.com/digital-grease/fauxx-desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/fbreader b/apps/fbreader new file mode 100644 index 000000000..bee3bbd69 --- /dev/null +++ b/apps/fbreader @@ -0,0 +1,3 @@ +# fbreader +Your Favourite eBook Reader +# SITES: https://fbreader.org/ \ No newline at end of file diff --git a/apps/fbreader.md b/apps/fbreader.md deleted file mode 100644 index 2e54b893d..000000000 --- a/apps/fbreader.md +++ /dev/null @@ -1,8 +0,0 @@ -# FBREADER - - Your Favourite eBook Reader - - SITE: https://fbreader.org/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/fchat-horizon b/apps/fchat-horizon new file mode 100644 index 000000000..e22e3e7ca --- /dev/null +++ b/apps/fchat-horizon @@ -0,0 +1,3 @@ +# fchat-horizon +The Best F-Chat 3.0 Client, No exceptions!. +# SITES: https://github.com/Fchat-Horizon/Horizon \ No newline at end of file diff --git a/apps/fchat-horizon.md b/apps/fchat-horizon.md deleted file mode 100644 index 252cf5aee..000000000 --- a/apps/fchat-horizon.md +++ /dev/null @@ -1,8 +0,0 @@ -# FCHAT-HORIZON - - The Best F-Chat 3.0 Client, No exceptions!. - - SITE: https://github.com/Fchat-Horizon/Horizon - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/fcp b/apps/fcp new file mode 100644 index 000000000..6a254aec5 --- /dev/null +++ b/apps/fcp @@ -0,0 +1,3 @@ +# fcp +A significantly faster alternative to the classic Unix cp(1) command, copying large files and directories in a fraction of the time. +# SITES: https://github.com/Svetlitski/fcp \ No newline at end of file diff --git a/apps/fcp.md b/apps/fcp.md deleted file mode 100644 index 2d457cd65..000000000 --- a/apps/fcp.md +++ /dev/null @@ -1,8 +0,0 @@ -# FCP - - A significantly faster alternative to the classic Unix cp(1) command, copying large files and directories in a fraction of the time. - - SITE: https://github.com/Svetlitski/fcp - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/fd b/apps/fd new file mode 100644 index 000000000..5b5f9ce42 --- /dev/null +++ b/apps/fd @@ -0,0 +1,3 @@ +# fd +A simple, fast and user-friendly alternative to 'find'. +# SITES: https://github.com/sharkdp/fd \ No newline at end of file diff --git a/apps/fd.md b/apps/fd.md deleted file mode 100644 index 6134c80f5..000000000 --- a/apps/fd.md +++ /dev/null @@ -1,8 +0,0 @@ -# FD - - A simple, fast and user-friendly alternative to 'find'. - - SITE: https://github.com/sharkdp/fd - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/fdm b/apps/fdm new file mode 100644 index 000000000..8afcdd863 --- /dev/null +++ b/apps/fdm @@ -0,0 +1,5 @@ +# fdm +Free Download Manager, multiplatform powerful modern download accelerator and organizer. + + This AppImage is built on-the-fly from the official .deb package. +# SITES: https://www.freedownloadmanager.org \ No newline at end of file diff --git a/apps/fdm.md b/apps/fdm.md deleted file mode 100644 index a87ef7717..000000000 --- a/apps/fdm.md +++ /dev/null @@ -1,10 +0,0 @@ -# FDM - - Free Download Manager, multiplatform powerful modern download accelerator and organizer. - - This AppImage is built on-the-fly from the official .deb package. - - SITE: https://www.freedownloadmanager.org - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/fdroidcl b/apps/fdroidcl new file mode 100644 index 000000000..32cf01482 --- /dev/null +++ b/apps/fdroidcl @@ -0,0 +1,3 @@ +# fdroidcl +A command-line F-Droid desktop client. +# SITES: https://github.com/Hoverth/fdroidcl \ No newline at end of file diff --git a/apps/fdroidcl.md b/apps/fdroidcl.md deleted file mode 100644 index c9096c458..000000000 --- a/apps/fdroidcl.md +++ /dev/null @@ -1,8 +0,0 @@ -# FDROIDCL - - A command-line F-Droid desktop client. - - SITE: https://github.com/Hoverth/fdroidcl - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/featherpad b/apps/featherpad new file mode 100644 index 000000000..67bf0ee59 --- /dev/null +++ b/apps/featherpad @@ -0,0 +1,3 @@ +# featherpad +Unofficial. A lightweight Qt plain-text editor. +# SITES: https://github.com/pkgforge-dev/FeatherPad-AppImage \ No newline at end of file diff --git a/apps/featherpad.md b/apps/featherpad.md deleted file mode 100644 index 53967a4e2..000000000 --- a/apps/featherpad.md +++ /dev/null @@ -1,8 +0,0 @@ -# FEATHERPAD - - Unofficial. A lightweight Qt plain-text editor. - - SITE: https://github.com/pkgforge-dev/FeatherPad-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/feebas b/apps/feebas new file mode 100644 index 000000000..557956c27 --- /dev/null +++ b/apps/feebas @@ -0,0 +1,3 @@ +# feebas +Screenshot comparison tool for identifying visual regressions. +# SITES: https://github.com/timzatko/feebas \ No newline at end of file diff --git a/apps/feebas.md b/apps/feebas.md deleted file mode 100644 index d5d626957..000000000 --- a/apps/feebas.md +++ /dev/null @@ -1,8 +0,0 @@ -# FEEBAS - - Screenshot comparison tool for identifying visual regressions. - - SITE: https://github.com/timzatko/feebas - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/feedseries b/apps/feedseries new file mode 100644 index 000000000..29aff84f7 --- /dev/null +++ b/apps/feedseries @@ -0,0 +1,3 @@ +# feedseries +Follow your series enthusiast news (french). +# SITES: https://github.com/matthieuy/feedseries \ No newline at end of file diff --git a/apps/feedseries.md b/apps/feedseries.md deleted file mode 100644 index 8e394dbac..000000000 --- a/apps/feedseries.md +++ /dev/null @@ -1,8 +0,0 @@ -# FEEDSERIES - - Follow your series enthusiast news (french). - - SITE: https://github.com/matthieuy/feedseries - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/feishin b/apps/feishin new file mode 100644 index 000000000..b61942f02 --- /dev/null +++ b/apps/feishin @@ -0,0 +1,3 @@ +# feishin +Sonixd Rewrite, a desktop music player. +# SITES: https://github.com/jeffvli/feishin \ No newline at end of file diff --git a/apps/feishin.md b/apps/feishin.md deleted file mode 100644 index 973233f7f..000000000 --- a/apps/feishin.md +++ /dev/null @@ -1,8 +0,0 @@ -# FEISHIN - - Sonixd Rewrite, a desktop music player. - - SITE: https://github.com/jeffvli/feishin - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ferdium b/apps/ferdium new file mode 100644 index 000000000..001bea37c --- /dev/null +++ b/apps/ferdium @@ -0,0 +1,3 @@ +# ferdium +All your services in one place, built by the community +# SITES: https://github.com/ferdium/ferdium-app \ No newline at end of file diff --git a/apps/ferdium.md b/apps/ferdium.md deleted file mode 100644 index 06f64a2de..000000000 --- a/apps/ferdium.md +++ /dev/null @@ -1,8 +0,0 @@ -# FERDIUM - - All your services in one place, built by the community - - SITE: https://github.com/ferdium/ferdium-app - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ferrix b/apps/ferrix new file mode 100644 index 000000000..74ffe96ea --- /dev/null +++ b/apps/ferrix @@ -0,0 +1,3 @@ +# ferrix +Fast, modern, cross-platform download manager built with Rust and Tauri — supports resumable downloads, clean UI, and blazing performance. +# SITES: https://github.com/mehranTaslimi/Ferrix \ No newline at end of file diff --git a/apps/ferrix.md b/apps/ferrix.md deleted file mode 100644 index 4d40ee9f0..000000000 --- a/apps/ferrix.md +++ /dev/null @@ -1,8 +0,0 @@ -# FERRIX - - Fast, modern, cross-platform download manager built with Rust and Tauri — supports resumable downloads, clean UI, and blazing performance. - - SITE: https://github.com/mehranTaslimi/Ferrix - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/fetchit b/apps/fetchit new file mode 100644 index 000000000..123b2651c --- /dev/null +++ b/apps/fetchit @@ -0,0 +1,3 @@ +# fetchit +A system fetch tool for Linux, written in Rust. +# SITES: https://github.com/Ruturajn/fetchit \ No newline at end of file diff --git a/apps/fetchit.md b/apps/fetchit.md deleted file mode 100644 index ce4404a5d..000000000 --- a/apps/fetchit.md +++ /dev/null @@ -1,8 +0,0 @@ -# FETCHIT - - A system fetch tool for Linux, written in Rust. - - SITE: https://github.com/Ruturajn/fetchit - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ff-password-exporter b/apps/ff-password-exporter new file mode 100644 index 000000000..24c5acf85 --- /dev/null +++ b/apps/ff-password-exporter @@ -0,0 +1,3 @@ +# ff-password-exporter +Easily export your saved passwords from Firefox. +# SITES: https://github.com/kspearrin/ff-password-exporter \ No newline at end of file diff --git a/apps/ff-password-exporter.md b/apps/ff-password-exporter.md deleted file mode 100644 index 5985a4379..000000000 --- a/apps/ff-password-exporter.md +++ /dev/null @@ -1,8 +0,0 @@ -# FF-PASSWORD-EXPORTER - - Easily export your saved passwords from Firefox. - - SITE: https://github.com/kspearrin/ff-password-exporter - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ffdec b/apps/ffdec new file mode 100644 index 000000000..5c61b4247 --- /dev/null +++ b/apps/ffdec @@ -0,0 +1,3 @@ +# ffdec +JPEXS Free Flash Decompiler. +# SITES: https://github.com/jindrapetrik/jpexs-decompiler \ No newline at end of file diff --git a/apps/ffdec-nightly b/apps/ffdec-nightly new file mode 100644 index 000000000..f5921317e --- /dev/null +++ b/apps/ffdec-nightly @@ -0,0 +1,5 @@ +# ffdec-nightly +JPEXS Free Flash Decompiler. + + This is the nightly build. +# SITES: https://github.com/jindrapetrik/jpexs-decompiler \ No newline at end of file diff --git a/apps/ffdec-nightly.md b/apps/ffdec-nightly.md deleted file mode 100644 index 4770c8121..000000000 --- a/apps/ffdec-nightly.md +++ /dev/null @@ -1,10 +0,0 @@ -# FFDEC-NIGHTLY - - JPEXS Free Flash Decompiler. - - This is the nightly build. - - SITE: https://github.com/jindrapetrik/jpexs-decompiler - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ffdec.md b/apps/ffdec.md deleted file mode 100644 index efe6acae5..000000000 --- a/apps/ffdec.md +++ /dev/null @@ -1,8 +0,0 @@ -# FFDEC - - JPEXS Free Flash Decompiler. - - SITE: https://github.com/jindrapetrik/jpexs-decompiler - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/fflogs-uploader b/apps/fflogs-uploader new file mode 100644 index 000000000..ed25d6720 --- /dev/null +++ b/apps/fflogs-uploader @@ -0,0 +1,3 @@ +# fflogs-uploader +FFLogs Uploader appimage +# SITES: https://github.com/RPGLogs/Uploaders-fflogs/ \ No newline at end of file diff --git a/apps/fflogs-uploader.md b/apps/fflogs-uploader.md deleted file mode 100644 index 7bf7bf7c9..000000000 --- a/apps/fflogs-uploader.md +++ /dev/null @@ -1,8 +0,0 @@ -# FFLOGS-UPLOADER - - FFLogs Uploader appimage - - SITE: https://github.com/RPGLogs/Uploaders-fflogs/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ffmpeg b/apps/ffmpeg new file mode 100644 index 000000000..7b35b3522 --- /dev/null +++ b/apps/ffmpeg @@ -0,0 +1,3 @@ +# ffmpeg +Unofficial, A complete, cross-platform solution to record, convert and stream audio and video. +# SITES: https://github.com/pkgforge-dev/FFmpeg-AppImage \ No newline at end of file diff --git a/apps/ffmpeg.md b/apps/ffmpeg.md deleted file mode 100644 index 53022cb12..000000000 --- a/apps/ffmpeg.md +++ /dev/null @@ -1,8 +0,0 @@ -# FFMPEG - - Unofficial, A complete, cross-platform solution to record, convert and stream audio and video. - - SITE: https://github.com/pkgforge-dev/FFmpeg-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/ffsend b/apps/ffsend new file mode 100644 index 000000000..4e52aaea1 --- /dev/null +++ b/apps/ffsend @@ -0,0 +1,3 @@ +# ffsend +Easily and securely share files from the command line. A fully featured Firefox Send client. +# SITES: https://github.com/timvisee/ffsend \ No newline at end of file diff --git a/apps/ffsend.md b/apps/ffsend.md deleted file mode 100644 index c50d4866f..000000000 --- a/apps/ffsend.md +++ /dev/null @@ -1,8 +0,0 @@ -# FFSEND - - Easily and securely share files from the command line. A fully featured Firefox Send client. - - SITE: https://github.com/timvisee/ffsend - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ficus b/apps/ficus new file mode 100644 index 000000000..29f7ffde2 --- /dev/null +++ b/apps/ficus @@ -0,0 +1,3 @@ +# ficus +A software for editing and managing markdown documents, developed by the gg=G team. +# SITES: https://ficus.world/ \ No newline at end of file diff --git a/apps/ficus.md b/apps/ficus.md deleted file mode 100644 index 09a6c9b21..000000000 --- a/apps/ficus.md +++ /dev/null @@ -1,8 +0,0 @@ -# FICUS - - A software for editing and managing markdown documents, developed by the gg=G team. - - SITE: https://ficus.world/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/fiddler-everywhere b/apps/fiddler-everywhere new file mode 100644 index 000000000..2203a13a3 --- /dev/null +++ b/apps/fiddler-everywhere @@ -0,0 +1,3 @@ +# fiddler-everywhere +Debug your network traffic to deliver high-quality products. +# SITES: https://www.telerik.com \ No newline at end of file diff --git a/apps/fiddler-everywhere.md b/apps/fiddler-everywhere.md deleted file mode 100644 index 2a37cabd2..000000000 --- a/apps/fiddler-everywhere.md +++ /dev/null @@ -1,8 +0,0 @@ -# FIDDLER-EVERYWHERE - - Debug your network traffic to deliver high-quality products. - - SITE: https://www.telerik.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/fidias-database-migration-app b/apps/fidias-database-migration-app new file mode 100644 index 000000000..a7f6c53e6 --- /dev/null +++ b/apps/fidias-database-migration-app @@ -0,0 +1,3 @@ +# fidias-database-migration-app +Desktop app to migrate databases based on SQL files +# SITES: https://github.com/open-fidias/db-migration-app \ No newline at end of file diff --git a/apps/fidias-database-migration-app.md b/apps/fidias-database-migration-app.md deleted file mode 100644 index ed90992b3..000000000 --- a/apps/fidias-database-migration-app.md +++ /dev/null @@ -1,8 +0,0 @@ -# FIDIAS-DATABASE-MIGRATION-APP - - Desktop app to migrate databases based on SQL files - - SITE: https://github.com/open-fidias/db-migration-app - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/fifo b/apps/fifo new file mode 100644 index 000000000..5d73110f7 --- /dev/null +++ b/apps/fifo @@ -0,0 +1,3 @@ +# fifo +A modern web browser, built on top of modern web technologies such as Electron and React that is meant to be secure. +# SITES: https://fifo.snaildos.com/ \ No newline at end of file diff --git a/apps/fifo.md b/apps/fifo.md deleted file mode 100644 index 74e3d4993..000000000 --- a/apps/fifo.md +++ /dev/null @@ -1,8 +0,0 @@ -# FIFO - - A modern web browser, built on top of modern web technologies such as Electron and React that is meant to be secure. - - SITE: https://fifo.snaildos.com/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/figma-linux b/apps/figma-linux new file mode 100644 index 000000000..ce31f061c --- /dev/null +++ b/apps/figma-linux @@ -0,0 +1,3 @@ +# figma-linux +Figma is the first interface design tool based in the browser, making it easier for teams to create software. +# SITES: https://github.com/Figma-Linux/figma-linux \ No newline at end of file diff --git a/apps/figma-linux.md b/apps/figma-linux.md deleted file mode 100644 index 4c683d371..000000000 --- a/apps/figma-linux.md +++ /dev/null @@ -1,8 +0,0 @@ -# FIGMA-LINUX - - Figma is the first interface design tool based in the browser, making it easier for teams to create software. - - SITE: https://github.com/Figma-Linux/figma-linux - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/file b/apps/file new file mode 100644 index 000000000..d8c4c3e11 --- /dev/null +++ b/apps/file @@ -0,0 +1,3 @@ +# file +Determine the type of a file from its contents. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/file-commander b/apps/file-commander new file mode 100644 index 000000000..3f5ac333a --- /dev/null +++ b/apps/file-commander @@ -0,0 +1,3 @@ +# file-commander +Cross-platform Total Commander-like orthodox file manager for Windows, Mac and Linux +# SITES: https://github.com/VioletGiraffe/file-commander \ No newline at end of file diff --git a/apps/file-commander.md b/apps/file-commander.md deleted file mode 100644 index e0fe6e9ea..000000000 --- a/apps/file-commander.md +++ /dev/null @@ -1,8 +0,0 @@ -# FILE-COMMANDER - - Cross-platform Total Commander-like orthodox file manager for Windows, Mac and Linux - - SITE: https://github.com/VioletGiraffe/file-commander - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/file-converter b/apps/file-converter new file mode 100644 index 000000000..292c0b6ba --- /dev/null +++ b/apps/file-converter @@ -0,0 +1,3 @@ +# file-converter +Convert between various file formats +# SITES: https://github.com/TimothySimon123/file-converter \ No newline at end of file diff --git a/apps/file-converter.md b/apps/file-converter.md deleted file mode 100644 index b00e6ed37..000000000 --- a/apps/file-converter.md +++ /dev/null @@ -1,8 +0,0 @@ -# FILE-CONVERTER - - Convert between various file formats - - SITE: https://github.com/TimothySimon123/file-converter - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/file-roller b/apps/file-roller new file mode 100644 index 000000000..aa9fd2727 --- /dev/null +++ b/apps/file-roller @@ -0,0 +1,4 @@ +# file-roller + File Roller is an archive manager for the GNOME desktop environment. Create and modify archives. +# SITES: https://github.com/REPLACETHIS +# SOURCES: https://github.com/REPLACETHIS \ No newline at end of file diff --git a/apps/file-roller.md b/apps/file-roller.md deleted file mode 100644 index 67af6cdbe..000000000 --- a/apps/file-roller.md +++ /dev/null @@ -1,10 +0,0 @@ -# FILE-ROLLER - - File Roller is an archive manager for the GNOME desktop environment. Create and modify archives. - - This script can install the latest release (if any) and a legacy variant. - - SITE (GTK3): https://github.com/ivan-hc/GNOME3-appimages - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/file-to-c b/apps/file-to-c new file mode 100644 index 000000000..41a7973b8 --- /dev/null +++ b/apps/file-to-c @@ -0,0 +1,3 @@ +# file-to-c +Tool for generating a C header (i.e. a .h containing an array variable) from a spir-v binary file +# SITES: https://github.com/Wallby/file-to-c \ No newline at end of file diff --git a/apps/file-to-c.md b/apps/file-to-c.md deleted file mode 100644 index 649505b29..000000000 --- a/apps/file-to-c.md +++ /dev/null @@ -1,8 +0,0 @@ -# FILE-TO-C - - Tool for generating a C header (i.e. a .h containing an array variable) from a spir-v binary file - - SITE: https://github.com/Wallby/file-to-c - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/file.md b/apps/file.md deleted file mode 100644 index 234fe8027..000000000 --- a/apps/file.md +++ /dev/null @@ -1,8 +0,0 @@ -# FILE - - Determine the type of a file from its contents. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/filebrowser b/apps/filebrowser new file mode 100644 index 000000000..a62a50f9b --- /dev/null +++ b/apps/filebrowser @@ -0,0 +1,3 @@ +# filebrowser +Web File Browser. +# SITES: https://github.com/filebrowser/filebrowser \ No newline at end of file diff --git a/apps/filebrowser-quantum b/apps/filebrowser-quantum new file mode 100644 index 000000000..9f7d7f748 --- /dev/null +++ b/apps/filebrowser-quantum @@ -0,0 +1,3 @@ +# filebrowser-quantum +Web File Browser. +# SITES: https://github.com/gtsteffaniak/filebrowser \ No newline at end of file diff --git a/apps/filebrowser-quantum.md b/apps/filebrowser-quantum.md deleted file mode 100644 index 5b1a56963..000000000 --- a/apps/filebrowser-quantum.md +++ /dev/null @@ -1,8 +0,0 @@ -# FILEBROWSER-QUANTUM - - Web File Browser. - - SITE: https://github.com/gtsteffaniak/filebrowser - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/filebrowser.md b/apps/filebrowser.md deleted file mode 100644 index 2a4256df9..000000000 --- a/apps/filebrowser.md +++ /dev/null @@ -1,8 +0,0 @@ -# FILEBROWSER - - Web File Browser. - - SITE: https://github.com/filebrowser/filebrowser - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/filelight b/apps/filelight new file mode 100644 index 000000000..a892a474d --- /dev/null +++ b/apps/filelight @@ -0,0 +1,9 @@ +# filelight +Filelight allows you to understand your disk usage by graphically representing your filesystem as a set of concentric, segmented rings. + + It is like a pie-chart, but the segments nest, allowing you to see both which directories take up all your space, and which directories and files inside those directories are the real culprits. + + This is the unofficial AppImage +# SCREENSHOTS: https://github.com/user-attachments/assets/3c3a3de2-acad-406b-b2f2-690c2c6afe70 +# SITES: https://apps.kde.org +# SOURCES: https://github.com/pkgforge-dev/filelight-AppImage \ No newline at end of file diff --git a/apps/filelight.md b/apps/filelight.md deleted file mode 100644 index 37b46535f..000000000 --- a/apps/filelight.md +++ /dev/null @@ -1,16 +0,0 @@ -# FILELIGHT - - Filelight allows you to understand your disk usage by graphically representing your filesystem as a set of concentric, segmented rings. - - It is like a pie-chart, but the segments nest, allowing you to see both which directories take up all your space, and which directories and files inside those directories are the real culprits. - - This is the unofficial AppImage - -![Screenshot](https://github.com/user-attachments/assets/3c3a3de2-acad-406b-b2f2-690c2c6afe70) - - SITE: https://apps.kde.org - - APPIMAGE: https://github.com/pkgforge-dev/filelight-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/filen b/apps/filen new file mode 100644 index 000000000..f0e310469 --- /dev/null +++ b/apps/filen @@ -0,0 +1,3 @@ +# filen +Desktop client for Filen.io - Zero knowledge end-to-end encrypted cloud storage +# SITES: https://github.com/FilenCloudDienste/filen-desktop \ No newline at end of file diff --git a/apps/filen-cli b/apps/filen-cli new file mode 100644 index 000000000..b96e6f5d0 --- /dev/null +++ b/apps/filen-cli @@ -0,0 +1,3 @@ +# filen-cli +Filen CLI for Windows, macOS and Linux +# SITES: https://github.com/FilenCloudDienste/filen-cli \ No newline at end of file diff --git a/apps/filen-cli.md b/apps/filen-cli.md deleted file mode 100644 index bda6fe6d8..000000000 --- a/apps/filen-cli.md +++ /dev/null @@ -1,8 +0,0 @@ -# FILEN-CLI - - Filen CLI for Windows, macOS and Linux - - SITE: https://github.com/FilenCloudDienste/filen-cli - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/filen.md b/apps/filen.md deleted file mode 100644 index 2f4f358eb..000000000 --- a/apps/filen.md +++ /dev/null @@ -1,8 +0,0 @@ -# FILEN - - Desktop client for Filen.io - Zero knowledge end-to-end encrypted cloud storage - - SITE: https://github.com/FilenCloudDienste/filen-desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/filezilla b/apps/filezilla new file mode 100644 index 000000000..553878cad --- /dev/null +++ b/apps/filezilla @@ -0,0 +1,7 @@ +# filezilla +FileZilla®, the free FTP solution. The FileZilla Client not only supports FTP, but also FTP over TLS (FTPS) and SFTP. It is open source software distributed free of charge under the terms of the GNU General Public License. + + This is the unofficial AppImage. +# SCREENSHOTS: https://github.com/user-attachments/assets/6e245167-4c62-467b-997c-7e6dcb5cf2cb +# SITES: https://filezilla-project.org +# SOURCES: https://github.com/ivan-hc/FileZilla-appimage \ No newline at end of file diff --git a/apps/filezilla.md b/apps/filezilla.md deleted file mode 100644 index 5c3ce48ad..000000000 --- a/apps/filezilla.md +++ /dev/null @@ -1,14 +0,0 @@ -# FILEZILLA - - FileZilla®, the free FTP solution. The FileZilla Client not only supports FTP, but also FTP over TLS (FTPS) and SFTP. It is open source software distributed free of charge under the terms of the GNU General Public License. - - This is the unofficial AppImage. - - ![Screenshot](https://github.com/user-attachments/assets/6e245167-4c62-467b-997c-7e6dcb5cf2cb) - - SITE: https://filezilla-project.org - - APPIMAGE: https://github.com/ivan-hc/FileZilla-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/filmulator-gui b/apps/filmulator-gui new file mode 100644 index 000000000..3151eb192 --- /dev/null +++ b/apps/filmulator-gui @@ -0,0 +1,3 @@ +# filmulator-gui +A Qt Quick GUI adaptation of Filmulator, a film emulator with all of the positives and none of the negatives. Filmulator accepts raw files from cameras and simulates the development of film as if exposed to the same light as the camera's sensor. +# SITES: https://github.com/CarVac/filmulator-gui \ No newline at end of file diff --git a/apps/filmulator-gui.md b/apps/filmulator-gui.md deleted file mode 100644 index 135849f61..000000000 --- a/apps/filmulator-gui.md +++ /dev/null @@ -1,8 +0,0 @@ -# FILMULATOR-GUI - - A Qt Quick GUI adaptation of Filmulator, a film emulator with all of the positives and none of the negatives. Filmulator accepts raw files from cameras and simulates the development of film as if exposed to the same light as the camera's sensor. - - SITE: https://github.com/CarVac/filmulator-gui - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/find b/apps/find new file mode 100644 index 000000000..182e77dce --- /dev/null +++ b/apps/find @@ -0,0 +1,4 @@ +# find + Files in a directory hierarchy. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/find.md b/apps/find.md deleted file mode 100644 index 44a960282..000000000 --- a/apps/find.md +++ /dev/null @@ -1,8 +0,0 @@ -# FIND - - Files in a directory hierarchy. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/fingrom b/apps/fingrom new file mode 100644 index 000000000..c4a6c5958 --- /dev/null +++ b/apps/fingrom @@ -0,0 +1,3 @@ +# fingrom +Fingrom, open-source platform-agnostic financial accounting application. +# SITES: https://github.com/lyskouski/app-finance \ No newline at end of file diff --git a/apps/fingrom.md b/apps/fingrom.md deleted file mode 100644 index 224178bff..000000000 --- a/apps/fingrom.md +++ /dev/null @@ -1,8 +0,0 @@ -# FINGROM - - Fingrom, open-source platform-agnostic financial accounting application. - - SITE: https://github.com/lyskouski/app-finance - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/firealpaca b/apps/firealpaca new file mode 100644 index 000000000..ecad915d7 --- /dev/null +++ b/apps/firealpaca @@ -0,0 +1,3 @@ +# firealpaca +A Free and Multiplatform Digital Painting Software. +# SITES: https://firealpaca.com \ No newline at end of file diff --git a/apps/firealpaca.md b/apps/firealpaca.md deleted file mode 100644 index 1ab79d904..000000000 --- a/apps/firealpaca.md +++ /dev/null @@ -1,8 +0,0 @@ -# FIREALPACA - - A Free and Multiplatform Digital Painting Software. - - SITE: https://firealpaca.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/firecamp b/apps/firecamp new file mode 100644 index 000000000..830ce4650 --- /dev/null +++ b/apps/firecamp @@ -0,0 +1,3 @@ +# firecamp +Developer-first OpenSource API DevTool, Postman/Insomnia alternative. +# SITES: https://github.com/firecamp-dev/firecamp \ No newline at end of file diff --git a/apps/firecamp.md b/apps/firecamp.md deleted file mode 100644 index 11f47df57..000000000 --- a/apps/firecamp.md +++ /dev/null @@ -1,8 +0,0 @@ -# FIRECAMP - - Developer-first OpenSource API DevTool, Postman/Insomnia alternative. - - SITE: https://github.com/firecamp-dev/firecamp - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/firedragon b/apps/firedragon new file mode 100644 index 000000000..efd909ace --- /dev/null +++ b/apps/firedragon @@ -0,0 +1,25 @@ +# firedragon +FireDragon is a browser based on the excellent Floorp browser (also called the Vivaldi of Firefox's). + + It was customized to have dr460nized-fitting aestetics as well as many opiniated settings by default. + + As this browser was originally a Librewolf fork, we are trying to integrate its best patches and tweaks in the new base. + + The most important features in addition of Floorps own ones can be found below. + + - Searx & Whoogle search engines added, with the possibility to run locally if fitting deps are installed + - The default search engine is Garuda's SearxNG instance + - Dark Reader + - Sweet theme added + - Custom, dr460nized branding 🐉 + - Keeps privacy-enhancing settings in sync with Librewolfs changes + - Firefox accounts are enabled and profile data is synced to a custom self-hosted sync server (ffsync.garudalinux.org) + - Presets for both profile-sync-daemon (which Garuda Linux ships by default) & Firejail are available + - Faster webpages loading from: + - Custom Firedragon settings + - Inclusion of FastFox tweaks + - Hidden Navigation buttons instead of being greyed out when they are inactive + - PBMode Security + - Latest Fingerprinting as an option in firedragon.cfg (you can copy to your own firedragon.overrides.cfg and enable there) +# SCREENSHOTS: https://gitlab.com/garuda-linux/firedragon/settings/-/raw/master/home.png +# SITES: https://firedragon.garudalinux.org \ No newline at end of file diff --git a/apps/firedragon.md b/apps/firedragon.md deleted file mode 100644 index 035bb8f7b..000000000 --- a/apps/firedragon.md +++ /dev/null @@ -1,31 +0,0 @@ -# FIREDRAGON - - FireDragon is a browser based on the excellent Floorp browser (also called the Vivaldi of Firefox's). - - It was customized to have dr460nized-fitting aestetics as well as many opiniated settings by default. - - As this browser was originally a Librewolf fork, we are trying to integrate its best patches and tweaks in the new base. - - The most important features in addition of Floorps own ones can be found below. - - - Searx & Whoogle search engines added, with the possibility to run locally if fitting deps are installed - - The default search engine is Garuda's SearxNG instance - - Dark Reader - - Sweet theme added - - Custom, dr460nized branding 🐉 - - Keeps privacy-enhancing settings in sync with Librewolfs changes - - Firefox accounts are enabled and profile data is synced to a custom self-hosted sync server (ffsync.garudalinux.org) - - Presets for both profile-sync-daemon (which Garuda Linux ships by default) & Firejail are available - - Faster webpages loading from: - - Custom Firedragon settings - - Inclusion of FastFox tweaks - - Hidden Navigation buttons instead of being greyed out when they are inactive - - PBMode Security - - Latest Fingerprinting as an option in firedragon.cfg (you can copy to your own firedragon.overrides.cfg and enable there) - - ![Screenshot](https://gitlab.com/garuda-linux/firedragon/settings/-/raw/master/home.png) - - SITE: https://firedragon.garudalinux.org - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/firefly-desktop b/apps/firefly-desktop new file mode 100644 index 000000000..6d9e960b5 --- /dev/null +++ b/apps/firefly-desktop @@ -0,0 +1,3 @@ +# firefly-desktop +The official IOTA and Shimmer wallet. +# SITES: https://firefly.iota.org/ \ No newline at end of file diff --git a/apps/firefly-desktop.md b/apps/firefly-desktop.md deleted file mode 100644 index a659baaf9..000000000 --- a/apps/firefly-desktop.md +++ /dev/null @@ -1,8 +0,0 @@ -# FIREFLY-DESKTOP - - The official IOTA and Shimmer wallet. - - SITE: https://firefly.iota.org/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/firefox b/apps/firefox new file mode 100644 index 000000000..503067e95 --- /dev/null +++ b/apps/firefox @@ -0,0 +1,9 @@ +# firefox +Firefox is a powerful, extensible web browser with support for modern web application technologies. + + This is the Stable release. + + This script provides both the official portable build with automatic updates and the AppImage. +# SCREENSHOTS: https://user-images.githubusercontent.com/88724353/235563850-61d359ff-53ac-43a6-ab1d-33297dc4df73.jpg +# SITES: https://www.firefox.com +# SOURCES: https://github.com/ivan-hc/Firefox-appimage \ No newline at end of file diff --git a/apps/firefox-beta b/apps/firefox-beta new file mode 100644 index 000000000..853e884b9 --- /dev/null +++ b/apps/firefox-beta @@ -0,0 +1,9 @@ +# firefox-beta +Firefox is a powerful, extensible web browser with support for modern web application technologies. + + This is the Beta release. + + This script provides both the official portable build with automatic updates and the AppImage. +# SCREENSHOTS: https://user-images.githubusercontent.com/88724353/235563850-61d359ff-53ac-43a6-ab1d-33297dc4df73.jpg +# SITES: https://www.firefox.com +# SOURCES: https://github.com/ivan-hc/Firefox-appimage \ No newline at end of file diff --git a/apps/firefox-beta.md b/apps/firefox-beta.md deleted file mode 100644 index d05825dcd..000000000 --- a/apps/firefox-beta.md +++ /dev/null @@ -1,16 +0,0 @@ -# FIREFOX-BETA - - Firefox is a powerful, extensible web browser with support for modern web application technologies. - - This is the Beta release. - - This script provides both the official portable build with automatic updates and the AppImage. - - ![Screenshot](https://user-images.githubusercontent.com/88724353/235563850-61d359ff-53ac-43a6-ab1d-33297dc4df73.jpg) - - SITE: https://www.firefox.com - - APPIMAGE: https://github.com/ivan-hc/Firefox-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/firefox-devedition b/apps/firefox-devedition new file mode 100644 index 000000000..b45612573 --- /dev/null +++ b/apps/firefox-devedition @@ -0,0 +1,11 @@ +# firefox-devedition +Firefox is a powerful, extensible web browser with support for modern web application technologies. + Get the browser that protects what’s important! + No shady privacy policies or back doors for advertisers. Just a lightning fast browser that doesn’t sell you out. + + This is the Developer Edition, with automatic updates. + + This script provides both the official portable build and the AppImage. +# SCREENSHOTS: https://user-images.githubusercontent.com/88724353/235563850-61d359ff-53ac-43a6-ab1d-33297dc4df73.jpg +# SITES: https://www.firefox.com +# SOURCES: https://github.com/ivan-hc/Firefox-appimage \ No newline at end of file diff --git a/apps/firefox-devedition.md b/apps/firefox-devedition.md deleted file mode 100644 index 486a01c18..000000000 --- a/apps/firefox-devedition.md +++ /dev/null @@ -1,18 +0,0 @@ -# FIREFOX-DEVEDITION - - Firefox is a powerful, extensible web browser with support for modern web application technologies. - Get the browser that protects what’s important! - No shady privacy policies or back doors for advertisers. Just a lightning fast browser that doesn’t sell you out. - - This is the Developer Edition, with automatic updates. - - This script provides both the official portable build and the AppImage. - - ![Screenshot](https://user-images.githubusercontent.com/88724353/235563850-61d359ff-53ac-43a6-ab1d-33297dc4df73.jpg) - - SITE: https://www.firefox.com - - APPIMAGE: https://github.com/ivan-hc/Firefox-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/firefox-esr b/apps/firefox-esr new file mode 100644 index 000000000..da79dac5f --- /dev/null +++ b/apps/firefox-esr @@ -0,0 +1,9 @@ +# firefox-esr +Firefox is a powerful, extensible web browser with support for modern web application technologies. + + This is the Extended Support Release. + + This script provides both the official portable build with automatic updates and the AppImage. +# SCREENSHOTS: https://user-images.githubusercontent.com/88724353/235563850-61d359ff-53ac-43a6-ab1d-33297dc4df73.jpg +# SITES: https://www.firefox.com +# SOURCES: https://github.com/ivan-hc/Firefox-appimage \ No newline at end of file diff --git a/apps/firefox-esr.md b/apps/firefox-esr.md deleted file mode 100644 index e2643c588..000000000 --- a/apps/firefox-esr.md +++ /dev/null @@ -1,16 +0,0 @@ -# FIREFOX-ESR - - Firefox is a powerful, extensible web browser with support for modern web application technologies. - - This is the Extended Support Release. - - This script provides both the official portable build with automatic updates and the AppImage. - - ![Screenshot](https://user-images.githubusercontent.com/88724353/235563850-61d359ff-53ac-43a6-ab1d-33297dc4df73.jpg) - - SITE: https://www.firefox.com - - APPIMAGE: https://github.com/ivan-hc/Firefox-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/firefox-nightly b/apps/firefox-nightly new file mode 100644 index 000000000..08ec866ae --- /dev/null +++ b/apps/firefox-nightly @@ -0,0 +1,9 @@ +# firefox-nightly +Firefox is a powerful, extensible web browser with support for modern web application technologies. + + This is the Nightly build. + + This script provides both the official portable build with automatic updates and the AppImage. +# SCREENSHOTS: https://user-images.githubusercontent.com/88724353/235563850-61d359ff-53ac-43a6-ab1d-33297dc4df73.jpg +# SITES: https://www.firefox.com +# SOURCES: https://github.com/ivan-hc/Firefox-appimage \ No newline at end of file diff --git a/apps/firefox-nightly.md b/apps/firefox-nightly.md deleted file mode 100644 index 51e402e8c..000000000 --- a/apps/firefox-nightly.md +++ /dev/null @@ -1,16 +0,0 @@ -# FIREFOX-NIGHTLY - - Firefox is a powerful, extensible web browser with support for modern web application technologies. - - This is the Nightly build. - - This script provides both the official portable build with automatic updates and the AppImage. - - ![Screenshot](https://user-images.githubusercontent.com/88724353/235563850-61d359ff-53ac-43a6-ab1d-33297dc4df73.jpg) - - SITE: https://www.firefox.com - - APPIMAGE: https://github.com/ivan-hc/Firefox-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/firefox.md b/apps/firefox.md deleted file mode 100644 index d97ac5abb..000000000 --- a/apps/firefox.md +++ /dev/null @@ -1,16 +0,0 @@ -# FIREFOX - - Firefox is a powerful, extensible web browser with support for modern web application technologies. - - This is the Stable release. - - This script provides both the official portable build with automatic updates and the AppImage. - - ![Screenshot](https://user-images.githubusercontent.com/88724353/235563850-61d359ff-53ac-43a6-ab1d-33297dc4df73.jpg) - - SITE: https://www.firefox.com - - APPIMAGE: https://github.com/ivan-hc/Firefox-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/fireminipro b/apps/fireminipro new file mode 100644 index 000000000..a5e84a2b9 --- /dev/null +++ b/apps/fireminipro @@ -0,0 +1,3 @@ +# fireminipro +GUI for minipro CLI. +# SITES: https://github.com/Jartza/fireminipro \ No newline at end of file diff --git a/apps/fireminipro.md b/apps/fireminipro.md deleted file mode 100644 index a1e860f78..000000000 --- a/apps/fireminipro.md +++ /dev/null @@ -1,8 +0,0 @@ -# FIREMINIPRO - - GUI for minipro CLI. - - SITE: https://github.com/Jartza/fireminipro - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/firetail b/apps/firetail new file mode 100644 index 000000000..1a1d58b14 --- /dev/null +++ b/apps/firetail @@ -0,0 +1,3 @@ +# firetail +An open source music player. +# SITES: https://github.com/kawuchuu/firetail \ No newline at end of file diff --git a/apps/firetail.md b/apps/firetail.md deleted file mode 100644 index 79fa86b98..000000000 --- a/apps/firetail.md +++ /dev/null @@ -1,8 +0,0 @@ -# FIRETAIL - - An open source music player. - - SITE: https://github.com/kawuchuu/firetail - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/firetv-toolkit b/apps/firetv-toolkit new file mode 100644 index 000000000..7a2abe31e --- /dev/null +++ b/apps/firetv-toolkit @@ -0,0 +1,3 @@ +# firetv-toolkit +A cross platform desktop app written in Typescript/Node using React and Electron. Android-Toolkit is a GUI for adb and can be used to modify android devices such as firesticks and google TVs. +# SITES: https://github.com/AnthonyGress/Android-Toolkit \ No newline at end of file diff --git a/apps/firetv-toolkit.md b/apps/firetv-toolkit.md deleted file mode 100644 index c1f62c9ba..000000000 --- a/apps/firetv-toolkit.md +++ /dev/null @@ -1,8 +0,0 @@ -# FIRETV-TOOLKIT - - A cross platform desktop app written in Typescript/Node using React and Electron. Android-Toolkit is a GUI for adb and can be used to modify android devices such as firesticks and google TVs. - - SITE: https://github.com/AnthonyGress/Android-Toolkit - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/fish b/apps/fish new file mode 100644 index 000000000..0d5610528 --- /dev/null +++ b/apps/fish @@ -0,0 +1,3 @@ +# fish +The user-friendly command line shell. +# SITES: https://github.com/fish-shell/fish-shell \ No newline at end of file diff --git a/apps/fish.md b/apps/fish.md deleted file mode 100644 index ace19d11f..000000000 --- a/apps/fish.md +++ /dev/null @@ -1,8 +0,0 @@ -# FISH - - The user-friendly command line shell. - - SITE: https://github.com/fish-shell/fish-shell - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/fishing-funds b/apps/fishing-funds new file mode 100644 index 000000000..7b25afc39 --- /dev/null +++ b/apps/fishing-funds @@ -0,0 +1,3 @@ +# fishing-funds +基金,大盘,股票,虚拟货币状态栏显示小应用,基于Electron开发. +# SITES: https://ff.1zilc.top/ \ No newline at end of file diff --git a/apps/fishing-funds.md b/apps/fishing-funds.md deleted file mode 100644 index 8cdf2a77d..000000000 --- a/apps/fishing-funds.md +++ /dev/null @@ -1,8 +0,0 @@ -# FISHING-FUNDS - - 基金,大盘,股票,虚拟货币状态栏显示小应用,基于Electron开发. - - SITE: https://ff.1zilc.top/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/fishterm b/apps/fishterm new file mode 100644 index 000000000..aa88be03b --- /dev/null +++ b/apps/fishterm @@ -0,0 +1,5 @@ +# fishterm +A open-soruce Terminal remote access. + + Secure boilerplate for Electron app based on Vite. TypeScript + Vue/React/Angular/Svelte/Vanilla +# SITES: https://github.com/kuronekouwu/FishTerm \ No newline at end of file diff --git a/apps/fishterm.md b/apps/fishterm.md deleted file mode 100644 index 258f91ed2..000000000 --- a/apps/fishterm.md +++ /dev/null @@ -1,10 +0,0 @@ -# FISHTERM - - A open-soruce Terminal remote access. - - Secure boilerplate for Electron app based on Vite. TypeScript + Vue/React/Angular/Svelte/Vanilla - - SITE: https://github.com/kuronekouwu/FishTerm - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/fixit b/apps/fixit new file mode 100644 index 000000000..42782b565 --- /dev/null +++ b/apps/fixit @@ -0,0 +1,3 @@ +# fixit +A utility to fix mistakes in your commands. +# SITES: https://github.com/eugene-babichenko/fixit \ No newline at end of file diff --git a/apps/fixit.md b/apps/fixit.md deleted file mode 100644 index a3e784410..000000000 --- a/apps/fixit.md +++ /dev/null @@ -1,8 +0,0 @@ -# FIXIT - - A utility to fix mistakes in your commands. - - SITE: https://github.com/eugene-babichenko/fixit - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/fjordlauncher b/apps/fjordlauncher new file mode 100644 index 000000000..e65fd9890 --- /dev/null +++ b/apps/fjordlauncher @@ -0,0 +1,3 @@ +# fjordlauncher +Prism Launcher fork with support for alternative auth servers. +# SITES: https://github.com/unmojang/FjordLauncher \ No newline at end of file diff --git a/apps/fjordlauncher.md b/apps/fjordlauncher.md deleted file mode 100644 index cb5dc1b3b..000000000 --- a/apps/fjordlauncher.md +++ /dev/null @@ -1,8 +0,0 @@ -# FJORDLAUNCHER - - Prism Launcher fork with support for alternative auth servers. - - SITE: https://github.com/unmojang/FjordLauncher - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/flacon b/apps/flacon new file mode 100644 index 000000000..76c07d7e2 --- /dev/null +++ b/apps/flacon @@ -0,0 +1,3 @@ +# flacon +Audio File Encoder. Extracts audio tracks from an audio CD image to separate tracks. +# SITES: https://github.com/flacon/flacon \ No newline at end of file diff --git a/apps/flacon.md b/apps/flacon.md deleted file mode 100644 index 683b96e78..000000000 --- a/apps/flacon.md +++ /dev/null @@ -1,8 +0,0 @@ -# FLACON - - Audio File Encoder. Extracts audio tracks from an audio CD image to separate tracks. - - SITE: https://github.com/flacon/flacon - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/fladder b/apps/fladder new file mode 100644 index 000000000..283733dac --- /dev/null +++ b/apps/fladder @@ -0,0 +1,3 @@ +# fladder +Fladder - A Simple Jellyfin frontend built on top of Flutter. +# SITES: https://github.com/DonutWare/Fladder \ No newline at end of file diff --git a/apps/fladder.md b/apps/fladder.md deleted file mode 100644 index c8e8776c5..000000000 --- a/apps/fladder.md +++ /dev/null @@ -1,8 +0,0 @@ -# FLADDER - - Fladder - A Simple Jellyfin frontend built on top of Flutter. - - SITE: https://github.com/DonutWare/Fladder - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/flameshot b/apps/flameshot new file mode 100644 index 000000000..f8f4b0e25 --- /dev/null +++ b/apps/flameshot @@ -0,0 +1,4 @@ +# flameshot +Flameshot is a free and open-source, cross-platform tool to take screenshots with many built-in features to save you time. +# SCREENSHOTS: https://flameshot.org/img/flameshot-hero.jpg +# SITES: https://flameshot.org \ No newline at end of file diff --git a/apps/flameshot.md b/apps/flameshot.md deleted file mode 100644 index a79dd6b53..000000000 --- a/apps/flameshot.md +++ /dev/null @@ -1,10 +0,0 @@ -# FLAMESHOT - - Flameshot is a free and open-source, cross-platform tool to take screenshots with many built-in features to save you time. - - ![Screenshot](https://flameshot.org/img/flameshot-hero.jpg) - - SITE: https://flameshot.org - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/flare b/apps/flare new file mode 100644 index 000000000..aa5d676b9 --- /dev/null +++ b/apps/flare @@ -0,0 +1,10 @@ +# flare +Flare is a single-player 2D action RPG with fast-paced action and a dark fantasy style. + + It is built on the FLARE engine (Free/Libre Action Roleplaying Engine). + + Flare uses simple file formats (INI style config files) for most of the game data, allowing anyone to easily modify game contents. Open formats are preferred (png, ogg). Maps are edited using Tiled. + + For best results, please use the latest version of the FLARE engine with the game data in this repository. Using an older version of the engine could result in some game elements not working correctly. +# SCREENSHOTS: https://raw.githubusercontent.com/flareteam/flare-game/master/distribution/screenshot1.jpg +# SITES: https://github.com/flareteam/flare-game \ No newline at end of file diff --git a/apps/flare.md b/apps/flare.md deleted file mode 100644 index 226c4a73b..000000000 --- a/apps/flare.md +++ /dev/null @@ -1,16 +0,0 @@ -# FLARE - - Flare is a single-player 2D action RPG with fast-paced action and a dark fantasy style. - - It is built on the FLARE engine (Free/Libre Action Roleplaying Engine). - - Flare uses simple file formats (INI style config files) for most of the game data, allowing anyone to easily modify game contents. Open formats are preferred (png, ogg). Maps are edited using Tiled. - - For best results, please use the latest version of the FLARE engine with the game data in this repository. Using an older version of the engine could result in some game elements not working correctly. - - ![](https://raw.githubusercontent.com/flareteam/flare-game/master/distribution/screenshot1.jpg) - - SITE: https://github.com/flareteam/flare-game - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/flashpoint b/apps/flashpoint new file mode 100644 index 000000000..cb3d1f0e0 --- /dev/null +++ b/apps/flashpoint @@ -0,0 +1,3 @@ +# flashpoint +Flashpoint Archive is a community effort to preserve games and animations from the web. +# SITES: https://flashpointarchive.org \ No newline at end of file diff --git a/apps/flashpoint.md b/apps/flashpoint.md deleted file mode 100644 index 2a6a64c07..000000000 --- a/apps/flashpoint.md +++ /dev/null @@ -1,8 +0,0 @@ -# FLASHPOINT - - Flashpoint Archive is a community effort to preserve games and animations from the web. - - SITE: https://flashpointarchive.org - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/flashrom b/apps/flashrom new file mode 100644 index 000000000..2492bf930 --- /dev/null +++ b/apps/flashrom @@ -0,0 +1,4 @@ +# flashrom + Unofficial AppImage of ffmpeg. +# SITES: https://github.com/pkgforge-dev/flashrom-appimage +# SOURCES: https://github.com/pkgforge-dev/flashrom-appimage \ No newline at end of file diff --git a/apps/flashrom.md b/apps/flashrom.md deleted file mode 100644 index d4073f516..000000000 --- a/apps/flashrom.md +++ /dev/null @@ -1,8 +0,0 @@ -# FLASHROM - - Unofficial AppImage of ffmpeg. - - SITE: https://github.com/pkgforge-dev/flashrom-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/flawesome b/apps/flawesome new file mode 100644 index 000000000..4d3aa13cc --- /dev/null +++ b/apps/flawesome @@ -0,0 +1,3 @@ +# flawesome +Flawesome is a modern productivity tool that will help you organise your day-today work and thoughts. +# SITES: https://github.com/ashishBharadwaj/flawesome \ No newline at end of file diff --git a/apps/flawesome.md b/apps/flawesome.md deleted file mode 100644 index fc54cae9a..000000000 --- a/apps/flawesome.md +++ /dev/null @@ -1,8 +0,0 @@ -# FLAWESOME - - Flawesome is a modern productivity tool that will help you organise your day-today work and thoughts. - - SITE: https://github.com/ashishBharadwaj/flawesome - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/flb b/apps/flb new file mode 100644 index 000000000..a7f13c04e --- /dev/null +++ b/apps/flb @@ -0,0 +1,3 @@ +# flb +A beautiful Feature Rich Music Player and Downloader,cross platform. +# SITES: https://flbmusic.xyz/ \ No newline at end of file diff --git a/apps/flb.md b/apps/flb.md deleted file mode 100644 index 859010d97..000000000 --- a/apps/flb.md +++ /dev/null @@ -1,8 +0,0 @@ -# FLB - - A beautiful Feature Rich Music Player and Downloader,cross platform. - - SITE: https://flbmusic.xyz/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/flclash b/apps/flclash new file mode 100644 index 000000000..b8c12502f --- /dev/null +++ b/apps/flclash @@ -0,0 +1,3 @@ +# flclash +A multi-platform proxy client based on ClashMeta,simple and easy to use, open-source and ad-free. +# SITES: https://github.com/chen08209/FlClash \ No newline at end of file diff --git a/apps/flclash.md b/apps/flclash.md deleted file mode 100644 index bb4e92e18..000000000 --- a/apps/flclash.md +++ /dev/null @@ -1,8 +0,0 @@ -# FLCLASH - - A multi-platform proxy client based on ClashMeta,simple and easy to use, open-source and ad-free. - - SITE: https://github.com/chen08209/FlClash - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/flightcore b/apps/flightcore new file mode 100644 index 000000000..2f1560d6a --- /dev/null +++ b/apps/flightcore @@ -0,0 +1,3 @@ +# flightcore +A Northstar installer, updater, and mod-manager. +# SITES: https://github.com/R2NorthstarTools/FlightCore \ No newline at end of file diff --git a/apps/flightcore.md b/apps/flightcore.md deleted file mode 100644 index 15312a03c..000000000 --- a/apps/flightcore.md +++ /dev/null @@ -1,8 +0,0 @@ -# FLIGHTCORE - - A Northstar installer, updater, and mod-manager. - - SITE: https://github.com/R2NorthstarTools/FlightCore - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/flightgear b/apps/flightgear new file mode 100644 index 000000000..f1fd5b468 --- /dev/null +++ b/apps/flightgear @@ -0,0 +1,3 @@ +# flightgear +FlightGear Flight Simulator (often shortened to FlightGear or FGFS) is a free, open source multi-platform flight simulator developed by the FlightGear project since 1997. +# SITES: https://www.flightgear.org \ No newline at end of file diff --git a/apps/flightgear-airports b/apps/flightgear-airports new file mode 100644 index 000000000..6c33cab0f --- /dev/null +++ b/apps/flightgear-airports @@ -0,0 +1,3 @@ +# flightgear-airports +An software to design Flightgear groundnets +# SITES: https://github.com/Portree-Kid/flightgear-airports \ No newline at end of file diff --git a/apps/flightgear-airports.md b/apps/flightgear-airports.md deleted file mode 100644 index 864bf3e69..000000000 --- a/apps/flightgear-airports.md +++ /dev/null @@ -1,8 +0,0 @@ -# FLIGHTGEAR-AIRPORTS - - An software to design Flightgear groundnets - - SITE: https://github.com/Portree-Kid/flightgear-airports - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/flightgear.md b/apps/flightgear.md deleted file mode 100644 index 5c3091308..000000000 --- a/apps/flightgear.md +++ /dev/null @@ -1,8 +0,0 @@ -# FLIGHTGEAR - - FlightGear Flight Simulator (often shortened to FlightGear or FGFS) is a free, open source multi-platform flight simulator developed by the FlightGear project since 1997. - - SITE: https://www.flightgear.org - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/flippy-qualitative-testbench b/apps/flippy-qualitative-testbench new file mode 100644 index 000000000..0933bc8af --- /dev/null +++ b/apps/flippy-qualitative-testbench @@ -0,0 +1,3 @@ +# flippy-qualitative-testbench +Score-follower qualitative testbench. Displays the timestamp output by a score-follower as a cursor on the score. +# SITES: https://github.com/flippy-fyp/flippy-qualitative-testbench \ No newline at end of file diff --git a/apps/flippy-qualitative-testbench.md b/apps/flippy-qualitative-testbench.md deleted file mode 100644 index 3466e67ff..000000000 --- a/apps/flippy-qualitative-testbench.md +++ /dev/null @@ -1,8 +0,0 @@ -# FLIPPY-QUALITATIVE-TESTBENCH - - Score-follower qualitative testbench. Displays the timestamp output by a score-follower as a cursor on the score. - - SITE: https://github.com/flippy-fyp/flippy-qualitative-testbench - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/floorp b/apps/floorp new file mode 100644 index 000000000..fecb61ed3 --- /dev/null +++ b/apps/floorp @@ -0,0 +1,6 @@ +# floorp +The source code of version 10 or later of Floorp Browser, the most Advanced and Fastest Firefox derivative 🦊 + + This is the portable official version converted to an AppImage by our team, "Portable Linux Apps" , no additional changes have been made. +# SITES: https://github.com/Floorp-Projects/Floorp +# SOURCES: https://github.com/Portable-Linux-Apps/floorp-AppImage \ No newline at end of file diff --git a/apps/floorp.md b/apps/floorp.md deleted file mode 100644 index 25d1185ed..000000000 --- a/apps/floorp.md +++ /dev/null @@ -1,12 +0,0 @@ -# FLOORP - - The source code of version 10 or later of Floorp Browser, the most Advanced and Fastest Firefox derivative 🦊 - - This is the portable official version converted to an AppImage by our team, "Portable Linux Apps" , no additional changes have been made. - - SITE: https://github.com/Floorp-Projects/Floorp - - APPIMAGE: https://github.com/Portable-Linux-Apps/floorp-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/flow b/apps/flow new file mode 100644 index 000000000..39071493f --- /dev/null +++ b/apps/flow @@ -0,0 +1,3 @@ +# flow +Flow Control: a programmer's text editor. +# SITES: https://github.com/neurocyte/flow \ No newline at end of file diff --git a/apps/flow-browser b/apps/flow-browser new file mode 100644 index 000000000..981cc2390 --- /dev/null +++ b/apps/flow-browser @@ -0,0 +1,3 @@ +# flow-browser +A modern, privacy-focused browser with a minimalistic design. +# SITES: https://github.com/MultiboxLabs/flow-browser \ No newline at end of file diff --git a/apps/flow-browser.md b/apps/flow-browser.md deleted file mode 100644 index b79e5d9c1..000000000 --- a/apps/flow-browser.md +++ /dev/null @@ -1,8 +0,0 @@ -# FLOW-BROWSER - - A modern, privacy-focused browser with a minimalistic design. - - SITE: https://github.com/MultiboxLabs/flow-browser - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/flow.md b/apps/flow.md deleted file mode 100644 index c90871cd2..000000000 --- a/apps/flow.md +++ /dev/null @@ -1,8 +0,0 @@ -# FLOW - - Flow Control: a programmer's text editor. - - SITE: https://github.com/neurocyte/flow - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/flowinity b/apps/flowinity new file mode 100644 index 000000000..818b23987 --- /dev/null +++ b/apps/flowinity @@ -0,0 +1,3 @@ +# flowinity +The versatile all-in-one online platform, for everyone. +# SITES: https://www.flowinity.com \ No newline at end of file diff --git a/apps/flowinity.md b/apps/flowinity.md deleted file mode 100644 index 07187005d..000000000 --- a/apps/flowinity.md +++ /dev/null @@ -1,8 +0,0 @@ -# FLOWINITY - - The versatile all-in-one online platform, for everyone. - - SITE: https://www.flowinity.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/fluent-reader b/apps/fluent-reader new file mode 100644 index 000000000..632131811 --- /dev/null +++ b/apps/fluent-reader @@ -0,0 +1,3 @@ +# fluent-reader +Modern desktop RSS reader. +# SITES: https://github.com/yang991178/fluent-reader \ No newline at end of file diff --git a/apps/fluent-reader.md b/apps/fluent-reader.md deleted file mode 100644 index a053925b3..000000000 --- a/apps/fluent-reader.md +++ /dev/null @@ -1,8 +0,0 @@ -# FLUENT-READER - - Modern desktop RSS reader. - - SITE: https://github.com/yang991178/fluent-reader - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/fluffychat b/apps/fluffychat new file mode 100644 index 000000000..d0e19e301 --- /dev/null +++ b/apps/fluffychat @@ -0,0 +1,3 @@ +# fluffychat +The cutest instant messenger in the matrix. +# SITES: https://github.com/krille-chan/fluffychat \ No newline at end of file diff --git a/apps/fluffychat.md b/apps/fluffychat.md deleted file mode 100644 index 043b77cef..000000000 --- a/apps/fluffychat.md +++ /dev/null @@ -1,8 +0,0 @@ -# FLUFFYCHAT - - The cutest instant messenger in the matrix. - - SITE: https://github.com/krille-chan/fluffychat - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/fluxer b/apps/fluxer new file mode 100644 index 000000000..e21a09aa9 --- /dev/null +++ b/apps/fluxer @@ -0,0 +1,3 @@ +# fluxer +A free and open source instant messaging and VoIP platform built for friends, groups, and communities. +# SITES: https://fluxer.app \ No newline at end of file diff --git a/apps/fluxer.md b/apps/fluxer.md deleted file mode 100644 index 2ebea6763..000000000 --- a/apps/fluxer.md +++ /dev/null @@ -1,8 +0,0 @@ -# FLUXER - - A free and open source instant messaging and VoIP platform built for friends, groups, and communities. - - SITE: https://fluxer.app - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/flycast b/apps/flycast new file mode 100644 index 000000000..b4c206960 --- /dev/null +++ b/apps/flycast @@ -0,0 +1,3 @@ +# flycast +A multiplatform Sega Dreamcast, Naomi, Naomi 2 andAtomiswave emulator. +# SITES: https://github.com/flyinghead/flycast \ No newline at end of file diff --git a/apps/flycast-dojo b/apps/flycast-dojo new file mode 100644 index 000000000..86e17319c --- /dev/null +++ b/apps/flycast-dojo @@ -0,0 +1,3 @@ +# flycast-dojo +A fork of Flycast, a multiplatform Sega Dreamcast, Naomi and Atomiswave emulator. Intended for netplay and quality of life improvements for training & online tournament play +# SITES: https://github.com/blueminder/flycast-dojo \ No newline at end of file diff --git a/apps/flycast-dojo.md b/apps/flycast-dojo.md deleted file mode 100644 index 194eefbb6..000000000 --- a/apps/flycast-dojo.md +++ /dev/null @@ -1,8 +0,0 @@ -# FLYCAST-DOJO - - A fork of Flycast, a multiplatform Sega Dreamcast, Naomi and Atomiswave emulator. Intended for netplay and quality of life improvements for training & online tournament play - - SITE: https://github.com/blueminder/flycast-dojo - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/flycast-enhanced b/apps/flycast-enhanced new file mode 100644 index 000000000..fee4cfb26 --- /dev/null +++ b/apps/flycast-enhanced @@ -0,0 +1,3 @@ +# flycast-enhanced +Unofficial, A Sega Dreamcast, Naomi, Naomi 2 and Atomiswave emulator. +# SITES: https://github.com/pkgforge-dev/Flycast-AppImage-Enhanced \ No newline at end of file diff --git a/apps/flycast-enhanced.md b/apps/flycast-enhanced.md deleted file mode 100644 index 4a8399985..000000000 --- a/apps/flycast-enhanced.md +++ /dev/null @@ -1,8 +0,0 @@ -# FLYCAST-ENHANCED - - Unofficial, A Sega Dreamcast, Naomi, Naomi 2 and Atomiswave emulator. - - SITE: https://github.com/pkgforge-dev/Flycast-AppImage-Enhanced - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/flycast.md b/apps/flycast.md deleted file mode 100644 index 7e9e60aff..000000000 --- a/apps/flycast.md +++ /dev/null @@ -1,8 +0,0 @@ -# FLYCAST - - A multiplatform Sega Dreamcast, Naomi, Naomi 2 andAtomiswave emulator. - - SITE: https://github.com/flyinghead/flycast - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/flyctl b/apps/flyctl new file mode 100644 index 000000000..711ebe263 --- /dev/null +++ b/apps/flyctl @@ -0,0 +1,3 @@ +# flyctl +Command line tools for fly.io services +# SITES: https://github.com/superfly/flyctl \ No newline at end of file diff --git a/apps/flyctl.md b/apps/flyctl.md deleted file mode 100644 index bb30d43f0..000000000 --- a/apps/flyctl.md +++ /dev/null @@ -1,9 +0,0 @@ -# FLYCTL - - Command line tools for fly.io services - - SITE: https://github.com/superfly/flyctl - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | - diff --git a/apps/flyingcarpet b/apps/flyingcarpet new file mode 100644 index 000000000..d7524544d --- /dev/null +++ b/apps/flyingcarpet @@ -0,0 +1,3 @@ +# flyingcarpet +Cross-platform AirDrop. File transfer between Android, iOS, Linux, macOS, and Windows over ad hoc WiFi. No network infrastructure required, just two devices with WiFi chips in close range. +# SITES: https://github.com/spieglt/flyingcarpet \ No newline at end of file diff --git a/apps/flyingcarpet.md b/apps/flyingcarpet.md deleted file mode 100644 index ede2cbedf..000000000 --- a/apps/flyingcarpet.md +++ /dev/null @@ -1,8 +0,0 @@ -# FLYINGCARPET - - Cross-platform AirDrop. File transfer between Android, iOS, Linux, macOS, and Windows over ad hoc WiFi. No network infrastructure required, just two devices with WiFi chips in close range. - - SITE: https://github.com/spieglt/flyingcarpet - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/fman b/apps/fman new file mode 100644 index 000000000..a3d30f463 --- /dev/null +++ b/apps/fman @@ -0,0 +1,3 @@ +# fman +TUI File Manager +# SITES: https://github.com/nore-dev/fman \ No newline at end of file diff --git a/apps/fman.md b/apps/fman.md deleted file mode 100644 index a5bfd1c4a..000000000 --- a/apps/fman.md +++ /dev/null @@ -1,8 +0,0 @@ -# FMAN - - TUI File Manager - - SITE: https://github.com/nore-dev/fman - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/fmradio b/apps/fmradio new file mode 100644 index 000000000..d632622ea --- /dev/null +++ b/apps/fmradio @@ -0,0 +1,3 @@ +# fmradio +Cross platform FM Radio App for RTL2832U dongles +# SITES: https://github.com/dmooney65/fmradio \ No newline at end of file diff --git a/apps/fmradio.md b/apps/fmradio.md deleted file mode 100644 index 4200438f3..000000000 --- a/apps/fmradio.md +++ /dev/null @@ -1,8 +0,0 @@ -# FMRADIO - - Cross platform FM Radio App for RTL2832U dongles - - SITE: https://github.com/dmooney65/fmradio - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/fms-file-explorer b/apps/fms-file-explorer new file mode 100644 index 000000000..4bd3936a1 --- /dev/null +++ b/apps/fms-file-explorer @@ -0,0 +1,3 @@ +# fms-file-explorer +An application designed to simplify access and exploration of data produced. +# SITES: https://github.com/AllenInstitute/aics-fms-file-explorer-app \ No newline at end of file diff --git a/apps/fms-file-explorer.md b/apps/fms-file-explorer.md deleted file mode 100644 index 050fba846..000000000 --- a/apps/fms-file-explorer.md +++ /dev/null @@ -1,8 +0,0 @@ -# FMS-FILE-EXPLORER - - An application designed to simplify access and exploration of data produced. - - SITE: https://github.com/AllenInstitute/aics-fms-file-explorer-app - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/fmt b/apps/fmt new file mode 100644 index 000000000..5bfb8e759 --- /dev/null +++ b/apps/fmt @@ -0,0 +1,4 @@ +# fmt + Text formatter. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/fmt.md b/apps/fmt.md deleted file mode 100644 index 4c35840de..000000000 --- a/apps/fmt.md +++ /dev/null @@ -1,8 +0,0 @@ -# FMT - - Text formatter. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/focalizzare b/apps/focalizzare new file mode 100644 index 000000000..4ea52785a --- /dev/null +++ b/apps/focalizzare @@ -0,0 +1,3 @@ +# focalizzare +A Timer for Pomodoro Technique. +# SITES: https://github.com/VitoVan/focalizzare \ No newline at end of file diff --git a/apps/focalizzare.md b/apps/focalizzare.md deleted file mode 100644 index e87eaff76..000000000 --- a/apps/focalizzare.md +++ /dev/null @@ -1,8 +0,0 @@ -# FOCALIZZARE - - A Timer for Pomodoro Technique. - - SITE: https://github.com/VitoVan/focalizzare - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/focus b/apps/focus new file mode 100644 index 000000000..dca256006 --- /dev/null +++ b/apps/focus @@ -0,0 +1,3 @@ +# focus +A fully featured productivity timer for the command line, based on the Pomodoro Technique. Supports Linux, Windows, and macOS. +# SITES: https://github.com/ayoisaiah/focus \ No newline at end of file diff --git a/apps/focus.md b/apps/focus.md deleted file mode 100644 index dc7c002b8..000000000 --- a/apps/focus.md +++ /dev/null @@ -1,8 +0,0 @@ -# FOCUS - - A fully featured productivity timer for the command line, based on the Pomodoro Technique. Supports Linux, Windows, and macOS. - - SITE: https://github.com/ayoisaiah/focus - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/focusatwill b/apps/focusatwill new file mode 100644 index 000000000..4c6ae2f4d --- /dev/null +++ b/apps/focusatwill @@ -0,0 +1,3 @@ +# focusatwill +Focus@Will combines neuroscience and music to boost productivity. +# SITES: https://focusatwill.com/ \ No newline at end of file diff --git a/apps/focusatwill.md b/apps/focusatwill.md deleted file mode 100644 index 7ce543bab..000000000 --- a/apps/focusatwill.md +++ /dev/null @@ -1,8 +0,0 @@ -# FOCUSATWILL - - Focus@Will combines neuroscience and music to boost productivity. - - SITE: https://focusatwill.com/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/focuswriter b/apps/focuswriter new file mode 100644 index 000000000..8fb1f2a34 --- /dev/null +++ b/apps/focuswriter @@ -0,0 +1,4 @@ +# focuswriter +Simple fullscreen word processor. +# SITES: https://gottcode.org/focuswriter +# SOURCES: https://github.com/probonopd/focuswriter \ No newline at end of file diff --git a/apps/focuswriter.md b/apps/focuswriter.md deleted file mode 100644 index a4296cd91..000000000 --- a/apps/focuswriter.md +++ /dev/null @@ -1,10 +0,0 @@ -# FOCUSWRITER - - Simple fullscreen word processor. - - SITE: https://gottcode.org/focuswriter - - SOURCE: https://github.com/probonopd/focuswriter - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/fold b/apps/fold new file mode 100644 index 000000000..1bcebfc66 --- /dev/null +++ b/apps/fold @@ -0,0 +1,3 @@ +# fold +Wrap each input line to fit in specified width. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/fold.md b/apps/fold.md deleted file mode 100644 index 7adb9d2ed..000000000 --- a/apps/fold.md +++ /dev/null @@ -1,8 +0,0 @@ -# FOLD - - Wrap each input line to fit in specified width. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/folo b/apps/folo new file mode 100644 index 000000000..4294da215 --- /dev/null +++ b/apps/folo @@ -0,0 +1,3 @@ +# folo +Folo is the AI Reader. +# SITES: https://github.com/RSSNext/Folo \ No newline at end of file diff --git a/apps/folo.md b/apps/folo.md deleted file mode 100644 index 3a9e94e41..000000000 --- a/apps/folo.md +++ /dev/null @@ -1,8 +0,0 @@ -# FOLO - - Folo is the AI Reader. - - SITE: https://github.com/RSSNext/Folo - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/fontbase b/apps/fontbase new file mode 100644 index 000000000..66270a084 --- /dev/null +++ b/apps/fontbase @@ -0,0 +1,3 @@ +# fontbase +A lightning fast, beautiful and free font manager for designers. +# SITES: http://fontba.se \ No newline at end of file diff --git a/apps/fontbase.md b/apps/fontbase.md deleted file mode 100644 index ecfbdccae..000000000 --- a/apps/fontbase.md +++ /dev/null @@ -1,8 +0,0 @@ -# FONTBASE - - A lightning fast, beautiful and free font manager for designers. - - SITE: http://fontba.se - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/fontforge b/apps/fontforge new file mode 100644 index 000000000..3f43cf6da --- /dev/null +++ b/apps/fontforge @@ -0,0 +1,3 @@ +# fontforge +Free (libre) font editor for Windows, Mac OS X and GNU+Linux. +# SITES: https://github.com/fontforge/fontforge \ No newline at end of file diff --git a/apps/fontforge.md b/apps/fontforge.md deleted file mode 100644 index c9403cfa4..000000000 --- a/apps/fontforge.md +++ /dev/null @@ -1,8 +0,0 @@ -# FONTFORGE - - Free (libre) font editor for Windows, Mac OS X and GNU+Linux. - - SITE: https://github.com/fontforge/fontforge - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/fontlet b/apps/fontlet new file mode 100644 index 000000000..5208057a1 --- /dev/null +++ b/apps/fontlet @@ -0,0 +1,3 @@ +# fontlet +A package manager for fonts bringing latest and greatest libre fonts. +# SITES: https://github.com/fontlet/fontlet-explorer \ No newline at end of file diff --git a/apps/fontlet.md b/apps/fontlet.md deleted file mode 100644 index cd9ac6de6..000000000 --- a/apps/fontlet.md +++ /dev/null @@ -1,8 +0,0 @@ -# FONTLET - - A package manager for fonts bringing latest and greatest libre fonts. - - SITE: https://github.com/fontlet/fontlet-explorer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/foobar2000 b/apps/foobar2000 new file mode 100644 index 000000000..647855ec9 --- /dev/null +++ b/apps/foobar2000 @@ -0,0 +1,5 @@ +# foobar2000 +foobar2000 is an advanced freeware audio player for the Windows platform. + + This version has its own builtin WINE version to run on GNU/Linux. +# SITES: https://github.com/mmtrt/foobar2000_AppImage \ No newline at end of file diff --git a/apps/foobar2000.md b/apps/foobar2000.md deleted file mode 100644 index a25a14537..000000000 --- a/apps/foobar2000.md +++ /dev/null @@ -1,10 +0,0 @@ -# FOOBAR2000 - - foobar2000 is an advanced freeware audio player for the Windows platform. - - This version has its own builtin WINE version to run on GNU/Linux. - - SITE: https://github.com/mmtrt/foobar2000_AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/foobillardpp b/apps/foobillardpp new file mode 100644 index 000000000..9490eb3bf --- /dev/null +++ b/apps/foobillardpp @@ -0,0 +1,3 @@ +# foobillardpp +Unofficial, an OpenGL Billard Game based on foobillard 3.0a with patches and new features. +# SITES: https://github.com/pkgforge-dev/Foobillardpp-AppImage \ No newline at end of file diff --git a/apps/foobillardpp.md b/apps/foobillardpp.md deleted file mode 100644 index 215c9f4d0..000000000 --- a/apps/foobillardpp.md +++ /dev/null @@ -1,8 +0,0 @@ -# FOOBILLARDPP - - Unofficial, an OpenGL Billard Game based on foobillard 3.0a with patches and new features. - - SITE: https://github.com/pkgforge-dev/Foobillardpp-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/foot b/apps/foot new file mode 100644 index 000000000..c140fad93 --- /dev/null +++ b/apps/foot @@ -0,0 +1,3 @@ +# foot +Unofficial. Fast, lightweight, and minimalistic Wayland terminal emulator. +# SITES: https://github.com/pkgforge-dev/foot-AppImage \ No newline at end of file diff --git a/apps/foot.md b/apps/foot.md deleted file mode 100644 index 23126587e..000000000 --- a/apps/foot.md +++ /dev/null @@ -1,8 +0,0 @@ -# FOOT - - Unofficial. Fast, lightweight, and minimalistic Wayland terminal emulator. - - SITE: https://github.com/pkgforge-dev/foot-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/fooyin b/apps/fooyin new file mode 100644 index 000000000..52424781b --- /dev/null +++ b/apps/fooyin @@ -0,0 +1,3 @@ +# fooyin +Unofficial, a customisable music player. +# SITES: https://github.com/pkgforge-dev/fooyin-AppImage \ No newline at end of file diff --git a/apps/fooyin.md b/apps/fooyin.md deleted file mode 100644 index 31185e532..000000000 --- a/apps/fooyin.md +++ /dev/null @@ -1,8 +0,0 @@ -# FOOYIN - - Unofficial, a customisable music player. - - SITE: https://github.com/pkgforge-dev/fooyin-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/forkgram b/apps/forkgram new file mode 100644 index 000000000..bd891d184 --- /dev/null +++ b/apps/forkgram @@ -0,0 +1,3 @@ +# forkgram +Fork of Telegram Desktop messaging app. +# SITES: https://github.com/forkgram/tdesktop \ No newline at end of file diff --git a/apps/forkgram.md b/apps/forkgram.md deleted file mode 100644 index 6e302e27d..000000000 --- a/apps/forkgram.md +++ /dev/null @@ -1,8 +0,0 @@ -# FORKGRAM - - Fork of Telegram Desktop messaging app. - - SITE: https://github.com/forkgram/tdesktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/four b/apps/four new file mode 100644 index 000000000..2fdf386c7 --- /dev/null +++ b/apps/four @@ -0,0 +1,3 @@ +# four +Electron App to access All4/Channel4 (UK) +# SITES: https://github.com/FYDesktop/FOUR \ No newline at end of file diff --git a/apps/four.md b/apps/four.md deleted file mode 100644 index b918152f8..000000000 --- a/apps/four.md +++ /dev/null @@ -1,8 +0,0 @@ -# FOUR - - Electron App to access All4/Channel4 (UK) - - SITE: https://github.com/FYDesktop/FOUR - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/foxfolio b/apps/foxfolio new file mode 100644 index 000000000..e75e7f9f1 --- /dev/null +++ b/apps/foxfolio @@ -0,0 +1,3 @@ +# foxfolio +Cryptocurrency portfolio management application which automatically retrieves +# SITES: https://github.com/foxfolio/foxfolio-desktop \ No newline at end of file diff --git a/apps/foxfolio.md b/apps/foxfolio.md deleted file mode 100644 index 84d668649..000000000 --- a/apps/foxfolio.md +++ /dev/null @@ -1,8 +0,0 @@ -# FOXFOLIO - - Cryptocurrency portfolio management application which automatically retrieves - - SITE: https://github.com/foxfolio/foxfolio-desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/fpm b/apps/fpm new file mode 100644 index 000000000..5aa23796a --- /dev/null +++ b/apps/fpm @@ -0,0 +1,3 @@ +# fpm +Faster Project Plus on Linux. +# SITES: https://github.com/jlambert360/FPM-AppImage \ No newline at end of file diff --git a/apps/fpm.md b/apps/fpm.md deleted file mode 100644 index 7ca27b0b2..000000000 --- a/apps/fpm.md +++ /dev/null @@ -1,8 +0,0 @@ -# FPM - - Faster Project Plus on Linux. - - SITE: https://github.com/jlambert360/FPM-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/fractale b/apps/fractale new file mode 100644 index 000000000..18d477b21 --- /dev/null +++ b/apps/fractale @@ -0,0 +1,3 @@ +# fractale +2D modeling of the Von Koch fractal with different variants +# SITES: https://github.com/PJK136/Fractale \ No newline at end of file diff --git a/apps/fractale.md b/apps/fractale.md deleted file mode 100644 index 0a033d120..000000000 --- a/apps/fractale.md +++ /dev/null @@ -1,8 +0,0 @@ -# FRACTALE - - 2D modeling of the Von Koch fractal with different variants - - SITE: https://github.com/PJK136/Fractale - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/fraidycat b/apps/fraidycat new file mode 100644 index 000000000..facfec3ff --- /dev/null +++ b/apps/fraidycat @@ -0,0 +1,3 @@ +# fraidycat +Follow blogs, wikis, YouTube, Twitter, Reddit, Instagram and the like... +# SITES: https://github.com/kickscondor/fraidycat \ No newline at end of file diff --git a/apps/fraidycat.md b/apps/fraidycat.md deleted file mode 100644 index 2b165b983..000000000 --- a/apps/fraidycat.md +++ /dev/null @@ -1,8 +0,0 @@ -# FRAIDYCAT - - Follow blogs, wikis, YouTube, Twitter, Reddit, Instagram and the like... - - SITE: https://github.com/kickscondor/fraidycat - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/fraktal b/apps/fraktal new file mode 100644 index 000000000..b644796e6 --- /dev/null +++ b/apps/fraktal @@ -0,0 +1,3 @@ +# fraktal +Podcast Manager in Electron +# SITES: https://github.com/Fraktal-JS/fraktal \ No newline at end of file diff --git a/apps/fraktal.md b/apps/fraktal.md deleted file mode 100644 index 1b63ffac3..000000000 --- a/apps/fraktal.md +++ /dev/null @@ -1,8 +0,0 @@ -# FRAKTAL - - Podcast Manager in Electron - - SITE: https://github.com/Fraktal-JS/fraktal - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/frame b/apps/frame new file mode 100644 index 000000000..0bb926eb7 --- /dev/null +++ b/apps/frame @@ -0,0 +1,3 @@ +# frame +Fast FFmpeg GUI. +# SITES: https://github.com/66HEX/frame \ No newline at end of file diff --git a/apps/frame-eth-dev b/apps/frame-eth-dev new file mode 100644 index 000000000..7978c195f --- /dev/null +++ b/apps/frame-eth-dev @@ -0,0 +1,3 @@ +# frame-eth-dev +A privacy focused Ethereum wallet +# SITES: https://frame.sh/ \ No newline at end of file diff --git a/apps/frame-eth-dev.md b/apps/frame-eth-dev.md deleted file mode 100644 index b7bcea631..000000000 --- a/apps/frame-eth-dev.md +++ /dev/null @@ -1,8 +0,0 @@ -# FRAME-ETH-DEV - - A privacy focused Ethereum wallet - - SITE: https://frame.sh/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/frame.md b/apps/frame.md deleted file mode 100644 index 7466b1cbb..000000000 --- a/apps/frame.md +++ /dev/null @@ -1,14 +0,0 @@ -# FRAME - - Frame is a native media conversion utility built in Rust. It provides a - desktop interface for FFmpeg operations, with granular control over video, - audio, image, subtitle, and metadata settings. The application uses a GPUI-CE - front end and a reusable Rust conversion core for FFmpeg argument generation, - source probing, compatibility validation, task control, and progress parsing. - -![Screenshot](https://raw.githubusercontent.com/66HEX/frame/main/preview.png) - - SITE: https://www.framegui.app - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/francetv b/apps/francetv new file mode 100644 index 000000000..481fef03c --- /dev/null +++ b/apps/francetv @@ -0,0 +1,3 @@ +# francetv +The france.tv site in an application. +# SITES: https://github.com/Paullux/FranceTV \ No newline at end of file diff --git a/apps/francetv.md b/apps/francetv.md deleted file mode 100644 index c8b93558b..000000000 --- a/apps/francetv.md +++ /dev/null @@ -1,8 +0,0 @@ -# FRANCETV - - The france.tv site in an application. - - SITE: https://github.com/Paullux/FranceTV - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/francis b/apps/francis new file mode 100644 index 000000000..069b0b280 --- /dev/null +++ b/apps/francis @@ -0,0 +1,7 @@ +# francis +Francis uses the well-known pomodoro technique to help you get more productive. + + This tool is part of the KDE Utils Suite. +# SCREENSHOTS: https://cdn.kde.org/screenshots/francis/main.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-utils-appimage \ No newline at end of file diff --git a/apps/francis.md b/apps/francis.md deleted file mode 100644 index 67de64a78..000000000 --- a/apps/francis.md +++ /dev/null @@ -1,14 +0,0 @@ -# FRANCIS - - Francis uses the well-known pomodoro technique to help you get more productive. - - This tool is part of the KDE Utils Suite. - - ![Screenshot](https://cdn.kde.org/screenshots/francis/main.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-utils-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/franz b/apps/franz new file mode 100644 index 000000000..5ed3c6cb1 --- /dev/null +++ b/apps/franz @@ -0,0 +1,4 @@ +# franz +Franz is a messaging app for WhatsApp, Slack, Telegram, HipChat, Hangouts and many many more. +# SCREENSHOTS: https://meetfranz.com/static/images/franz-screenshot.png +# SITES: https://meetfranz.com \ No newline at end of file diff --git a/apps/franz.md b/apps/franz.md deleted file mode 100644 index 24ab9f0bb..000000000 --- a/apps/franz.md +++ /dev/null @@ -1,10 +0,0 @@ -# FRANZ - - Franz is a messaging app for WhatsApp, Slack, Telegram, HipChat, Hangouts and many many more. - - ![Screenshot](https://meetfranz.com/static/images/franz-screenshot.png) - - SITE: https://meetfranz.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/frappebooks b/apps/frappebooks new file mode 100644 index 000000000..5d7bd125f --- /dev/null +++ b/apps/frappebooks @@ -0,0 +1,3 @@ +# frappebooks +Free Desktop book-keeping software for small-businesses and freelancers. +# SITES: https://frappebooks.com/ \ No newline at end of file diff --git a/apps/frappebooks.md b/apps/frappebooks.md deleted file mode 100644 index bb9324b89..000000000 --- a/apps/frappebooks.md +++ /dev/null @@ -1,8 +0,0 @@ -# FRAPPEBOOKS - - Free Desktop book-keeping software for small-businesses and freelancers. - - SITE: https://frappebooks.com/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/freac b/apps/freac new file mode 100644 index 000000000..114b3dc7c --- /dev/null +++ b/apps/freac @@ -0,0 +1,3 @@ +# freac +fre:ac is a free audio converter and CD ripper with support for various popular formats and encoders. +# SITES: https://www.freac.org \ No newline at end of file diff --git a/apps/freac.md b/apps/freac.md deleted file mode 100644 index 36b824529..000000000 --- a/apps/freac.md +++ /dev/null @@ -1,8 +0,0 @@ -# FREAC - - fre:ac is a free audio converter and CD ripper with support for various popular formats and encoders. - - SITE: https://www.freac.org - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/freecad b/apps/freecad new file mode 100644 index 000000000..e2533e62b --- /dev/null +++ b/apps/freecad @@ -0,0 +1,5 @@ +# freecad +FreeCAD - Free and open source AutoCAD alternative. +# SCREENSHOTS: https://github.com/user-attachments/assets/e0a375d9-b5e6-475f-be17-91f2ee116d3e +# SITES: https://www.freecad.org +# SOURCES: https://github.com/FreeCAD/FreeCAD \ No newline at end of file diff --git a/apps/freecad-assembly3 b/apps/freecad-assembly3 new file mode 100644 index 000000000..6e6b78da1 --- /dev/null +++ b/apps/freecad-assembly3 @@ -0,0 +1,5 @@ +# freecad-assembly3 +Official source code of FreeCAD, a free and opensource multiplatform 3D parametric modeler. + + Assembly3 is an external workbench that is used to perform assembly of different bodies contained in a single file or in multiple documents. The workbench is based on several core function changes done for the version of FreeCAD 0.19 (e.g. App Link), so the Assembly3 Workbench can not be used with earlier versions. +# SITES: https://github.com/realthunder/FreeCAD \ No newline at end of file diff --git a/apps/freecad-assembly3.md b/apps/freecad-assembly3.md deleted file mode 100644 index dc6ce189e..000000000 --- a/apps/freecad-assembly3.md +++ /dev/null @@ -1,10 +0,0 @@ -# FREECAD-ASSEMBLY3 - - Official source code of FreeCAD, a free and opensource multiplatform 3D parametric modeler. - - Assembly3 is an external workbench that is used to perform assembly of different bodies contained in a single file or in multiple documents. The workbench is based on several core function changes done for the version of FreeCAD 0.19 (e.g. App Link), so the Assembly3 Workbench can not be used with earlier versions. - - SITE: https://github.com/realthunder/FreeCAD - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/freecad-weekly b/apps/freecad-weekly new file mode 100644 index 000000000..90d1992bc --- /dev/null +++ b/apps/freecad-weekly @@ -0,0 +1,3 @@ +# freecad-weekly +Official developmet build of FreeCAD, a free and opensource multiplatform 3D parametric modeler. +# SITES: https://github.com/FreeCAD/FreeCAD \ No newline at end of file diff --git a/apps/freecad-weekly.md b/apps/freecad-weekly.md deleted file mode 100644 index d9c326b7e..000000000 --- a/apps/freecad-weekly.md +++ /dev/null @@ -1,8 +0,0 @@ -# FREECAD-WEEKLY - - Official developmet build of FreeCAD, a free and opensource multiplatform 3D parametric modeler. - - SITE: https://github.com/FreeCAD/FreeCAD - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/freecad.md b/apps/freecad.md deleted file mode 100644 index 7e4920b8f..000000000 --- a/apps/freecad.md +++ /dev/null @@ -1,12 +0,0 @@ -# FREECAD - - FreeCAD - Free and open source AutoCAD alternative. - - ![Freecad_default](https://github.com/user-attachments/assets/e0a375d9-b5e6-475f-be17-91f2ee116d3e) - - SITE: https://www.freecad.org - - SOURCE: https://github.com/FreeCAD/FreeCAD - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/freefilesync b/apps/freefilesync new file mode 100644 index 000000000..5e41c52dc --- /dev/null +++ b/apps/freefilesync @@ -0,0 +1,3 @@ +# freefilesync +FreeFileSync is a folder comparison and synchronization software that creates and manages backup copies of all your important files. Instead of copying every file every time, FreeFileSync determines the differences between a source and a target folder and transfers only the minimum amount of data needed. FreeFileSync is Open Source software, available for Windows, macOS, and Linux. +# SITES: https://github.com/hkneptune/FreeFileSync \ No newline at end of file diff --git a/apps/freefilesync.md b/apps/freefilesync.md deleted file mode 100644 index 23d073bd5..000000000 --- a/apps/freefilesync.md +++ /dev/null @@ -1,8 +0,0 @@ -# FREEFILESYNC - - FreeFileSync is a folder comparison and synchronization software that creates and manages backup copies of all your important files. Instead of copying every file every time, FreeFileSync determines the differences between a source and a target folder and transfers only the minimum amount of data needed. FreeFileSync is Open Source software, available for Windows, macOS, and Linux. - - SITE: https://github.com/hkneptune/FreeFileSync - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/freeman b/apps/freeman new file mode 100644 index 000000000..efca94eec --- /dev/null +++ b/apps/freeman @@ -0,0 +1,3 @@ +# freeman +A free, extensible, cross-platform file manager for power users +# SITES: https://github.com/matthew-matvei/freeman \ No newline at end of file diff --git a/apps/freeman.md b/apps/freeman.md deleted file mode 100644 index 8f71c8805..000000000 --- a/apps/freeman.md +++ /dev/null @@ -1,8 +0,0 @@ -# FREEMAN - - A free, extensible, cross-platform file manager for power users - - SITE: https://github.com/matthew-matvei/freeman - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/freeshow b/apps/freeshow new file mode 100644 index 000000000..bc543bbc6 --- /dev/null +++ b/apps/freeshow @@ -0,0 +1,3 @@ +# freeshow +FreeShow is a free and open-source, user-friendly presenter software. +# SITES: https://github.com/ChurchApps/FreeShow \ No newline at end of file diff --git a/apps/freeshow.md b/apps/freeshow.md deleted file mode 100644 index 292d0ac20..000000000 --- a/apps/freeshow.md +++ /dev/null @@ -1,8 +0,0 @@ -# FREESHOW - - FreeShow is a free and open-source, user-friendly presenter software. - - SITE: https://github.com/ChurchApps/FreeShow - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/freetexturepacker b/apps/freetexturepacker new file mode 100644 index 000000000..3be90b4ae --- /dev/null +++ b/apps/freetexturepacker @@ -0,0 +1,3 @@ +# freetexturepacker +Free texture packer +# SITES: https://github.com/odrick/free-tex-packer \ No newline at end of file diff --git a/apps/freetexturepacker.md b/apps/freetexturepacker.md deleted file mode 100644 index 116a9cf78..000000000 --- a/apps/freetexturepacker.md +++ /dev/null @@ -1,8 +0,0 @@ -# FREETEXTUREPACKER - - Free texture packer - - SITE: https://github.com/odrick/free-tex-packer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/freetube b/apps/freetube new file mode 100644 index 000000000..314b34373 --- /dev/null +++ b/apps/freetube @@ -0,0 +1,5 @@ +# freetube +An Open Source YouTube app for privacy +# SCREENSHOTS: https://raw.githubusercontent.com/FreeTubeApp/FreeTubeApp.io/master/src/images/FreeTube2.png +# SITES: https://freetubeapp.io +# SOURCES: https://github.com/FreeTubeApp/FreeTube \ No newline at end of file diff --git a/apps/freetube-enhanced b/apps/freetube-enhanced new file mode 100644 index 000000000..263787aee --- /dev/null +++ b/apps/freetube-enhanced @@ -0,0 +1,3 @@ +# freetube-enhanced +Unofficial, An Open Source YouTube app for privacy. +# SITES: https://github.com/pkgforge-dev/FreeTube-Appimage-Enhanced \ No newline at end of file diff --git a/apps/freetube-enhanced.md b/apps/freetube-enhanced.md deleted file mode 100644 index 14ef65664..000000000 --- a/apps/freetube-enhanced.md +++ /dev/null @@ -1,8 +0,0 @@ -# FREETUBE-ENHANCED - - Unofficial, An Open Source YouTube app for privacy. - - SITE: https://github.com/pkgforge-dev/FreeTube-Appimage-Enhanced - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/freetube.md b/apps/freetube.md deleted file mode 100644 index c5109ba38..000000000 --- a/apps/freetube.md +++ /dev/null @@ -1,13 +0,0 @@ -# FREETUBE - - An Open Source YouTube app for privacy - -![Watching a video](https://raw.githubusercontent.com/FreeTubeApp/FreeTubeApp.io/master/src/images/FreeTube2.png) - - - SITE: https://freetubeapp.io - - SOURCE: https://github.com/FreeTubeApp/FreeTube - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/freeze b/apps/freeze new file mode 100644 index 000000000..f37d273ad --- /dev/null +++ b/apps/freeze @@ -0,0 +1,3 @@ +# freeze +Generate images of code and terminal output. +# SITES: https://github.com/charmbracelet/freeze \ No newline at end of file diff --git a/apps/freeze.md b/apps/freeze.md deleted file mode 100644 index 823dbf3de..000000000 --- a/apps/freeze.md +++ /dev/null @@ -1,8 +0,0 @@ -# FREEZE - - Generate images of code and terminal output. - - SITE: https://github.com/charmbracelet/freeze - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/freezer b/apps/freezer new file mode 100644 index 000000000..eee81832a --- /dev/null +++ b/apps/freezer @@ -0,0 +1,4 @@ +# freezer +An unofficial client for Deezer (AppImage version) +# SITES: https://files.freezer.life +# SOURCES: https://github.com/eNV25/freezer-releases \ No newline at end of file diff --git a/apps/freezer.md b/apps/freezer.md deleted file mode 100644 index a989cbfed..000000000 --- a/apps/freezer.md +++ /dev/null @@ -1,10 +0,0 @@ -# FREEZER - - An unofficial client for Deezer (AppImage version) - - SITE: https://files.freezer.life - - SOURCE: https://github.com/eNV25/freezer-releases - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/fresh b/apps/fresh new file mode 100644 index 000000000..b77805e6b --- /dev/null +++ b/apps/fresh @@ -0,0 +1,3 @@ +# fresh +Text editor for your terminal: easy, powerful and fast. +# SITES: https://github.com/sinelaw/fresh \ No newline at end of file diff --git a/apps/fresh.md b/apps/fresh.md deleted file mode 100644 index 375d59589..000000000 --- a/apps/fresh.md +++ /dev/null @@ -1,8 +0,0 @@ -# FRESH - - Text editor for your terminal: easy, powerful and fast. - - SITE: https://github.com/sinelaw/fresh - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/freshfetch b/apps/freshfetch new file mode 100644 index 000000000..0339bd1d4 --- /dev/null +++ b/apps/freshfetch @@ -0,0 +1,3 @@ +# freshfetch +A fresh take on neofetch. +# SITES: https://github.com/K4rakara/freshfetch \ No newline at end of file diff --git a/apps/freshfetch.md b/apps/freshfetch.md deleted file mode 100644 index 52dcc6233..000000000 --- a/apps/freshfetch.md +++ /dev/null @@ -1,8 +0,0 @@ -# FRESHFETCH - - A fresh take on neofetch. - - SITE: https://github.com/K4rakara/freshfetch - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/fretboard b/apps/fretboard new file mode 100644 index 000000000..0d266e7e5 --- /dev/null +++ b/apps/fretboard @@ -0,0 +1,3 @@ +# fretboard +Unofficial. Application which helps you find your favorite guitar chord. +# SITES: https://github.com/pkgforge-dev/Fretboard-AppImage \ No newline at end of file diff --git a/apps/fretboard.md b/apps/fretboard.md deleted file mode 100644 index 27e949649..000000000 --- a/apps/fretboard.md +++ /dev/null @@ -1,8 +0,0 @@ -# FRETBOARD - - Unofficial. Application which helps you find your favorite guitar chord. - - SITE: https://github.com/pkgforge-dev/Fretboard-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/friction b/apps/friction new file mode 100644 index 000000000..fd3696988 --- /dev/null +++ b/apps/friction @@ -0,0 +1,3 @@ +# friction +Friction Graphics, a flexible, user expandable 2D animation software for Linux and Windows. +# SITES: https://github.com/friction2d/friction \ No newline at end of file diff --git a/apps/friction.md b/apps/friction.md deleted file mode 100644 index f0073e3bf..000000000 --- a/apps/friction.md +++ /dev/null @@ -1,8 +0,0 @@ -# FRICTION - - Friction Graphics, a flexible, user expandable 2D animation software for Linux and Windows. - - SITE: https://github.com/friction2d/friction - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/friture b/apps/friture new file mode 100644 index 000000000..8cb34fe54 --- /dev/null +++ b/apps/friture @@ -0,0 +1,3 @@ +# friture +Real-time audio visualizations (spectrum, spectrogram, etc.). +# SITES: https://friture.org/ \ No newline at end of file diff --git a/apps/friture.md b/apps/friture.md deleted file mode 100644 index b007ae980..000000000 --- a/apps/friture.md +++ /dev/null @@ -1,8 +0,0 @@ -# FRITURE - - Real-time audio visualizations (spectrum, spectrogram, etc.). - - SITE: https://friture.org/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/fromscratch b/apps/fromscratch new file mode 100644 index 000000000..45c131194 --- /dev/null +++ b/apps/fromscratch @@ -0,0 +1,3 @@ +# fromscratch +Simple autosaving scratchpad +# SITES: https://github.com/Kilian/fromscratch \ No newline at end of file diff --git a/apps/fromscratch.md b/apps/fromscratch.md deleted file mode 100644 index 79ec5946e..000000000 --- a/apps/fromscratch.md +++ /dev/null @@ -1,8 +0,0 @@ -# FROMSCRATCH - - Simple autosaving scratchpad - - SITE: https://github.com/Kilian/fromscratch - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/frontimer b/apps/frontimer new file mode 100644 index 000000000..2766828a3 --- /dev/null +++ b/apps/frontimer @@ -0,0 +1,3 @@ +# frontimer +Desktop timer application always displayed in the forefront of the screen +# SITES: https://github.com/seita1996/frontimer \ No newline at end of file diff --git a/apps/frontimer.md b/apps/frontimer.md deleted file mode 100644 index 6732fd032..000000000 --- a/apps/frontimer.md +++ /dev/null @@ -1,8 +0,0 @@ -# FRONTIMER - - Desktop timer application always displayed in the forefront of the screen - - SITE: https://github.com/seita1996/frontimer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/fspy b/apps/fspy new file mode 100644 index 000000000..37e828637 --- /dev/null +++ b/apps/fspy @@ -0,0 +1,3 @@ +# fspy +An open source, cross platform app for still image camera matching +# SITES: https://github.com/stuffmatic/fSpy \ No newline at end of file diff --git a/apps/fspy.md b/apps/fspy.md deleted file mode 100644 index ef035c725..000000000 --- a/apps/fspy.md +++ /dev/null @@ -1,8 +0,0 @@ -# FSPY - - An open source, cross platform app for still image camera matching - - SITE: https://github.com/stuffmatic/fSpy - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/fukayo b/apps/fukayo new file mode 100644 index 000000000..a68c2c807 --- /dev/null +++ b/apps/fukayo @@ -0,0 +1,3 @@ +# fukayo +Manga reader. +# SITES: https://github.com/JiPaix/Fukayo \ No newline at end of file diff --git a/apps/fukayo.md b/apps/fukayo.md deleted file mode 100644 index 4790b52f6..000000000 --- a/apps/fukayo.md +++ /dev/null @@ -1,8 +0,0 @@ -# FUKAYO - - Manga reader. - - SITE: https://github.com/JiPaix/Fukayo - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/funkin b/apps/funkin new file mode 100644 index 000000000..311d26369 --- /dev/null +++ b/apps/funkin @@ -0,0 +1,3 @@ +# funkin +A rhythm game made with HaxeFlixel +# SITES: https://github.com/FunkinCrew/Funkin \ No newline at end of file diff --git a/apps/funkin-legacy b/apps/funkin-legacy new file mode 100644 index 000000000..7602220d0 --- /dev/null +++ b/apps/funkin-legacy @@ -0,0 +1,3 @@ +# funkin-legacy +Legacy GLibC Linux support for Friday Night Funkin. A rhythm game made with HaxeFlixel. +# SITES: https://github.com/NotHyper-474/Funkin-Legacy-Linux \ No newline at end of file diff --git a/apps/funkin-legacy.md b/apps/funkin-legacy.md deleted file mode 100644 index 9302ee5fd..000000000 --- a/apps/funkin-legacy.md +++ /dev/null @@ -1,8 +0,0 @@ -# FUNKIN-LEGACY - - Legacy GLibC Linux support for Friday Night Funkin. A rhythm game made with HaxeFlixel. - - SITE: https://github.com/NotHyper-474/Funkin-Legacy-Linux - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/funkin.md b/apps/funkin.md deleted file mode 100644 index 37380bf4e..000000000 --- a/apps/funkin.md +++ /dev/null @@ -1,8 +0,0 @@ -# FUNKIN - - A rhythm game made with HaxeFlixel - - SITE: https://github.com/FunkinCrew/Funkin - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/furnace b/apps/furnace new file mode 100644 index 000000000..0683cd500 --- /dev/null +++ b/apps/furnace @@ -0,0 +1,3 @@ +# furnace +A multi-system chiptune tracker compatible with DefleMask modules. +# SITES: https://github.com/tildearrow/furnace \ No newline at end of file diff --git a/apps/furnace.md b/apps/furnace.md deleted file mode 100644 index 0849484e8..000000000 --- a/apps/furnace.md +++ /dev/null @@ -1,8 +0,0 @@ -# FURNACE - - A multi-system chiptune tracker compatible with DefleMask modules. - - SITE: https://github.com/tildearrow/furnace - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/fx b/apps/fx new file mode 100644 index 000000000..387652033 --- /dev/null +++ b/apps/fx @@ -0,0 +1,3 @@ +# fx +Terminal JSON viewer & processor +# SITES: https://github.com/antonmedv/fx \ No newline at end of file diff --git a/apps/fx.md b/apps/fx.md deleted file mode 100644 index 65107812b..000000000 --- a/apps/fx.md +++ /dev/null @@ -1,8 +0,0 @@ -# FX - - Terminal JSON viewer & processor - - SITE: https://github.com/antonmedv/fx - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/fynodoro b/apps/fynodoro new file mode 100644 index 000000000..f4ad7d6ca --- /dev/null +++ b/apps/fynodoro @@ -0,0 +1,3 @@ +# fynodoro +Fynodoro, the Pomodoro Widget +# SITES: https://github.com/tomsquest/fynodoro \ No newline at end of file diff --git a/apps/fynodoro.md b/apps/fynodoro.md deleted file mode 100644 index d28f30404..000000000 --- a/apps/fynodoro.md +++ /dev/null @@ -1,8 +0,0 @@ -# FYNODORO - - Fynodoro, the Pomodoro Widget - - SITE: https://github.com/tomsquest/fynodoro - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/fzf b/apps/fzf new file mode 100644 index 000000000..6b05106d3 --- /dev/null +++ b/apps/fzf @@ -0,0 +1,3 @@ +# fzf +A command-line fuzzy finder. +# SITES: https://github.com/junegunn/fzf \ No newline at end of file diff --git a/apps/fzf.md b/apps/fzf.md deleted file mode 100644 index 289925f53..000000000 --- a/apps/fzf.md +++ /dev/null @@ -1,8 +0,0 @@ -# FZF - - A command-line fuzzy finder. - - SITE: https://github.com/junegunn/fzf - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/g-v2ray b/apps/g-v2ray new file mode 100644 index 000000000..8633f913e --- /dev/null +++ b/apps/g-v2ray @@ -0,0 +1,3 @@ +# g-v2ray +Advanced V2Ray/Xray GUI Client for Linux. +# SITES: https://github.com/almezali/g-v2ray \ No newline at end of file diff --git a/apps/g-v2ray.md b/apps/g-v2ray.md deleted file mode 100644 index ee02f824f..000000000 --- a/apps/g-v2ray.md +++ /dev/null @@ -1,8 +0,0 @@ -# G-V2RAY - - Advanced V2Ray/Xray GUI Client for Linux. - - SITE: https://github.com/almezali/g-v2ray - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/gaiasky b/apps/gaiasky new file mode 100644 index 000000000..e87741d9c --- /dev/null +++ b/apps/gaiasky @@ -0,0 +1,6 @@ +# gaiasky +Gaia Sky is a real-time, 3D, astronomy visualisation software for desktop and VR that runs on Linux, Windows and macOS. It is developed in the framework of ESA's Gaia mission to chart about 1 billion stars of our Galaxy in the Gaia group of the Astronomisches Rechen-Institut (ZAH, Universität Heidelberg). + + Explore the Solar System, the Milky Way or even the most distant galaxies of the Universe. +# SCREENSHOTS: https://gaia.ari.uni-heidelberg.de/gaiasky/files/screenshots/20200706/00004.jpg https://gaia.ari.uni-heidelberg.de/gaiasky/files/screenshots/20200706/00016.jpg https://gaia.ari.uni-heidelberg.de/gaiasky/files/screenshots/20230327/00008.jpg https://gaia.ari.uni-heidelberg.de/gaiasky/files/screenshots/20230327/00012.jpg +# SITES: https://gaiasky.space \ No newline at end of file diff --git a/apps/gaiasky.md b/apps/gaiasky.md deleted file mode 100644 index 5bc50c144..000000000 --- a/apps/gaiasky.md +++ /dev/null @@ -1,15 +0,0 @@ -# GAIASKY - - Gaia Sky is a real-time, 3D, astronomy visualisation software for desktop and VR that runs on Linux, Windows and macOS. It is developed in the framework of ESA's Gaia mission to chart about 1 billion stars of our Galaxy in the Gaia group of the Astronomisches Rechen-Institut (ZAH, Universität Heidelberg). - - Explore the Solar System, the Milky Way or even the most distant galaxies of the Universe. - - ![](https://gaia.ari.uni-heidelberg.de/gaiasky/files/screenshots/20200706/00004.jpg) - ![](https://gaia.ari.uni-heidelberg.de/gaiasky/files/screenshots/20200706/00016.jpg) - ![](https://gaia.ari.uni-heidelberg.de/gaiasky/files/screenshots/20230327/00008.jpg) - ![](https://gaia.ari.uni-heidelberg.de/gaiasky/files/screenshots/20230327/00012.jpg) - - SITE: https://gaiasky.space - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/galculator b/apps/galculator new file mode 100644 index 000000000..a1f1b430f --- /dev/null +++ b/apps/galculator @@ -0,0 +1,3 @@ +# galculator +A GTK 2 / GTK 3 based scientific calculator. +# SITES: https://github.com/pkgforge-dev/Galculator-AppImage \ No newline at end of file diff --git a/apps/galculator.md b/apps/galculator.md deleted file mode 100644 index 86c9ffbaf..000000000 --- a/apps/galculator.md +++ /dev/null @@ -1,12 +0,0 @@ -# GALCULATOR - - A GTK 2 / GTK 3 based scientific calculator. - - This script lets you choose between more variants. - - SITE: https://github.com/pkgforge-dev/Galculator-AppImage - - SITE2: https://github.com/ivan-hc/GNOME3-appimages - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/gale b/apps/gale new file mode 100644 index 000000000..e0b093750 --- /dev/null +++ b/apps/gale @@ -0,0 +1,3 @@ +# gale +A modern mod manager for Thunderstore. +# SITES: https://github.com/Kesomannen/gale \ No newline at end of file diff --git a/apps/gale.md b/apps/gale.md deleted file mode 100644 index 7fb23e4cd..000000000 --- a/apps/gale.md +++ /dev/null @@ -1,8 +0,0 @@ -# GALE - - A modern mod manager for Thunderstore. - - SITE: https://github.com/Kesomannen/gale - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/gallery-dl b/apps/gallery-dl new file mode 100644 index 000000000..703038918 --- /dev/null +++ b/apps/gallery-dl @@ -0,0 +1,3 @@ +# gallery-dl +Command-line program to download image galleries and collections from several image hosting sites. +# SITES: https://github.com/mikf/gallery-dl \ No newline at end of file diff --git a/apps/gallery-dl-nightly b/apps/gallery-dl-nightly new file mode 100644 index 000000000..26d3b86fd --- /dev/null +++ b/apps/gallery-dl-nightly @@ -0,0 +1,4 @@ +# gallery-dl-nightly + Command-line program to download image galleries and collections from several image hosting sites, nightly build. +# SITES: https://github.com/gdl-org/builds +# SOURCES: https://github.com/gdl-org/builds \ No newline at end of file diff --git a/apps/gallery-dl-nightly.md b/apps/gallery-dl-nightly.md deleted file mode 100644 index b0bcee7aa..000000000 --- a/apps/gallery-dl-nightly.md +++ /dev/null @@ -1,8 +0,0 @@ -# GALLERY-DL-NIGHTLY - - Command-line program to download image galleries and collections from several image hosting sites, nightly build. - - SITE: https://github.com/gdl-org/builds - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/gallery-dl.md b/apps/gallery-dl.md deleted file mode 100644 index e9bcbb731..000000000 --- a/apps/gallery-dl.md +++ /dev/null @@ -1,8 +0,0 @@ -# GALLERY-DL - - Command-line program to download image galleries and collections from several image hosting sites. - - SITE: https://codeberg.org/mikf/gallery-dl - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/gameconqueror b/apps/gameconqueror new file mode 100644 index 000000000..b9cf14298 --- /dev/null +++ b/apps/gameconqueror @@ -0,0 +1,5 @@ +# gameconqueror +Memory scanner designed to isolate the adress of an arbitrary variable in an executing process (gtk GUI). + + This is the unofficial AppImage built using pkg2appimage. +# SITES: https://github.com/lucasmz1/Game_Conqueror_AppImage \ No newline at end of file diff --git a/apps/gameconqueror.md b/apps/gameconqueror.md deleted file mode 100644 index 8f7243209..000000000 --- a/apps/gameconqueror.md +++ /dev/null @@ -1,10 +0,0 @@ -# GAMECONQUEROR - - Memory scanner designed to isolate the adress of an arbitrary variable in an executing process (gtk GUI). - - This is the unofficial AppImage built using pkg2appimage. - - SITE: https://github.com/lucasmz1/Game_Conqueror_AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gamehub b/apps/gamehub new file mode 100644 index 000000000..80ea27837 --- /dev/null +++ b/apps/gamehub @@ -0,0 +1,4 @@ +# gamehub +GameHub is a unified library for all your games. It allows you to store your games from different platforms into one program to make it easier for you to manage your games. +# SITES: https://tkashkin.tk +# SOURCES: https://github.com/tkashkin/GameHub \ No newline at end of file diff --git a/apps/gamehub.md b/apps/gamehub.md deleted file mode 100644 index 8b8563b28..000000000 --- a/apps/gamehub.md +++ /dev/null @@ -1,10 +0,0 @@ -# GAMEHUB - - GameHub is a unified library for all your games. It allows you to store your games from different platforms into one program to make it easier for you to manage your games. - - SITE: https://tkashkin.tk - - SOURCE: https://github.com/tkashkin/GameHub - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gameimage b/apps/gameimage new file mode 100644 index 000000000..06ec19fa3 --- /dev/null +++ b/apps/gameimage @@ -0,0 +1,14 @@ +# gameimage +AppImage Game Packer. + + Game emulation is on the rise, with years of contribution from the community and now with Valve's portable handheld, the steam deck. The fragmentation with several platform emulators is daunting, especially since it requires repetitive configuration for the first time or if the config files go missing. + + GameImage is a tool to pack a runner (such as an emulator), a game, and it's configs in a single appimage package. + + Advantages: + + - Simplicity, no need to install an emulator or wine to run your games, they are downloaded as appimages and packaged with the game. + - Each game config/saves are in the same folder as the appimage by default (it can be changed to use global ~/.config). Which simplifies backups. + - Usability, get your game running with a double click on a fresh linux install, no dependencies required. + - Storage, Smaller file sizes than loose files, since appimage uses squashfs. +# SITES: https://github.com/ruanformigoni/gameimage \ No newline at end of file diff --git a/apps/gameimage.md b/apps/gameimage.md deleted file mode 100644 index bc9875663..000000000 --- a/apps/gameimage.md +++ /dev/null @@ -1,19 +0,0 @@ -# GAMEIMAGE - - AppImage Game Packer. - - Game emulation is on the rise, with years of contribution from the community and now with Valve's portable handheld, the steam deck. The fragmentation with several platform emulators is daunting, especially since it requires repetitive configuration for the first time or if the config files go missing. - - GameImage is a tool to pack a runner (such as an emulator), a game, and it's configs in a single appimage package. - - Advantages: - - - Simplicity, no need to install an emulator or wine to run your games, they are downloaded as appimages and packaged with the game. - - Each game config/saves are in the same folder as the appimage by default (it can be changed to use global ~/.config). Which simplifies backups. - - Usability, get your game running with a double click on a fresh linux install, no dependencies required. - - Storage, Smaller file sizes than loose files, since appimage uses squashfs. - - SITE: https://github.com/ruanformigoni/gameimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gamescope b/apps/gamescope new file mode 100644 index 000000000..5b3f5443d --- /dev/null +++ b/apps/gamescope @@ -0,0 +1,4 @@ +# gamescope + Unofficial AppImage of gamescope. +# SITES: https://github.com/pkgforge-dev/gamescope-appimage +# SOURCES: https://github.com/pkgforge-dev/gamescope-appimage \ No newline at end of file diff --git a/apps/gamescope.md b/apps/gamescope.md deleted file mode 100644 index 330aca1f9..000000000 --- a/apps/gamescope.md +++ /dev/null @@ -1,8 +0,0 @@ -# GAMESCOPE - - Unofficial AppImage of gamescope. - - SITE: https://github.com/pkgforge-dev/gamescope-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/gams-studio b/apps/gams-studio new file mode 100644 index 000000000..a5798f871 --- /dev/null +++ b/apps/gams-studio @@ -0,0 +1,3 @@ +# gams-studio +GAMS Studio is the official development environment of the General Algebraic Modeling System (GAMS). +# SITES: https://github.com/GAMS-dev/studio \ No newline at end of file diff --git a/apps/gams-studio.md b/apps/gams-studio.md deleted file mode 100644 index 200acfb72..000000000 --- a/apps/gams-studio.md +++ /dev/null @@ -1,8 +0,0 @@ -# GAMS-STUDIO - - GAMS Studio is the official development environment of the General Algebraic Modeling System (GAMS). - - SITE: https://github.com/GAMS-dev/studio - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ganache b/apps/ganache new file mode 100644 index 000000000..00a49b771 --- /dev/null +++ b/apps/ganache @@ -0,0 +1,5 @@ +# ganache +Ganache - Personal Blockchain for Ethereum. + + This is the latest AppImage for Linux (2.5.4). +# SITES: https://github.com/trufflesuite/ganache \ No newline at end of file diff --git a/apps/ganache.md b/apps/ganache.md deleted file mode 100644 index f6e846d93..000000000 --- a/apps/ganache.md +++ /dev/null @@ -1,10 +0,0 @@ -# GANACHE - - Ganache - Personal Blockchain for Ethereum. - - This is the latest AppImage for Linux (2.5.4). - - SITE: https://github.com/trufflesuite/ganache - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gaphor b/apps/gaphor new file mode 100644 index 000000000..6896c0103 --- /dev/null +++ b/apps/gaphor @@ -0,0 +1,5 @@ +# gaphor +Gaphor is a UML and SysML modeling application written in Python. It is designed to be easy to use, while still being powerful. Gaphor implements a fully-compliant UML 2 data model, so it is much more than a picture drawing tool. + + You can use Gaphor to quickly visualize different aspects of a system as well as create complete, highly complex models. +# SITES: https://github.com/gaphor/gaphor \ No newline at end of file diff --git a/apps/gaphor.md b/apps/gaphor.md deleted file mode 100644 index 97bf030c1..000000000 --- a/apps/gaphor.md +++ /dev/null @@ -1,10 +0,0 @@ -# GAPHOR - - Gaphor is a UML and SysML modeling application written in Python. It is designed to be easy to use, while still being powerful. Gaphor implements a fully-compliant UML 2 data model, so it is much more than a picture drawing tool. - - You can use Gaphor to quickly visualize different aspects of a system as well as create complete, highly complex models. - - SITE: https://github.com/gaphor/gaphor - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gapless b/apps/gapless new file mode 100644 index 000000000..4b11eebf2 --- /dev/null +++ b/apps/gapless @@ -0,0 +1,3 @@ +# gapless +Unofficial. Simple music player with blur and gapless playback. +# SITES: https://github.com/pkgforge-dev/Gapless-AppImage \ No newline at end of file diff --git a/apps/gapless.md b/apps/gapless.md deleted file mode 100644 index 8a95d9582..000000000 --- a/apps/gapless.md +++ /dev/null @@ -1,8 +0,0 @@ -# GAPLESS - - Unofficial. Simple music player with blur and gapless playback. - - SITE: https://github.com/pkgforge-dev/Gapless-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/gargoyle-bin b/apps/gargoyle-bin new file mode 100644 index 000000000..ed3de62e3 --- /dev/null +++ b/apps/gargoyle-bin @@ -0,0 +1,3 @@ +# gargoyle-bin +AppImage for Interactive Fiction multi-interpreter that supports all major IF formats. +# SITES: https://github.com/garglk/garglk \ No newline at end of file diff --git a/apps/gargoyle-bin.md b/apps/gargoyle-bin.md deleted file mode 100644 index dd7a84b6f..000000000 --- a/apps/gargoyle-bin.md +++ /dev/null @@ -1,8 +0,0 @@ -# GARGOYLE-BIN - - AppImage for Interactive Fiction multi-interpreter that supports all major IF formats. - - SITE: https://github.com/garglk/garglk - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gaucho b/apps/gaucho new file mode 100644 index 000000000..89e7dc72f --- /dev/null +++ b/apps/gaucho @@ -0,0 +1,3 @@ +# gaucho +Minimalist task launcher +# SITES: https://github.com/angrykoala/gaucho \ No newline at end of file diff --git a/apps/gaucho.md b/apps/gaucho.md deleted file mode 100644 index aad9fce66..000000000 --- a/apps/gaucho.md +++ /dev/null @@ -1,8 +0,0 @@ -# GAUCHO - - Minimalist task launcher - - SITE: https://github.com/angrykoala/gaucho - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gawk b/apps/gawk new file mode 100644 index 000000000..8c3d0794d --- /dev/null +++ b/apps/gawk @@ -0,0 +1,3 @@ +# gawk +GNU version of awk. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/gawk.md b/apps/gawk.md deleted file mode 100644 index 14915f140..000000000 --- a/apps/gawk.md +++ /dev/null @@ -1,8 +0,0 @@ -# GAWK - - GNU version of awk. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/gcap2025 b/apps/gcap2025 new file mode 100644 index 000000000..d266ff300 --- /dev/null +++ b/apps/gcap2025 @@ -0,0 +1,3 @@ +# gcap2025 +Appimage não oficial do GCAP2025, declare seus ganhos de capital (Ano-calendário 2025). +# SITES: https://github.com/pkgforge-dev/GCAP2025-AppImage \ No newline at end of file diff --git a/apps/gcap2025.md b/apps/gcap2025.md deleted file mode 100644 index 0e49be029..000000000 --- a/apps/gcap2025.md +++ /dev/null @@ -1,8 +0,0 @@ -# GCAP2025 - - Appimage não oficial do GCAP2025, declare seus ganhos de capital (Ano-calendário 2025). - - SITE: https://github.com/pkgforge-dev/GCAP2025-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/gcap2026 b/apps/gcap2026 new file mode 100644 index 000000000..19c8964df --- /dev/null +++ b/apps/gcap2026 @@ -0,0 +1,3 @@ +# gcap2026 +Appimage não oficial do GCAP2026, declare seus ganhos de capital (Ano-calendário 2026). +# SITES: https://github.com/pkgforge-dev/GCAP2026-AppImage \ No newline at end of file diff --git a/apps/gcap2026.md b/apps/gcap2026.md deleted file mode 100644 index 2368836c4..000000000 --- a/apps/gcap2026.md +++ /dev/null @@ -1,8 +0,0 @@ -# GCAP2026 - - Appimage não oficial do GCAP2026, declare seus ganhos de capital (Ano-calendário 2026). - - SITE: https://github.com/pkgforge-dev/GCAP2026-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/gcstar b/apps/gcstar new file mode 100644 index 000000000..ba5cc9342 --- /dev/null +++ b/apps/gcstar @@ -0,0 +1,3 @@ +# gcstar +Unofficial, collection manager written in Perl and based on Gtk. +# SITES: https://github.com/pkgforge-dev/GCstar-AppImage \ No newline at end of file diff --git a/apps/gcstar.md b/apps/gcstar.md deleted file mode 100644 index 097f2041e..000000000 --- a/apps/gcstar.md +++ /dev/null @@ -1,8 +0,0 @@ -# GCSTAR - - Unofficial, collection manager written in Perl and based on Gtk. - - SITE: https://github.com/pkgforge-dev/GCstar-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/gdesktopsuite b/apps/gdesktopsuite new file mode 100644 index 000000000..62f56c92c --- /dev/null +++ b/apps/gdesktopsuite @@ -0,0 +1,3 @@ +# gdesktopsuite +Google Suite as a desktop app, made possible with Electron. +# SITES: https://github.com/alexkim205/G-Desktop-Suite \ No newline at end of file diff --git a/apps/gdesktopsuite.md b/apps/gdesktopsuite.md deleted file mode 100644 index 8239944cc..000000000 --- a/apps/gdesktopsuite.md +++ /dev/null @@ -1,8 +0,0 @@ -# GDESKTOPSUITE - - Google Suite as a desktop app, made possible with Electron. - - SITE: https://github.com/alexkim205/G-Desktop-Suite - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gdevelop b/apps/gdevelop new file mode 100644 index 000000000..9c6f0220b --- /dev/null +++ b/apps/gdevelop @@ -0,0 +1,3 @@ +# gdevelop +GDevelop is an open-source, cross-platform game engine designed to be used by everyone +# SITES: https://gdevelop.io \ No newline at end of file diff --git a/apps/gdevelop.md b/apps/gdevelop.md deleted file mode 100644 index 8eff7e733..000000000 --- a/apps/gdevelop.md +++ /dev/null @@ -1,8 +0,0 @@ -# GDEVELOP - - GDevelop is an open-source, cross-platform game engine designed to be used by everyone - - SITE: https://gdevelop.io - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gdlauncher b/apps/gdlauncher new file mode 100644 index 000000000..a2e455aef --- /dev/null +++ b/apps/gdlauncher @@ -0,0 +1,3 @@ +# gdlauncher +GDLauncher is simple, yet powerful Minecraft custom launcher with a strong focus on the user experience +# SITES: https://gdlauncher.com/ \ No newline at end of file diff --git a/apps/gdlauncher.md b/apps/gdlauncher.md deleted file mode 100644 index 1cc58f52b..000000000 --- a/apps/gdlauncher.md +++ /dev/null @@ -1,8 +0,0 @@ -# GDLAUNCHER - - GDLauncher is simple, yet powerful Minecraft custom launcher with a strong focus on the user experience - - SITE: https://gdlauncher.com/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gdm-settings b/apps/gdm-settings new file mode 100644 index 000000000..b58ac584d --- /dev/null +++ b/apps/gdm-settings @@ -0,0 +1,3 @@ +# gdm-settings +A settings app for GNOME's Login Manager, GDM. +# SITES: https://github.com/gdm-settings/gdm-settings \ No newline at end of file diff --git a/apps/gdm-settings.md b/apps/gdm-settings.md deleted file mode 100644 index c2d8712f5..000000000 --- a/apps/gdm-settings.md +++ /dev/null @@ -1,8 +0,0 @@ -# GDM-SETTINGS - - A settings app for GNOME's Login Manager, GDM. - - SITE: https://github.com/gdm-settings/gdm-settings - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/geany b/apps/geany new file mode 100644 index 000000000..8ede3128e --- /dev/null +++ b/apps/geany @@ -0,0 +1,3 @@ +# geany +AppImage build for geany/geany +# SITES: https://github.com/ecmu/geany.AppImage \ No newline at end of file diff --git a/apps/geany.md b/apps/geany.md deleted file mode 100644 index 7b3e5d18a..000000000 --- a/apps/geany.md +++ /dev/null @@ -1,8 +0,0 @@ -# GEANY - - AppImage build for geany/geany - - SITE: https://github.com/ecmu/geany.AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gearboy b/apps/gearboy new file mode 100644 index 000000000..db0267857 --- /dev/null +++ b/apps/gearboy @@ -0,0 +1,3 @@ +# gearboy +Game Boy / Gameboy Color emulator. +# SITES: https://github.com/drhelius/Gearboy \ No newline at end of file diff --git a/apps/gearboy.md b/apps/gearboy.md deleted file mode 100644 index 53a50d951..000000000 --- a/apps/gearboy.md +++ /dev/null @@ -1,8 +0,0 @@ -# GEARBOY - - Game Boy / Gameboy Color emulator. - - SITE: https://github.com/drhelius/Gearboy - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/gearcoleco b/apps/gearcoleco new file mode 100644 index 000000000..9fe9598a4 --- /dev/null +++ b/apps/gearcoleco @@ -0,0 +1,3 @@ +# gearcoleco +ColecoVision emulator. +# SITES: https://github.com/drhelius/Gearcoleco \ No newline at end of file diff --git a/apps/gearcoleco.md b/apps/gearcoleco.md deleted file mode 100644 index fb8ce778f..000000000 --- a/apps/gearcoleco.md +++ /dev/null @@ -1,8 +0,0 @@ -# GEARCOLECO - - ColecoVision emulator. - - SITE: https://github.com/drhelius/Gearcoleco - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/geargrafx b/apps/geargrafx new file mode 100644 index 000000000..eafe4a1de --- /dev/null +++ b/apps/geargrafx @@ -0,0 +1,3 @@ +# geargrafx +PC Engine / TurboGrafx-16 emulator and debugger. +# SITES: https://github.com/drhelius/Geargrafx \ No newline at end of file diff --git a/apps/geargrafx.md b/apps/geargrafx.md deleted file mode 100644 index b37aa4a6e..000000000 --- a/apps/geargrafx.md +++ /dev/null @@ -1,8 +0,0 @@ -# GEARGRAFX - - PC Engine / TurboGrafx-16 emulator and debugger. - - SITE: https://github.com/drhelius/Geargrafx - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/gearlever b/apps/gearlever new file mode 100644 index 000000000..83a419e81 --- /dev/null +++ b/apps/gearlever @@ -0,0 +1,3 @@ +# gearlever +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. +# SITES: https://github.com/pkgforge-dev/Gear-Lever-AppImage \ No newline at end of file diff --git a/apps/gearlever.md b/apps/gearlever.md deleted file mode 100644 index e623a9ea1..000000000 --- a/apps/gearlever.md +++ /dev/null @@ -1,8 +0,0 @@ -# GEARLEVER - - 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. - - SITE: https://github.com/pkgforge-dev/Gear-Lever-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gearlynx b/apps/gearlynx new file mode 100644 index 000000000..e1ff29c45 --- /dev/null +++ b/apps/gearlynx @@ -0,0 +1,3 @@ +# gearlynx +Unofficial, Atari Lynx emulator. +# SITES: https://github.com/pkgforge-dev/Gearlynx-AppImage \ No newline at end of file diff --git a/apps/gearlynx.md b/apps/gearlynx.md deleted file mode 100644 index f8e09ec7d..000000000 --- a/apps/gearlynx.md +++ /dev/null @@ -1,8 +0,0 @@ -# GEARLYNX - - Unofficial, Atari Lynx emulator. - - SITE: https://github.com/pkgforge-dev/Gearlynx-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/gearsystem b/apps/gearsystem new file mode 100644 index 000000000..5c13ad434 --- /dev/null +++ b/apps/gearsystem @@ -0,0 +1,3 @@ +# gearsystem +Sega Master System / Game Gear / SG-1000 Emulator. +# SITES: https://github.com/drhelius/Gearsystem \ No newline at end of file diff --git a/apps/gearsystem.md b/apps/gearsystem.md deleted file mode 100644 index 3c00b7fe8..000000000 --- a/apps/gearsystem.md +++ /dev/null @@ -1,8 +0,0 @@ -# GEARSYSTEM - - Sega Master System / Game Gear / SG-1000 Emulator. - - SITE: https://github.com/drhelius/Gearsystem - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/gedit b/apps/gedit new file mode 100644 index 000000000..3e77148b6 --- /dev/null +++ b/apps/gedit @@ -0,0 +1,3 @@ +# gedit +ArchImage of the popular GNOME text editor Gedit. +# SITES: https://github.com/ivan-hc/Gedit-appimage \ No newline at end of file diff --git a/apps/gedit.md b/apps/gedit.md deleted file mode 100644 index dc934e452..000000000 --- a/apps/gedit.md +++ /dev/null @@ -1,12 +0,0 @@ -# GEDIT - - An easy-to-use general-purpose text editor for the GNOME desktop environment. - - This script can install the latest release (if any) and a legacy variant. - - SITE: https://github.com/ivan-hc/Gedit-appimage - - SITE (GTK3): https://github.com/ivan-hc/GNOME3-appimages - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/geeqie b/apps/geeqie new file mode 100644 index 000000000..a08b26b56 --- /dev/null +++ b/apps/geeqie @@ -0,0 +1,3 @@ +# geeqie +claiming to be the best image viewer / photo collection browser +# SITES: https://github.com/BestImageViewer/geeqie \ No newline at end of file diff --git a/apps/geeqie.md b/apps/geeqie.md deleted file mode 100644 index a7021fb0a..000000000 --- a/apps/geeqie.md +++ /dev/null @@ -1,8 +0,0 @@ -# GEEQIE - - claiming to be the best image viewer / photo collection browser - - SITE: https://github.com/BestImageViewer/geeqie - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/geforce-infinity b/apps/geforce-infinity new file mode 100644 index 000000000..447a65a0e --- /dev/null +++ b/apps/geforce-infinity @@ -0,0 +1,3 @@ +# geforce-infinity +GeForce Infinity is a work-in-progress application designed to enhance the GeForce NOW experience. Originally created to address the lack of native GeForce NOW support on Linux, this app also provides functionality for windows users. My goal is to refine the user interface and offer custom features for an improved experience. +# SITES: https://github.com/AstralVixen/GeForce-Infinity \ No newline at end of file diff --git a/apps/geforce-infinity.md b/apps/geforce-infinity.md deleted file mode 100644 index 1ae7be6d3..000000000 --- a/apps/geforce-infinity.md +++ /dev/null @@ -1,8 +0,0 @@ -# GEFORCE-INFINITY - - GeForce Infinity is a work-in-progress application designed to enhance the GeForce NOW experience. Originally created to address the lack of native GeForce NOW support on Linux, this app also provides functionality for windows users. My goal is to refine the user interface and offer custom features for an improved experience. - - SITE: https://github.com/AstralVixen/GeForce-Infinity - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/geforcenow-electron b/apps/geforcenow-electron new file mode 100644 index 000000000..2a7894b6c --- /dev/null +++ b/apps/geforcenow-electron @@ -0,0 +1,3 @@ +# geforcenow-electron +Linux Desktop client for Nvidia&# 39;s GeForce NOW game streaming service. +# SITES: https://github.com/hmlendea/gfn-electron \ No newline at end of file diff --git a/apps/geforcenow-electron.md b/apps/geforcenow-electron.md deleted file mode 100644 index 4292b1ba8..000000000 --- a/apps/geforcenow-electron.md +++ /dev/null @@ -1,8 +0,0 @@ -# GEFORCENOW-ELECTRON - - Linux Desktop client for Nvidia&# 39;s GeForce NOW game streaming service. - - SITE: https://github.com/hmlendea/gfn-electron - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gemalaya b/apps/gemalaya new file mode 100644 index 000000000..b2b9ada65 --- /dev/null +++ b/apps/gemalaya @@ -0,0 +1,3 @@ +# gemalaya +A keyboard-driven Gemini browser written in QML. +# SITES: https://gemalaya.gitlab.io \ No newline at end of file diff --git a/apps/gemalaya.md b/apps/gemalaya.md deleted file mode 100644 index 6d948e4c2..000000000 --- a/apps/gemalaya.md +++ /dev/null @@ -1,8 +0,0 @@ -# GEMALAYA - - A keyboard-driven Gemini browser written in QML. - - SITE: https://gemalaya.gitlab.io - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gemget b/apps/gemget new file mode 100644 index 000000000..dad68a4ce --- /dev/null +++ b/apps/gemget @@ -0,0 +1,3 @@ +# gemget +Command line downloader for the Gemini protocol. +# SITES: https://github.com/makew0rld/gemget \ No newline at end of file diff --git a/apps/gemget.md b/apps/gemget.md deleted file mode 100644 index f67bd465f..000000000 --- a/apps/gemget.md +++ /dev/null @@ -1,8 +0,0 @@ -# GEMGET - - Command line downloader for the Gemini protocol. - - SITE: https://github.com/makew0rld/gemget - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gemrb b/apps/gemrb new file mode 100644 index 000000000..0544f8f0e --- /dev/null +++ b/apps/gemrb @@ -0,0 +1,3 @@ +# gemrb +GemRB is a portable open-source implementation of Bioware's Infinity Engine. +# SITES: https://sourceforge.net/p/gemrb \ No newline at end of file diff --git a/apps/gemrb.md b/apps/gemrb.md deleted file mode 100644 index 1ff6eeb6b..000000000 --- a/apps/gemrb.md +++ /dev/null @@ -1,8 +0,0 @@ -# GEMRB - - GemRB is a portable open-source implementation of Bioware's Infinity Engine. - - SITE: https://sourceforge.net/p/gemrb - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/genact b/apps/genact new file mode 100644 index 000000000..a72dec788 --- /dev/null +++ b/apps/genact @@ -0,0 +1,3 @@ +# genact +🌀 A nonsense activity generator. +# SITES: https://github.com/svenstaro/genact \ No newline at end of file diff --git a/apps/genact.md b/apps/genact.md deleted file mode 100644 index c5be96b2e..000000000 --- a/apps/genact.md +++ /dev/null @@ -1,8 +0,0 @@ -# GENACT - - 🌀 A nonsense activity generator. - - SITE: https://github.com/svenstaro/genact - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/genesis b/apps/genesis new file mode 100644 index 000000000..3f1e4c42b --- /dev/null +++ b/apps/genesis @@ -0,0 +1,3 @@ +# genesis +Open source blockchain platform. +# SITES: https://github.com/GenesisKernel/genesis-front \ No newline at end of file diff --git a/apps/genesis.md b/apps/genesis.md deleted file mode 100644 index 1376ddf1e..000000000 --- a/apps/genesis.md +++ /dev/null @@ -1,8 +0,0 @@ -# GENESIS - - Open source blockchain platform. - - SITE: https://github.com/GenesisKernel/genesis-front - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/geofs b/apps/geofs new file mode 100644 index 000000000..1232c1809 --- /dev/null +++ b/apps/geofs @@ -0,0 +1,3 @@ +# geofs +GeoFS flight sim as a desktop application supported on macOS, Windows, and Linux! +# SITES: https://github.com/Jminding/GeoFS-Desktop \ No newline at end of file diff --git a/apps/geofs.md b/apps/geofs.md deleted file mode 100644 index f2d1f56bc..000000000 --- a/apps/geofs.md +++ /dev/null @@ -1,8 +0,0 @@ -# GEOFS - - GeoFS flight sim as a desktop application supported on macOS, Windows, and Linux! - - SITE: https://github.com/Jminding/GeoFS-Desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/geometrize b/apps/geometrize new file mode 100644 index 000000000..c1afc5d9b --- /dev/null +++ b/apps/geometrize @@ -0,0 +1,3 @@ +# geometrize +Images to shapes converter +# SITES: https://github.com/Tw1ddle/geometrize \ No newline at end of file diff --git a/apps/geometrize.md b/apps/geometrize.md deleted file mode 100644 index cfbdf379f..000000000 --- a/apps/geometrize.md +++ /dev/null @@ -1,9 +0,0 @@ -# GEOMETRIZE - - Images to shapes converter - - SITE: https://github.com/Tw1ddle/geometrize - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | - diff --git a/apps/gerbil b/apps/gerbil new file mode 100644 index 000000000..2f690a61a --- /dev/null +++ b/apps/gerbil @@ -0,0 +1,3 @@ +# gerbil +A desktop app for running Large Language Models locally. +# SITES: https://github.com/lone-cloud/gerbil \ No newline at end of file diff --git a/apps/gerbil.md b/apps/gerbil.md deleted file mode 100644 index b3d9dd14b..000000000 --- a/apps/gerbil.md +++ /dev/null @@ -1,8 +0,0 @@ -# GERBIL - - A desktop app for running Large Language Models locally. - - SITE: https://github.com/lone-cloud/gerbil - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/gerbv b/apps/gerbv new file mode 100644 index 000000000..e355c4caf --- /dev/null +++ b/apps/gerbv @@ -0,0 +1,3 @@ +# gerbv +Gerber file viewer for PCB design +# SITES: https://github.com/m59peacemaker/gerbv-appimage \ No newline at end of file diff --git a/apps/gerbv.md b/apps/gerbv.md deleted file mode 100644 index 9370e3f10..000000000 --- a/apps/gerbv.md +++ /dev/null @@ -1,8 +0,0 @@ -# GERBV - - Gerber file viewer for PCB design - - SITE: https://github.com/m59peacemaker/gerbv-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gert b/apps/gert new file mode 100644 index 000000000..3a4859ba2 --- /dev/null +++ b/apps/gert @@ -0,0 +1,3 @@ +# gert +A command line tool to download media from Reddit +# SITES: https://github.com/mcdallas/gert \ No newline at end of file diff --git a/apps/gert.md b/apps/gert.md deleted file mode 100644 index 07e15912e..000000000 --- a/apps/gert.md +++ /dev/null @@ -1,8 +0,0 @@ -# GERT - - A command line tool to download media from Reddit - - SITE: https://github.com/mcdallas/gert - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/getthermal b/apps/getthermal new file mode 100644 index 000000000..bb95090dc --- /dev/null +++ b/apps/getthermal @@ -0,0 +1,3 @@ +# getthermal +Cross-platform Thermal Camera Viewer +# SITES: https://github.com/groupgets/GetThermal \ No newline at end of file diff --git a/apps/getthermal.md b/apps/getthermal.md deleted file mode 100644 index 94ba74881..000000000 --- a/apps/getthermal.md +++ /dev/null @@ -1,8 +0,0 @@ -# GETTHERMAL - - Cross-platform Thermal Camera Viewer - - SITE: https://github.com/groupgets/GetThermal - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gextractwinicons b/apps/gextractwinicons new file mode 100644 index 000000000..916c2c408 --- /dev/null +++ b/apps/gextractwinicons @@ -0,0 +1,3 @@ +# gextractwinicons +A GTK+ utility to extract cursors, icons and png images previews from MS Windows resource files (like .exe, .dll, .ocx, .cpl). +# SITES: https://github.com/muflone/gextractwinicons \ No newline at end of file diff --git a/apps/gextractwinicons.md b/apps/gextractwinicons.md deleted file mode 100644 index a02068a0b..000000000 --- a/apps/gextractwinicons.md +++ /dev/null @@ -1,8 +0,0 @@ -# GEXTRACTWINICONS - - A GTK+ utility to extract cursors, icons and png images previews from MS Windows resource files (like .exe, .dll, .ocx, .cpl). - - SITE: https://github.com/muflone/gextractwinicons - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gh b/apps/gh new file mode 100644 index 000000000..90679b559 --- /dev/null +++ b/apps/gh @@ -0,0 +1,3 @@ +# gh +GitHub’s official command line tool +# SITES: https://github.com/cli/cli \ No newline at end of file diff --git a/apps/gh-eco b/apps/gh-eco new file mode 100644 index 000000000..4b75d4b6c --- /dev/null +++ b/apps/gh-eco @@ -0,0 +1,3 @@ +# gh-eco +🦎 gh cli extension to explore the ecosystem. +# SITES: https://github.com/jrnxf/gh-eco \ No newline at end of file diff --git a/apps/gh-eco.md b/apps/gh-eco.md deleted file mode 100644 index 1c512bf55..000000000 --- a/apps/gh-eco.md +++ /dev/null @@ -1,8 +0,0 @@ -# GH-ECO - - 🦎 gh cli extension to explore the ecosystem. - - SITE: https://github.com/jrnxf/gh-eco - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gh.md b/apps/gh.md deleted file mode 100644 index 536b7579b..000000000 --- a/apps/gh.md +++ /dev/null @@ -1,8 +0,0 @@ -# GH - - GitHub’s official command line tool - - SITE: https://github.com/cli/cli - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gharmonize b/apps/gharmonize new file mode 100644 index 000000000..9d89c66e2 --- /dev/null +++ b/apps/gharmonize @@ -0,0 +1,3 @@ +# gharmonize +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. +# SITES: https://github.com/G-grbz/Gharmonize \ No newline at end of file diff --git a/apps/gharmonize.md b/apps/gharmonize.md deleted file mode 100644 index 9f5aea960..000000000 --- a/apps/gharmonize.md +++ /dev/null @@ -1,8 +0,0 @@ -# GHARMONIZE - - 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. - - SITE: https://github.com/G-grbz/Gharmonize - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/ghdl b/apps/ghdl new file mode 100644 index 000000000..2a5726de4 --- /dev/null +++ b/apps/ghdl @@ -0,0 +1,3 @@ +# ghdl +A much more convenient way to download GitHub release binaries on the command line, works on Win & Unix-like systems +# SITES: https://github.com/beetcb/ghdl \ No newline at end of file diff --git a/apps/ghdl.md b/apps/ghdl.md deleted file mode 100644 index 74477a109..000000000 --- a/apps/ghdl.md +++ /dev/null @@ -1,8 +0,0 @@ -# GHDL - - A much more convenient way to download GitHub release binaries on the command line, works on Win & Unix-like systems - - SITE: https://github.com/beetcb/ghdl - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ghidra b/apps/ghidra new file mode 100644 index 000000000..7bb5d61e1 --- /dev/null +++ b/apps/ghidra @@ -0,0 +1,3 @@ +# ghidra +Ghidra is a software reverse engineering (SRE) framework. +# SITES: https://github.com/NationalSecurityAgency/ghidra \ No newline at end of file diff --git a/apps/ghidra.md b/apps/ghidra.md deleted file mode 100644 index c3689d895..000000000 --- a/apps/ghidra.md +++ /dev/null @@ -1,8 +0,0 @@ -# GHIDRA - - Ghidra is a software reverse engineering (SRE) framework. - - SITE: https://github.com/NationalSecurityAgency/ghidra - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/ghostship b/apps/ghostship new file mode 100644 index 000000000..ff52fbabe --- /dev/null +++ b/apps/ghostship @@ -0,0 +1,3 @@ +# ghostship +Unofficial, Another definitive port of Super Mario 64. +# SITES: https://github.com/pkgforge-dev/Ghostship-AppImage-Enhanced \ No newline at end of file diff --git a/apps/ghostship.md b/apps/ghostship.md deleted file mode 100644 index a11582641..000000000 --- a/apps/ghostship.md +++ /dev/null @@ -1,8 +0,0 @@ -# GHOSTSHIP - - Unofficial, Another definitive port of Super Mario 64. - - SITE: https://github.com/pkgforge-dev/Ghostship-AppImage-Enhanced - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/ghostty b/apps/ghostty new file mode 100644 index 000000000..bbc3e8e7f --- /dev/null +++ b/apps/ghostty @@ -0,0 +1,3 @@ +# ghostty +Unofficial AppImage(s) of Ghostty terminal emulator 👻 +# SITES: https://github.com/pkgforge-dev/ghostty-appimage \ No newline at end of file diff --git a/apps/ghostty-glfw b/apps/ghostty-glfw new file mode 100644 index 000000000..e743baa71 --- /dev/null +++ b/apps/ghostty-glfw @@ -0,0 +1,5 @@ +# ghostty-glfw +Unofficial AppImage(s) of Ghostty terminal emulator 👻 + + This is the glfw version that don't uses GTK4 and libadwaita and is much faster, better and smaller as result. +# SITES: https://github.com/pkgforge-dev/ghostty-appimage \ No newline at end of file diff --git a/apps/ghostty-glfw-nightly b/apps/ghostty-glfw-nightly new file mode 100644 index 000000000..0dc770a96 --- /dev/null +++ b/apps/ghostty-glfw-nightly @@ -0,0 +1,5 @@ +# ghostty-glfw-nightly +Unofficial AppImage(s) of Ghostty terminal emulator 👻 + + This is the glfw version that don't uses GTK4 and libadwaita and is much faster, better and smaller as result. +# SITES: https://github.com/pkgforge-dev/ghostty-appimage \ No newline at end of file diff --git a/apps/ghostty-glfw-nightly.md b/apps/ghostty-glfw-nightly.md deleted file mode 100644 index ab27f63cd..000000000 --- a/apps/ghostty-glfw-nightly.md +++ /dev/null @@ -1,10 +0,0 @@ -# GHOSTTY-GLFW-NIGHTLY - - Unofficial AppImage(s) of Ghostty terminal emulator 👻 - - This is the glfw version that don't uses GTK4 and libadwaita and is much faster, better and smaller as result. - - SITE: https://github.com/pkgforge-dev/ghostty-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ghostty-glfw.md b/apps/ghostty-glfw.md deleted file mode 100644 index 2dc9f3c13..000000000 --- a/apps/ghostty-glfw.md +++ /dev/null @@ -1,10 +0,0 @@ -# GHOSTTY-GLFW - - Unofficial AppImage(s) of Ghostty terminal emulator 👻 - - This is the glfw version that don't uses GTK4 and libadwaita and is much faster, better and smaller as result. - - SITE: https://github.com/pkgforge-dev/ghostty-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ghostty-nightly b/apps/ghostty-nightly new file mode 100644 index 000000000..4ef17aaf7 --- /dev/null +++ b/apps/ghostty-nightly @@ -0,0 +1,3 @@ +# ghostty-nightly +Unofficial AppImage(s) of Ghostty terminal emulator 👻 +# SITES: https://github.com/pkgforge-dev/ghostty-appimage \ No newline at end of file diff --git a/apps/ghostty-nightly.md b/apps/ghostty-nightly.md deleted file mode 100644 index cf9724fb6..000000000 --- a/apps/ghostty-nightly.md +++ /dev/null @@ -1,8 +0,0 @@ -# GHOSTTY-NIGHTLY - - Unofficial AppImage(s) of Ghostty terminal emulator 👻 - - SITE: https://github.com/pkgforge-dev/ghostty-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ghostty.md b/apps/ghostty.md deleted file mode 100644 index f95db97b4..000000000 --- a/apps/ghostty.md +++ /dev/null @@ -1,8 +0,0 @@ -# GHOSTTY - - Unofficial AppImage(s) of Ghostty terminal emulator 👻 - - SITE: https://github.com/pkgforge-dev/ghostty-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ghrel b/apps/ghrel new file mode 100644 index 000000000..2fe1d5a7b --- /dev/null +++ b/apps/ghrel @@ -0,0 +1,3 @@ +# ghrel +Download and verify GitHub release +# SITES: https://github.com/jreisinger/ghrel \ No newline at end of file diff --git a/apps/ghrel.md b/apps/ghrel.md deleted file mode 100644 index 2790f965f..000000000 --- a/apps/ghrel.md +++ /dev/null @@ -1,8 +0,0 @@ -# GHREL - - Download and verify GitHub release - - SITE: https://github.com/jreisinger/ghrel - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/giada b/apps/giada new file mode 100644 index 000000000..424c19009 --- /dev/null +++ b/apps/giada @@ -0,0 +1,4 @@ +# giada +Giada is an open source, minimalistic and hardcore music production tool. Designed for DJs, live performers and electronic musicians. +# SITES: https://www.giadamusic.com/ +# SOURCES: https://github.com/monocasual/giada \ No newline at end of file diff --git a/apps/giada.md b/apps/giada.md deleted file mode 100644 index 31a88ab05..000000000 --- a/apps/giada.md +++ /dev/null @@ -1,9 +0,0 @@ -# GIADA - - Giada is an open source, minimalistic and hardcore music production tool. Designed for DJs, live performers and electronic musicians. - - SITE: https://www.giadamusic.com/ - - SOURCE: https://github.com/monocasual/giada - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gibs b/apps/gibs new file mode 100644 index 000000000..985ac8d47 --- /dev/null +++ b/apps/gibs @@ -0,0 +1,3 @@ +# gibs +Generally In-source Build System - build C++ projects without a project +# SITES: https://github.com/sierdzio/gibs \ No newline at end of file diff --git a/apps/gibs.md b/apps/gibs.md deleted file mode 100644 index a6af4aa9b..000000000 --- a/apps/gibs.md +++ /dev/null @@ -1,8 +0,0 @@ -# GIBS - - Generally In-source Build System - build C++ projects without a project - - SITE: https://github.com/sierdzio/gibs - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gickup b/apps/gickup new file mode 100644 index 000000000..98a40a796 --- /dev/null +++ b/apps/gickup @@ -0,0 +1,3 @@ +# gickup +Backup your Git repositories with ease. +# SITES: https://github.com/cooperspencer/gickup \ No newline at end of file diff --git a/apps/gickup.md b/apps/gickup.md deleted file mode 100644 index 5cccd44b1..000000000 --- a/apps/gickup.md +++ /dev/null @@ -1,8 +0,0 @@ -# GICKUP - - Backup your Git repositories with ease. - - SITE: https://github.com/cooperspencer/gickup - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/gifcurry b/apps/gifcurry new file mode 100644 index 000000000..093640c53 --- /dev/null +++ b/apps/gifcurry @@ -0,0 +1,3 @@ +# gifcurry +Gifcurry - The open-source, Haskell-built video editor for GIF makers. +# SITES: https://github.com/lettier/gifcurry \ No newline at end of file diff --git a/apps/gifcurry.md b/apps/gifcurry.md deleted file mode 100644 index 48075bd2c..000000000 --- a/apps/gifcurry.md +++ /dev/null @@ -1,8 +0,0 @@ -# GIFCURRY - - Gifcurry - The open-source, Haskell-built video editor for GIF makers. - - SITE: https://github.com/lettier/gifcurry - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gimagereader b/apps/gimagereader new file mode 100644 index 000000000..13f0a9537 --- /dev/null +++ b/apps/gimagereader @@ -0,0 +1,4 @@ +# gimagereader + Unofficial AppImage of gImageReader. +# SITES: https://github.com/pkgforge-dev/gimagereader-appimage +# SOURCES: https://github.com/pkgforge-dev/gimagereader-appimage \ No newline at end of file diff --git a/apps/gimagereader.md b/apps/gimagereader.md deleted file mode 100644 index 537bf4098..000000000 --- a/apps/gimagereader.md +++ /dev/null @@ -1,8 +0,0 @@ -# GIMAGEREADER - - Unofficial AppImage of gImageReader. - - SITE: https://github.com/pkgforge-dev/gimagereader-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/gimp b/apps/gimp new file mode 100644 index 000000000..fbc83400a --- /dev/null +++ b/apps/gimp @@ -0,0 +1,6 @@ +# gimp +GIMP (GNU Image Manipulation Program) is a cross-platform image editor. + + This script allows you to choose between the Official AppImage and the unofficial Archimage. +# SCREENSHOTS: https://user-images.githubusercontent.com/88724353/235696719-d98df03e-3049-4346-9c3d-ba8cf23e5b46.jpg +# SITES: \ No newline at end of file diff --git a/apps/gimp-git b/apps/gimp-git new file mode 100644 index 000000000..9f1f2e8ef --- /dev/null +++ b/apps/gimp-git @@ -0,0 +1,11 @@ +# gimp-git +GIMP (GNU Image Manipulation Program) is a cross-platform image editor. + + This is the unofficial AppImage built on top of JuNest, the lightweight Arch Linux based distro that runs on top of any other Linux distro. + + GIMP "GIT" is built from source using the AUR package "gimp-git". + + Every feature, even experimental, comes from source code, which may cause instability. +# SCREENSHOTS: https://setofskills.com/img/gimp-single-window-mode-in-progress.jpg +# SITES: https://www.gimp.org +# SOURCES: https://github.com/ivan-hc/GIMP-appimage \ No newline at end of file diff --git a/apps/gimp-git.md b/apps/gimp-git.md deleted file mode 100644 index 07a55beae..000000000 --- a/apps/gimp-git.md +++ /dev/null @@ -1,18 +0,0 @@ -# GIMP-GIT - - GIMP (GNU Image Manipulation Program) is a cross-platform image editor. - - This is the unofficial AppImage built on top of JuNest, the lightweight Arch Linux based distro that runs on top of any other Linux distro. - - GIMP "GIT" is built from source using the AUR package "gimp-git". - - Every feature, even experimental, comes from source code, which may cause instability. - - ![Screenshot](https://setofskills.com/img/gimp-single-window-mode-in-progress.jpg) - - SITE: https://www.gimp.org - - - APPIMAGE: https://github.com/ivan-hc/GIMP-appimage - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gimp-hybrid b/apps/gimp-hybrid new file mode 100644 index 000000000..2697a707b --- /dev/null +++ b/apps/gimp-hybrid @@ -0,0 +1,13 @@ +# gimp-hybrid +GIMP (GNU Image Manipulation Program) is a cross-platform image editor. + + This is the unofficial AppImage built on top of JuNest, the lightweight Arch Linux based distro that runs on top of any other Linux distro. + + GIMP "Hybrid" is based on GIMP "Stable" (see "gimp"), but includes extra libraries and third-party plugins and suport for the old Python2. + + If you are a GIMP fanatic, you can rely on this build, alternatively rely on the official Flatpak which already has everything you are looking for. + + "Hybrid" Is still a work in progress. USE AT YOUR OWN RISK! +# SCREENSHOTS: https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io/assets/88724353/9288e9c7-27fc-4a0c-a036-3e3b0480aba2 +# SITES: https://www.gimp.org +# SOURCES: https://github.com/ivan-hc/GIMP-appimage \ No newline at end of file diff --git a/apps/gimp-hybrid.md b/apps/gimp-hybrid.md deleted file mode 100644 index 681593c43..000000000 --- a/apps/gimp-hybrid.md +++ /dev/null @@ -1,20 +0,0 @@ -# GIMP-HYBRID - - GIMP (GNU Image Manipulation Program) is a cross-platform image editor. - - This is the unofficial AppImage built on top of JuNest, the lightweight Arch Linux based distro that runs on top of any other Linux distro. - - GIMP "Hybrid" is based on GIMP "Stable" (see "gimp"), but includes extra libraries and third-party plugins and suport for the old Python2. - - If you are a GIMP fanatic, you can rely on this build, alternatively rely on the official Flatpak which already has everything you are looking for. - - "Hybrid" Is still a work in progress. USE AT YOUR OWN RISK! - - ![gimp-hybrid](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io/assets/88724353/9288e9c7-27fc-4a0c-a036-3e3b0480aba2) - - SITE: https://www.gimp.org - - APPIMAGE: https://github.com/ivan-hc/GIMP-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gimp.md b/apps/gimp.md deleted file mode 100644 index 452a4d594..000000000 --- a/apps/gimp.md +++ /dev/null @@ -1,14 +0,0 @@ -# GIMP - - GIMP (GNU Image Manipulation Program) is a cross-platform image editor. - - This script allows you to choose between the Official AppImage and the unofficial Archimage. - - ![Screenshot](https://user-images.githubusercontent.com/88724353/235696719-d98df03e-3049-4346-9c3d-ba8cf23e5b46.jpg) - - OFFICIAL APPIMAGE: https://www.gimp.org - - UNOFFICIAL ARCHIMAGE: https://github.com/ivan-hc/GIMP-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gingko b/apps/gingko new file mode 100644 index 000000000..51df65a96 --- /dev/null +++ b/apps/gingko @@ -0,0 +1,3 @@ +# gingko +Gingko client rewritten in Elm, packaged with Electron. +# SITES: https://github.com/gingko/client \ No newline at end of file diff --git a/apps/gingko.md b/apps/gingko.md deleted file mode 100644 index 02836a4f7..000000000 --- a/apps/gingko.md +++ /dev/null @@ -1,8 +0,0 @@ -# GINGKO - - Gingko client rewritten in Elm, packaged with Electron. - - SITE: https://github.com/gingko/client - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/git-cliff b/apps/git-cliff new file mode 100644 index 000000000..597af8c5e --- /dev/null +++ b/apps/git-cliff @@ -0,0 +1,3 @@ +# git-cliff +A highly customizable Changelog Generator that follows Conventional Commit specifications ⛰️ +# SITES: https://github.com/orhun/git-cliff \ No newline at end of file diff --git a/apps/git-cliff.md b/apps/git-cliff.md deleted file mode 100644 index 7e8475a0a..000000000 --- a/apps/git-cliff.md +++ /dev/null @@ -1,8 +0,0 @@ -# GIT-CLIFF - - A highly customizable Changelog Generator that follows Conventional Commit specifications ⛰️ - - SITE: https://github.com/orhun/git-cliff - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/git-credential-oauth b/apps/git-credential-oauth new file mode 100644 index 000000000..150ed0e61 --- /dev/null +++ b/apps/git-credential-oauth @@ -0,0 +1,3 @@ +# git-credential-oauth +A Git credential helper that securely authenticates to GitHub, GitLab and BitBucket using OAuth. +# SITES: https://github.com/hickford/git-credential-oauth \ No newline at end of file diff --git a/apps/git-credential-oauth.md b/apps/git-credential-oauth.md deleted file mode 100644 index 91d630416..000000000 --- a/apps/git-credential-oauth.md +++ /dev/null @@ -1,8 +0,0 @@ -# GIT-CREDENTIAL-OAUTH - - A Git credential helper that securely authenticates to GitHub, GitLab and BitBucket using OAuth. - - SITE: https://github.com/hickford/git-credential-oauth - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/git-good b/apps/git-good new file mode 100644 index 000000000..3f935c88d --- /dev/null +++ b/apps/git-good @@ -0,0 +1,3 @@ +# git-good +Just a simple git client using electron and nodegit, focus on lightweight and performance. +# SITES: https://github.com/weedz/git-good \ No newline at end of file diff --git a/apps/git-good.md b/apps/git-good.md deleted file mode 100644 index de2e8b429..000000000 --- a/apps/git-good.md +++ /dev/null @@ -1,8 +0,0 @@ -# GIT-GOOD - - Just a simple git client using electron and nodegit, focus on lightweight and performance. - - SITE: https://github.com/weedz/git-good - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/git-side b/apps/git-side new file mode 100644 index 000000000..ec4eced6e --- /dev/null +++ b/apps/git-side @@ -0,0 +1,3 @@ +# git-side +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. +# SITES: https://github.com/Solexma/git-side \ No newline at end of file diff --git a/apps/git-side.md b/apps/git-side.md deleted file mode 100644 index 8aa09a3b4..000000000 --- a/apps/git-side.md +++ /dev/null @@ -1,8 +0,0 @@ -# GIT-SIDE - - 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. - - SITE: https://github.com/Solexma/git-side - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/gitbutler b/apps/gitbutler new file mode 100644 index 000000000..e9ce57393 --- /dev/null +++ b/apps/gitbutler @@ -0,0 +1,3 @@ +# gitbutler +The GitButler version control client, backed by Git, powered by Tauri/Rust/Svelte. +# SITES: https://gitbutler.com \ No newline at end of file diff --git a/apps/gitbutler.md b/apps/gitbutler.md deleted file mode 100644 index e1099c36c..000000000 --- a/apps/gitbutler.md +++ /dev/null @@ -1,8 +0,0 @@ -# GITBUTLER - - The GitButler version control client, backed by Git, powered by Tauri/Rust/Svelte. - - SITE: https://gitbutler.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/githoard b/apps/githoard new file mode 100644 index 000000000..0ce576b78 --- /dev/null +++ b/apps/githoard @@ -0,0 +1,3 @@ +# githoard +Hoard git repositories with ease +# SITES: https://github.com/jojobyte/githoard \ No newline at end of file diff --git a/apps/githoard.md b/apps/githoard.md deleted file mode 100644 index 10fee30cc..000000000 --- a/apps/githoard.md +++ /dev/null @@ -1,8 +0,0 @@ -# GITHOARD - - Hoard git repositories with ease - - SITE: https://github.com/jojobyte/githoard - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/github-desktop-plus b/apps/github-desktop-plus new file mode 100644 index 000000000..a73003a1a --- /dev/null +++ b/apps/github-desktop-plus @@ -0,0 +1,4 @@ +# github-desktop-plus +Electron-based GitHub Desktop fork with advanced functionality and Bitbucket, GitLab integration. +# SCREENSHOTS: https://github.com/pol-rivero/github-desktop-plus/blob/main/docs/assets/github-desktop-plus-demo.webp +# SITES: https://github.com/pol-rivero/github-desktop-plus \ No newline at end of file diff --git a/apps/github-desktop-plus.md b/apps/github-desktop-plus.md deleted file mode 100644 index 6e799d3bf..000000000 --- a/apps/github-desktop-plus.md +++ /dev/null @@ -1,10 +0,0 @@ -# GITHUB-DESKTOP-PLUS - - Electron-based GitHub Desktop fork with advanced functionality and Bitbucket, GitLab integration. - -![Screenshot](https://github.com/pol-rivero/github-desktop-plus/blob/main/docs/assets/github-desktop-plus-demo.webp) - - SITE: https://github.com/pol-rivero/github-desktop-plus - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/github-store b/apps/github-store new file mode 100644 index 000000000..55bc27a54 --- /dev/null +++ b/apps/github-store @@ -0,0 +1,3 @@ +# github-store +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. +# SITES: https://github.com/rainxchzed/Github-Store \ No newline at end of file diff --git a/apps/github-store.md b/apps/github-store.md deleted file mode 100644 index 499448a25..000000000 --- a/apps/github-store.md +++ /dev/null @@ -1,8 +0,0 @@ -# GITHUB-STORE - - 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. - - SITE: https://github.com/rainxchzed/Github-Store - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/gitify b/apps/gitify new file mode 100644 index 000000000..1b50e2fea --- /dev/null +++ b/apps/gitify @@ -0,0 +1,4 @@ +# gitify +GitHub notifications on your menu bar. Available on macOS, + Windows and Linux. +# SITES: https://www.gitify.io/ \ No newline at end of file diff --git a/apps/gitify.md b/apps/gitify.md deleted file mode 100644 index 37e852f1a..000000000 --- a/apps/gitify.md +++ /dev/null @@ -1,9 +0,0 @@ -# GITIFY - - GitHub notifications on your menu bar. Available on macOS, - Windows and Linux. - - SITE: https://www.gitify.io/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gitjournal b/apps/gitjournal new file mode 100644 index 000000000..b679622e7 --- /dev/null +++ b/apps/gitjournal @@ -0,0 +1,3 @@ +# gitjournal +Mobile first Note Taking integrated with Git +# SITES: https://github.com/GitJournal/GitJournal \ No newline at end of file diff --git a/apps/gitjournal.md b/apps/gitjournal.md deleted file mode 100644 index 5d5523105..000000000 --- a/apps/gitjournal.md +++ /dev/null @@ -1,8 +0,0 @@ -# GITJOURNAL - - Mobile first Note Taking integrated with Git - - SITE: https://github.com/GitJournal/GitJournal - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gitkraken b/apps/gitkraken new file mode 100644 index 000000000..d62b26a10 --- /dev/null +++ b/apps/gitkraken @@ -0,0 +1,4 @@ +# gitkraken +The Legendary GitKraken Client. Includes an intuitive Git GUI & powerful Git CLI. +# SITES: https://www.gitkraken.com/ +# SOURCES: https://github.com/mmtrt/gitkraken_AppImage \ No newline at end of file diff --git a/apps/gitkraken.md b/apps/gitkraken.md deleted file mode 100644 index 7a3aea892..000000000 --- a/apps/gitkraken.md +++ /dev/null @@ -1,10 +0,0 @@ -# GITKRAKEN - - The Legendary GitKraken Client. Includes an intuitive Git GUI & powerful Git CLI. - - SITE: https://www.gitkraken.com/ - - SOURCE: https://github.com/mmtrt/gitkraken_AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gitleaks b/apps/gitleaks new file mode 100644 index 000000000..5a672dcb0 --- /dev/null +++ b/apps/gitleaks @@ -0,0 +1,3 @@ +# gitleaks +Protect and discover secrets using Gitleaks 🔑 +# SITES: https://github.com/gitleaks/gitleaks \ No newline at end of file diff --git a/apps/gitleaks.md b/apps/gitleaks.md deleted file mode 100644 index 3f464e2a3..000000000 --- a/apps/gitleaks.md +++ /dev/null @@ -1,8 +0,0 @@ -# GITLEAKS - - Protect and discover secrets using Gitleaks 🔑 - - SITE: https://github.com/gitleaks/gitleaks - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gitlight b/apps/gitlight new file mode 100644 index 000000000..2d368e714 --- /dev/null +++ b/apps/gitlight @@ -0,0 +1,3 @@ +# gitlight +🐙 GitHub & GitLab notifications on your desktop +# SITES: https://github.com/colinlienard/gitlight \ No newline at end of file diff --git a/apps/gitlight.md b/apps/gitlight.md deleted file mode 100644 index 4c75d396a..000000000 --- a/apps/gitlight.md +++ /dev/null @@ -1,8 +0,0 @@ -# GITLIGHT - - 🐙 GitHub & GitLab notifications on your desktop - - SITE: https://github.com/colinlienard/gitlight - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gitnote b/apps/gitnote new file mode 100644 index 000000000..0a49a8452 --- /dev/null +++ b/apps/gitnote @@ -0,0 +1,3 @@ +# gitnote +A modern note taking app based on GIT. +# SITES: https://github.com/zhaopengme/gitnote \ No newline at end of file diff --git a/apps/gitnote.md b/apps/gitnote.md deleted file mode 100644 index a0956d2e3..000000000 --- a/apps/gitnote.md +++ /dev/null @@ -1,8 +0,0 @@ -# GITNOTE - - A modern note taking app based on GIT. - - SITE: https://github.com/zhaopengme/gitnote - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gitql b/apps/gitql new file mode 100644 index 000000000..6a4cf6525 --- /dev/null +++ b/apps/gitql @@ -0,0 +1,3 @@ +# gitql +💊 A git query language +# SITES: https://github.com/filhodanuvem/gitql \ No newline at end of file diff --git a/apps/gitql.md b/apps/gitql.md deleted file mode 100644 index 85b4002b8..000000000 --- a/apps/gitql.md +++ /dev/null @@ -1,8 +0,0 @@ -# GITQL - - 💊 A git query language - - SITE: https://github.com/filhodanuvem/gitql - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gitqlient b/apps/gitqlient new file mode 100644 index 000000000..8ff18031d --- /dev/null +++ b/apps/gitqlient @@ -0,0 +1,3 @@ +# gitqlient +Multi-platform Git client written with Qt. +# SITES: https://github.com/francescmm/GitQlient \ No newline at end of file diff --git a/apps/gitqlient.md b/apps/gitqlient.md deleted file mode 100644 index 8f14394e3..000000000 --- a/apps/gitqlient.md +++ /dev/null @@ -1,8 +0,0 @@ -# GITQLIENT - - Multi-platform Git client written with Qt. - - SITE: https://github.com/francescmm/GitQlient - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gittyup b/apps/gittyup new file mode 100644 index 000000000..dca29ea2b --- /dev/null +++ b/apps/gittyup @@ -0,0 +1,4 @@ +# gittyup +Gittyup is a graphical Git client designed to help you understand and manage your source code history. +# SCREENSHOTS: https://raw.githubusercontent.com/Murmele/Gittyup/master/rsrc/screenshots/main_dark_orig.png +# SITES: https://github.com/Murmele/Gittyup \ No newline at end of file diff --git a/apps/gittyup.md b/apps/gittyup.md deleted file mode 100644 index 88f2a334e..000000000 --- a/apps/gittyup.md +++ /dev/null @@ -1,10 +0,0 @@ -# GITTYUP - - Gittyup is a graphical Git client designed to help you understand and manage your source code history. - - ![](https://raw.githubusercontent.com/Murmele/Gittyup/master/rsrc/screenshots/main_dark_orig.png) - - SITE: https://github.com/Murmele/Gittyup - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gitui b/apps/gitui new file mode 100644 index 000000000..732c5c75f --- /dev/null +++ b/apps/gitui @@ -0,0 +1,3 @@ +# gitui +Blazing 💥 fast terminal-ui for git written in rust 🦀 +# SITES: https://github.com/extrawurst/gitui \ No newline at end of file diff --git a/apps/gitui.md b/apps/gitui.md deleted file mode 100644 index 13809d1d8..000000000 --- a/apps/gitui.md +++ /dev/null @@ -1,8 +0,0 @@ -# GITUI - - Blazing 💥 fast terminal-ui for git written in rust 🦀 - - SITE: https://github.com/extrawurst/gitui - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gl-warp2mp4 b/apps/gl-warp2mp4 new file mode 100644 index 000000000..a8c14d262 --- /dev/null +++ b/apps/gl-warp2mp4 @@ -0,0 +1,3 @@ +# gl-warp2mp4 +GL_warp2mp4 is an utility to pre-warp a movie similar to TGAWarp +# SITES: https://github.com/hn-88/GL_warp2mp4 \ No newline at end of file diff --git a/apps/gl-warp2mp4.md b/apps/gl-warp2mp4.md deleted file mode 100644 index 1049bd273..000000000 --- a/apps/gl-warp2mp4.md +++ /dev/null @@ -1,8 +0,0 @@ -# GL-WARP2MP4 - - GL_warp2mp4 is an utility to pre-warp a movie similar to TGAWarp - - SITE: https://github.com/hn-88/GL_warp2mp4 - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/glab b/apps/glab new file mode 100644 index 000000000..342677018 --- /dev/null +++ b/apps/glab @@ -0,0 +1,3 @@ +# glab +A GitLab CLI tool bringing GitLab to your command line. +# SITES: https://gitlab.com/gitlab-org/cli \ No newline at end of file diff --git a/apps/glab.md b/apps/glab.md deleted file mode 100644 index 2f0850d31..000000000 --- a/apps/glab.md +++ /dev/null @@ -1,8 +0,0 @@ -# GLAB - - A GitLab CLI tool bringing GitLab to your command line. - - SITE: https://gitlab.com/gitlab-org/cli - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/glaxnimate b/apps/glaxnimate new file mode 100644 index 000000000..57798bc7f --- /dev/null +++ b/apps/glaxnimate @@ -0,0 +1,3 @@ +# glaxnimate +A simple and fast vector graphics animation program. +# SITES: https://invent.kde.org/graphics/glaxnimate \ No newline at end of file diff --git a/apps/glaxnimate.md b/apps/glaxnimate.md deleted file mode 100644 index 5734566d5..000000000 --- a/apps/glaxnimate.md +++ /dev/null @@ -1,7 +0,0 @@ -# GLAXNIMATE - - A simple and fast vector graphics animation program. - - SITE: https://invent.kde.org/graphics/glaxnimate - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/glow b/apps/glow new file mode 100644 index 000000000..b4318f9b3 --- /dev/null +++ b/apps/glow @@ -0,0 +1,3 @@ +# glow +Render markdown on the CLI, with pizzazz! +# SITES: https://github.com/charmbracelet/glow \ No newline at end of file diff --git a/apps/glow.md b/apps/glow.md deleted file mode 100644 index d3c3b34be..000000000 --- a/apps/glow.md +++ /dev/null @@ -1,8 +0,0 @@ -# GLOW - - Render markdown on the CLI, with pizzazz! - - SITE: https://github.com/charmbracelet/glow - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gltf-insight b/apps/gltf-insight new file mode 100644 index 000000000..f7fd49990 --- /dev/null +++ b/apps/gltf-insight @@ -0,0 +1,3 @@ +# gltf-insight +C++11 based glTF 2.0 data insight tool. +# SITES: https://github.com/lighttransport/gltf-insight \ No newline at end of file diff --git a/apps/gltf-insight.md b/apps/gltf-insight.md deleted file mode 100644 index e9f8f2844..000000000 --- a/apps/gltf-insight.md +++ /dev/null @@ -1,8 +0,0 @@ -# GLTF-INSIGHT - - C++11 based glTF 2.0 data insight tool. - - SITE: https://github.com/lighttransport/gltf-insight - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/glulxe b/apps/glulxe new file mode 100644 index 000000000..356b7290c --- /dev/null +++ b/apps/glulxe @@ -0,0 +1,3 @@ +# glulxe +AppImage of the glulxe interactive fiction interpreter +# SITES: https://github.com/dino-/glulxe-appimage-build \ No newline at end of file diff --git a/apps/glulxe.md b/apps/glulxe.md deleted file mode 100644 index 0746ec616..000000000 --- a/apps/glulxe.md +++ /dev/null @@ -1,8 +0,0 @@ -# GLULXE - - AppImage of the glulxe interactive fiction interpreter - - SITE: https://github.com/dino-/glulxe-appimage-build - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/glyphr-studio-desktop b/apps/glyphr-studio-desktop new file mode 100644 index 000000000..df8c53bb4 --- /dev/null +++ b/apps/glyphr-studio-desktop @@ -0,0 +1,3 @@ +# glyphr-studio-desktop +Font design has a high barrier of entry. Professional font design programs. +# SITES: https://github.com/glyphr-studio/Glyphr-Studio-Desktop \ No newline at end of file diff --git a/apps/glyphr-studio-desktop.md b/apps/glyphr-studio-desktop.md deleted file mode 100644 index c29afb972..000000000 --- a/apps/glyphr-studio-desktop.md +++ /dev/null @@ -1,8 +0,0 @@ -# GLYPHR-STUDIO-DESKTOP - - Font design has a high barrier of entry. Professional font design programs. - - SITE: https://github.com/glyphr-studio/Glyphr-Studio-Desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gm-companion b/apps/gm-companion new file mode 100644 index 000000000..d92a17fdc --- /dev/null +++ b/apps/gm-companion @@ -0,0 +1,3 @@ +# gm-companion +A tool for rpg gamemasters. +# SITES: https://github.com/PhilInTheGaps/GM-Companion \ No newline at end of file diff --git a/apps/gm-companion.md b/apps/gm-companion.md deleted file mode 100644 index a84114b34..000000000 --- a/apps/gm-companion.md +++ /dev/null @@ -1,8 +0,0 @@ -# GM-COMPANION - - A tool for rpg gamemasters. - - SITE: https://github.com/PhilInTheGaps/GM-Companion - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gmail-desktop b/apps/gmail-desktop new file mode 100644 index 000000000..3c2753dbf --- /dev/null +++ b/apps/gmail-desktop @@ -0,0 +1,3 @@ +# gmail-desktop +Gmail Desktop is the Unofficial client for Google Gmail with support for dark mode and customizations. +# SITES: https://github.com/timche/gmail-desktop \ No newline at end of file diff --git a/apps/gmail-desktop.md b/apps/gmail-desktop.md deleted file mode 100644 index d53f9a499..000000000 --- a/apps/gmail-desktop.md +++ /dev/null @@ -1,8 +0,0 @@ -# GMAIL-DESKTOP - - Gmail Desktop is the Unofficial client for Google Gmail with support for dark mode and customizations. - - SITE: https://github.com/timche/gmail-desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gnatstudio b/apps/gnatstudio new file mode 100644 index 000000000..6678dce4e --- /dev/null +++ b/apps/gnatstudio @@ -0,0 +1,3 @@ +# gnatstudio +GNAT Studio is a powerful and lightweight IDE for Ada and SPARK. +# SITES: https://github.com/AdaCore/gnatstudio \ No newline at end of file diff --git a/apps/gnatstudio.md b/apps/gnatstudio.md deleted file mode 100644 index 6eae7a223..000000000 --- a/apps/gnatstudio.md +++ /dev/null @@ -1,8 +0,0 @@ -# GNATSTUDIO - - GNAT Studio is a powerful and lightweight IDE for Ada and SPARK. - - SITE: https://github.com/AdaCore/gnatstudio - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/gncdu b/apps/gncdu new file mode 100644 index 000000000..caf4fdb87 --- /dev/null +++ b/apps/gncdu @@ -0,0 +1,3 @@ +# gncdu +Implements NCurses Disk Usage(ncdu) with golang +# SITES: https://github.com/bastengao/gncdu \ No newline at end of file diff --git a/apps/gncdu.md b/apps/gncdu.md deleted file mode 100644 index 7fbc0f5ca..000000000 --- a/apps/gncdu.md +++ /dev/null @@ -1,8 +0,0 @@ -# GNCDU - - Implements NCurses Disk Usage(ncdu) with golang - - SITE: https://github.com/bastengao/gncdu - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gnome-boxes b/apps/gnome-boxes new file mode 100644 index 000000000..bd9de2b4c --- /dev/null +++ b/apps/gnome-boxes @@ -0,0 +1,5 @@ +# gnome-boxes +A simple GNOME application to access virtual machines. + + This is the Unofficial AppImage built on top of "JuNest" (Arch Linux). +# SITES: https://github.com/ivan-hc/Boxes-appimage \ No newline at end of file diff --git a/apps/gnome-boxes.md b/apps/gnome-boxes.md deleted file mode 100644 index 7c67cd541..000000000 --- a/apps/gnome-boxes.md +++ /dev/null @@ -1,13 +0,0 @@ -# GNOME-BOXES - - A simple GNOME application to access virtual machines. - - This is the Unofficial AppImage built on top of "JuNest" (Arch Linux). - - | ![Screenshot](https://github.com/user-attachments/assets/55634de4-b572-4df4-bc1f-804f5f5f7e80) | ![Screenshot](https://github.com/user-attachments/assets/d848e5bb-697b-45ea-8ae2-bb00118a828a) | ![Screenshot](https://github.com/user-attachments/assets/0890c0e6-f23c-4abc-acc8-42a5db0b138b) | -| - | - | - | - - SITE: https://github.com/ivan-hc/Boxes-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gnome-calculator b/apps/gnome-calculator new file mode 100644 index 000000000..19b4fdf3b --- /dev/null +++ b/apps/gnome-calculator @@ -0,0 +1,4 @@ +# gnome-calculator +Perform arithmetic, scientific or financial calculations. +# SCREENSHOTS: https://upload.wikimedia.org/wikipedia/commons/8/81/GNOME_Calculator_40_%28released_in_2021-03%29.png +# SITES: https://github.com/pkgforge-dev/Gnome-Calculator-Appimage \ No newline at end of file diff --git a/apps/gnome-calculator.md b/apps/gnome-calculator.md deleted file mode 100644 index dd8d12b54..000000000 --- a/apps/gnome-calculator.md +++ /dev/null @@ -1,10 +0,0 @@ -# GNOME-CALCULATOR - - Perform arithmetic, scientific or financial calculations. - - ![Screenshot](https://upload.wikimedia.org/wikipedia/commons/8/81/GNOME_Calculator_40_%28released_in_2021-03%29.png) - - SITE: https://github.com/pkgforge-dev/Gnome-Calculator-Appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gnome-pomodoro b/apps/gnome-pomodoro new file mode 100644 index 000000000..20facd975 --- /dev/null +++ b/apps/gnome-pomodoro @@ -0,0 +1,5 @@ +# gnome-pomodoro +Gnome Pomodoro is a productivity tool designed to help you manage your time effectively using the Pomodoro Technique. + + This Unofficial AppImage allows you to run Gnome Pomodoro on any Linux distribution without the need for installation. +# SITES: https://github.com/pkgforge-dev/gnome-pomodoro-appimage \ No newline at end of file diff --git a/apps/gnome-pomodoro.md b/apps/gnome-pomodoro.md deleted file mode 100644 index 84661cc42..000000000 --- a/apps/gnome-pomodoro.md +++ /dev/null @@ -1,10 +0,0 @@ -# GNOME-POMODORO - - Gnome Pomodoro is a productivity tool designed to help you manage your time effectively using the Pomodoro Technique. - - This Unofficial AppImage allows you to run Gnome Pomodoro on any Linux distribution without the need for installation. - - SITE: https://github.com/pkgforge-dev/gnome-pomodoro-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gnome-system-monitor b/apps/gnome-system-monitor new file mode 100644 index 000000000..fe968fa96 --- /dev/null +++ b/apps/gnome-system-monitor @@ -0,0 +1,3 @@ +# gnome-system-monitor +Unofficial. View current processes and monitor system state. +# SITES: https://github.com/pkgforge-dev/Gnome-System-Monitor-AppImage \ No newline at end of file diff --git a/apps/gnome-system-monitor.md b/apps/gnome-system-monitor.md deleted file mode 100644 index 3b71559e5..000000000 --- a/apps/gnome-system-monitor.md +++ /dev/null @@ -1,12 +0,0 @@ -# GNOME-SYSTEM-MONITOR - - View current processes and monitor system state. - - This script can install the latest release (if any) and a legacy variant. - - SITE: https://github.com/pkgforge-dev/Gnome-System-Monitor-AppImage - - SITE (GTK3): https://github.com/ivan-hc/GNOME3-appimages - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/gnome-text-editor b/apps/gnome-text-editor new file mode 100644 index 000000000..138bd39a4 --- /dev/null +++ b/apps/gnome-text-editor @@ -0,0 +1,3 @@ +# gnome-text-editor +Unofficial AppImage of the Gnome's Text Editor application. +# SITES: https://github.com/pkgforge-dev/Gnome-Text-Editor-AppImage \ No newline at end of file diff --git a/apps/gnome-text-editor.md b/apps/gnome-text-editor.md deleted file mode 100644 index 2b67ff00c..000000000 --- a/apps/gnome-text-editor.md +++ /dev/null @@ -1,8 +0,0 @@ -# GNOME-TEXT-EDITOR - - Unofficial AppImage of the Gnome's Text Editor application. - - SITE: https://github.com/pkgforge-dev/Gnome-Text-Editor-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/gnome-tweaks b/apps/gnome-tweaks new file mode 100644 index 000000000..a4834ef7b --- /dev/null +++ b/apps/gnome-tweaks @@ -0,0 +1,5 @@ +# gnome-tweaks +Graphical interface for advanced GNOME 3 settings. + + NOTE, this is still an experimental port to the AppImage format. +# SITES: https://github.com/ivan-hc/Gnome-tweaks-appimage \ No newline at end of file diff --git a/apps/gnome-tweaks.md b/apps/gnome-tweaks.md deleted file mode 100644 index 49e15aead..000000000 --- a/apps/gnome-tweaks.md +++ /dev/null @@ -1,10 +0,0 @@ -# GNOME-TWEAKS - - Graphical interface for advanced GNOME 3 settings. - - NOTE, this is still an experimental port to the AppImage format. - - SITE: https://github.com/ivan-hc/Gnome-tweaks-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gnome-web b/apps/gnome-web new file mode 100644 index 000000000..1bcf85b04 --- /dev/null +++ b/apps/gnome-web @@ -0,0 +1,4 @@ +# gnome-web + Unofficial AppImage of Gnome Web aka Epiphany.. +# SITES: https://github.com/pkgforge-dev/gnome-web-appimage +# SOURCES: https://github.com/pkgforge-dev/gnome-web-appimage \ No newline at end of file diff --git a/apps/gnome-web.md b/apps/gnome-web.md deleted file mode 100644 index 2c7080b8b..000000000 --- a/apps/gnome-web.md +++ /dev/null @@ -1,8 +0,0 @@ -# GNOME-WEB - - Unofficial AppImage of Gnome Web aka Epiphany.. - - SITE: https://github.com/pkgforge-dev/gnome-web-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/gnu-freedink b/apps/gnu-freedink new file mode 100644 index 000000000..8120d4109 --- /dev/null +++ b/apps/gnu-freedink @@ -0,0 +1,3 @@ +# gnu-freedink +Unofficial, a portable and enhanced version of the Dink Smallwood game engine. +# SITES: https://github.com/pkgforge-dev/GNU-FreeDink-AppImage \ No newline at end of file diff --git a/apps/gnu-freedink.md b/apps/gnu-freedink.md deleted file mode 100644 index d4888a73f..000000000 --- a/apps/gnu-freedink.md +++ /dev/null @@ -1,8 +0,0 @@ -# GNU-FREEDINK - - Unofficial, a portable and enhanced version of the Dink Smallwood game engine. - - SITE: https://github.com/pkgforge-dev/GNU-FreeDink-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/gnumeric b/apps/gnumeric new file mode 100644 index 000000000..823d00651 --- /dev/null +++ b/apps/gnumeric @@ -0,0 +1,8 @@ +# gnumeric +Gnumeric is an open-source spreadsheet program. Gnumeric and its source code are available free of charge, licensed under the terms of the GNU General Public License version 2 or version 3. + + Gnumeric starts up quickly and handles large spreadsheets while remaining responsive. A spreadsheet should calculate the right answer. Gnumeric's built-in functions and tools are accurate as several, researchers, have found. + + This is the unofficial AppImage built on top of JuNest, the lightweight Arch Linux based distro that runs on top of any other Linux distro. +# SITES: http://www.gnumeric.org +# SOURCES: https://github.com/ivan-hc/Gnumeric-appimage \ No newline at end of file diff --git a/apps/gnumeric.md b/apps/gnumeric.md deleted file mode 100644 index 518f3d8a8..000000000 --- a/apps/gnumeric.md +++ /dev/null @@ -1,14 +0,0 @@ -# GNUMERIC - - Gnumeric is an open-source spreadsheet program. Gnumeric and its source code are available free of charge, licensed under the terms of the GNU General Public License version 2 or version 3. - - Gnumeric starts up quickly and handles large spreadsheets while remaining responsive. A spreadsheet should calculate the right answer. Gnumeric's built-in functions and tools are accurate as several, researchers, have found. - - This is the unofficial AppImage built on top of JuNest, the lightweight Arch Linux based distro that runs on top of any other Linux distro. - - SITE: http://www.gnumeric.org - - APPIMAGE: https://github.com/ivan-hc/Gnumeric-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/go-pd b/apps/go-pd new file mode 100644 index 000000000..f38a86531 --- /dev/null +++ b/apps/go-pd @@ -0,0 +1,3 @@ +# go-pd +A free easy to use pixeldrain.com go client pkg and CLI upload tool. +# SITES: https://github.com/ManuelReschke/go-pd \ No newline at end of file diff --git a/apps/go-pd-gui b/apps/go-pd-gui new file mode 100644 index 000000000..5ad8eaf95 --- /dev/null +++ b/apps/go-pd-gui @@ -0,0 +1,3 @@ +# go-pd-gui +DRAINY is a free easy to use cross plattform upload tool for pixeldrain.com. +# SITES: https://github.com/ManuelReschke/go-pd-gui \ No newline at end of file diff --git a/apps/go-pd-gui.md b/apps/go-pd-gui.md deleted file mode 100644 index efff0dc52..000000000 --- a/apps/go-pd-gui.md +++ /dev/null @@ -1,8 +0,0 @@ -# GO-PD-GUI - - DRAINY is a free easy to use cross plattform upload tool for pixeldrain.com. - - SITE: https://github.com/ManuelReschke/go-pd-gui - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/go-pd.md b/apps/go-pd.md deleted file mode 100644 index ad8c7f11d..000000000 --- a/apps/go-pd.md +++ /dev/null @@ -1,8 +0,0 @@ -# GO-PD - - A free easy to use pixeldrain.com go client pkg and CLI upload tool. - - SITE: https://github.com/ManuelReschke/go-pd - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/go-spotify-cli b/apps/go-spotify-cli new file mode 100644 index 000000000..814806046 --- /dev/null +++ b/apps/go-spotify-cli @@ -0,0 +1,3 @@ +# go-spotify-cli +Control Spotify with CLI commands +# SITES: https://github.com/Envoy49/go-spotify-cli \ No newline at end of file diff --git a/apps/go-spotify-cli.md b/apps/go-spotify-cli.md deleted file mode 100644 index d1d835a50..000000000 --- a/apps/go-spotify-cli.md +++ /dev/null @@ -1,8 +0,0 @@ -# GO-SPOTIFY-CLI - - Control Spotify with CLI commands - - SITE: https://github.com/Envoy49/go-spotify-cli - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/goanime b/apps/goanime new file mode 100644 index 000000000..4bc94e196 --- /dev/null +++ b/apps/goanime @@ -0,0 +1,3 @@ +# goanime +A TUI tool to browse, stream, and download anime in English and Portuguese. +# SITES: https://github.com/alvarorichard/GoAnime \ No newline at end of file diff --git a/apps/goanime.md b/apps/goanime.md deleted file mode 100644 index 517d03f50..000000000 --- a/apps/goanime.md +++ /dev/null @@ -1,8 +0,0 @@ -# GOANIME - - A TUI tool to browse, stream, and download anime in English and Portuguese. - - SITE: https://github.com/alvarorichard/GoAnime - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/gobuster b/apps/gobuster new file mode 100644 index 000000000..701e64fbf --- /dev/null +++ b/apps/gobuster @@ -0,0 +1,3 @@ +# gobuster +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. +# SITES: https://github.com/OJ/gobuster \ No newline at end of file diff --git a/apps/gobuster.md b/apps/gobuster.md deleted file mode 100644 index 4be083b7a..000000000 --- a/apps/gobuster.md +++ /dev/null @@ -1,8 +0,0 @@ -# GOBUSTER - - 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. - - SITE: https://github.com/OJ/gobuster - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/godmode b/apps/godmode new file mode 100644 index 000000000..d2b2b99f4 --- /dev/null +++ b/apps/godmode @@ -0,0 +1,3 @@ +# godmode +AI Chat Browser: Fast, Full webapp access to ChatGPT / Claude / Bard / Bing / Llama2! I use this 20 times a day. +# SITES: https://github.com/smol-ai/GodMode \ No newline at end of file diff --git a/apps/godmode.md b/apps/godmode.md deleted file mode 100644 index 0b5be6ce2..000000000 --- a/apps/godmode.md +++ /dev/null @@ -1,8 +0,0 @@ -# GODMODE - - AI Chat Browser: Fast, Full webapp access to ChatGPT / Claude / Bard / Bing / Llama2! I use this 20 times a day. - - SITE: https://github.com/smol-ai/GodMode - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/godot b/apps/godot new file mode 100644 index 000000000..0fde57c69 --- /dev/null +++ b/apps/godot @@ -0,0 +1,6 @@ +# godot +Multi-platform 2D and 3D game engine with a feature-rich editor + + This script provides both the official portable build and the unofficial AppImage. +# SITES: https://github.com/godotengine/godot +# SOURCES: https://github.com/pkgforge-dev/Godot-AppImage \ No newline at end of file diff --git a/apps/godot.md b/apps/godot.md deleted file mode 100644 index f150fb476..000000000 --- a/apps/godot.md +++ /dev/null @@ -1,12 +0,0 @@ -# GODOT - - Multi-platform 2D and 3D game engine with a feature-rich editor - - This script provides both the official portable build and the unofficial AppImage. - - SITE: https://github.com/godotengine/godot - - APPIMAGE: https://github.com/pkgforge-dev/Godot-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gojq b/apps/gojq new file mode 100644 index 000000000..83d720b75 --- /dev/null +++ b/apps/gojq @@ -0,0 +1,3 @@ +# gojq +Pure Go implementation of jq +# SITES: https://github.com/itchyny/gojq \ No newline at end of file diff --git a/apps/gojq.md b/apps/gojq.md deleted file mode 100644 index 5b0dd6dfd..000000000 --- a/apps/gojq.md +++ /dev/null @@ -1,8 +0,0 @@ -# GOJQ - - Pure Go implementation of jq - - SITE: https://github.com/itchyny/gojq - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gokey b/apps/gokey new file mode 100644 index 000000000..9105ee03f --- /dev/null +++ b/apps/gokey @@ -0,0 +1,3 @@ +# gokey +A simple vaultless password manager in Go +# SITES: https://github.com/cloudflare/gokey \ No newline at end of file diff --git a/apps/gokey.md b/apps/gokey.md deleted file mode 100644 index 9e2a413b9..000000000 --- a/apps/gokey.md +++ /dev/null @@ -1,8 +0,0 @@ -# GOKEY - - A simple vaultless password manager in Go - - SITE: https://github.com/cloudflare/gokey - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/goland b/apps/goland new file mode 100644 index 000000000..c70556e4c --- /dev/null +++ b/apps/goland @@ -0,0 +1,3 @@ +# goland +Capable and Ergonomic Go IDE. +# SITES: https://www.jetbrains.com \ No newline at end of file diff --git a/apps/goland.md b/apps/goland.md deleted file mode 100644 index cb7c63045..000000000 --- a/apps/goland.md +++ /dev/null @@ -1,8 +0,0 @@ -# GOLAND - - Capable and Ergonomic Go IDE. - - SITE: https://www.jetbrains.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/goldencheetah b/apps/goldencheetah new file mode 100644 index 000000000..62ae60f1f --- /dev/null +++ b/apps/goldencheetah @@ -0,0 +1,3 @@ +# goldencheetah +Cycling Power Analysis Software. +# SITES: https://github.com/GoldenCheetah/GoldenCheetah \ No newline at end of file diff --git a/apps/goldencheetah.md b/apps/goldencheetah.md deleted file mode 100644 index 5ba5a03a5..000000000 --- a/apps/goldencheetah.md +++ /dev/null @@ -1,8 +0,0 @@ -# GOLDENCHEETAH - - Cycling Power Analysis Software. - - SITE: https://github.com/GoldenCheetah/GoldenCheetah - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/goldendict b/apps/goldendict new file mode 100644 index 000000000..f5c9a8d32 --- /dev/null +++ b/apps/goldendict @@ -0,0 +1,3 @@ +# goldendict +A feature-rich dictionary lookup program, supporting multiple dictionary formats (StarDict/Babylon/Lingvo /Dictd) and online dictionaries, featuring perfect article rendering with the complete markup, illustrations and other content retained, and allowing you to type in words without any accents or correct case. +# SITES: https://github.com/Abs62/goldendict \ No newline at end of file diff --git a/apps/goldendict-ng b/apps/goldendict-ng new file mode 100644 index 000000000..4227bfa87 --- /dev/null +++ b/apps/goldendict-ng @@ -0,0 +1,3 @@ +# goldendict-ng +Unofficial, an advanced dictionary lookup program, supporting many formats. +# SITES: https://github.com/pkgforge-dev/GoldenDict-ng-AppImage \ No newline at end of file diff --git a/apps/goldendict-ng.md b/apps/goldendict-ng.md deleted file mode 100644 index 77b7d1539..000000000 --- a/apps/goldendict-ng.md +++ /dev/null @@ -1,8 +0,0 @@ -# GOLDENDICT-NG - - Unofficial, an advanced dictionary lookup program, supporting many formats. - - SITE: https://github.com/pkgforge-dev/GoldenDict-ng-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/goldendict.md b/apps/goldendict.md deleted file mode 100644 index fc9da02fb..000000000 --- a/apps/goldendict.md +++ /dev/null @@ -1,8 +0,0 @@ -# GOLDENDICT - - A feature-rich dictionary lookup program, supporting multiple dictionary formats (StarDict/Babylon/Lingvo /Dictd) and online dictionaries, featuring perfect article rendering with the complete markup, illustrations and other content retained, and allowing you to type in words without any accents or correct case. - - SITE: https://github.com/Abs62/goldendict - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gooboxfileshare b/apps/gooboxfileshare new file mode 100644 index 000000000..5113e2ea0 --- /dev/null +++ b/apps/gooboxfileshare @@ -0,0 +1,3 @@ +# gooboxfileshare +Goobox File Share App +# SITES: https://github.com/GooBox/file-share-desktop \ No newline at end of file diff --git a/apps/gooboxfileshare.md b/apps/gooboxfileshare.md deleted file mode 100644 index bc1975ff5..000000000 --- a/apps/gooboxfileshare.md +++ /dev/null @@ -1,8 +0,0 @@ -# GOOBOXFILESHARE - - Goobox File Share App - - SITE: https://github.com/GooBox/file-share-desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/goodls b/apps/goodls new file mode 100644 index 000000000..527f0c0b0 --- /dev/null +++ b/apps/goodls @@ -0,0 +1,3 @@ +# goodls +This is a CLI tool to download shared files and folders from Google Drive. +# SITES: https://github.com/tanaikech/goodls \ No newline at end of file diff --git a/apps/goodls.md b/apps/goodls.md deleted file mode 100644 index d27fa9259..000000000 --- a/apps/goodls.md +++ /dev/null @@ -1,8 +0,0 @@ -# GOODLS - - This is a CLI tool to download shared files and folders from Google Drive. - - SITE: https://github.com/tanaikech/goodls - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/goofcord b/apps/goofcord new file mode 100644 index 000000000..fc93acf1e --- /dev/null +++ b/apps/goofcord @@ -0,0 +1,3 @@ +# goofcord +Take control of your Discord experience with GoofCord. The highly configurable and privacy first discord client. +# SITES: https://github.com/Milkshiift/GoofCord \ No newline at end of file diff --git a/apps/goofcord.md b/apps/goofcord.md deleted file mode 100644 index 18627799d..000000000 --- a/apps/goofcord.md +++ /dev/null @@ -1,8 +0,0 @@ -# GOOFCORD - - Take control of your Discord experience with GoofCord. The highly configurable and privacy first discord client. - - SITE: https://github.com/Milkshiift/GoofCord - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/google-chrome b/apps/google-chrome new file mode 100644 index 000000000..e27c914ba --- /dev/null +++ b/apps/google-chrome @@ -0,0 +1,5 @@ +# google-chrome +Google Chrome - The most popular Web Browser, provided by Google LLC. + + This is the Stable version. +# SITES: https://www.google.com/chrome \ No newline at end of file diff --git a/apps/google-chrome-beta b/apps/google-chrome-beta new file mode 100644 index 000000000..624f83d4a --- /dev/null +++ b/apps/google-chrome-beta @@ -0,0 +1,5 @@ +# google-chrome-beta +Google Chrome - The most popular Web Browser, provided by Google LLC. + + This is the Beta version. +# SITES: https://www.google.com/chrome/beta/ \ No newline at end of file diff --git a/apps/google-chrome-beta.md b/apps/google-chrome-beta.md deleted file mode 100644 index ae7a8d863..000000000 --- a/apps/google-chrome-beta.md +++ /dev/null @@ -1,16 +0,0 @@ -# GOOGLE-CHROME-BETA - - Google Chrome - The most popular Web Browser, provided by Google LLC. - - This is the Beta version. - - NOTE: This is the Unofficial AppImage built from the official deb package. - - ![Screenshot](https://upload.wikimedia.org/wikipedia/commons/8/87/Google_Chrome_75_screenshot.png) - - SITE: https://www.google.com/chrome/beta/ - - SOURCE/UNOFFICIAL APPIMAGE: https://github.com/ivan-hc/Chrome-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/google-chrome-dev b/apps/google-chrome-dev new file mode 100644 index 000000000..07d37afd3 --- /dev/null +++ b/apps/google-chrome-dev @@ -0,0 +1,5 @@ +# google-chrome-dev +Google Chrome - The most popular Web Browser, provided by Google LLC. + + This is the Unstable version. +# SITES: https://www.google.com/chrome/dev/ \ No newline at end of file diff --git a/apps/google-chrome-dev.md b/apps/google-chrome-dev.md deleted file mode 100644 index 5de2c91e0..000000000 --- a/apps/google-chrome-dev.md +++ /dev/null @@ -1,16 +0,0 @@ -# GOOGLE-CHROME-DEV - - Google Chrome - The most popular Web Browser, provided by Google LLC. - - This is the Unstable version. - - NOTE: This is the Unofficial AppImage built from the official deb package. - - ![Screenshot](https://upload.wikimedia.org/wikipedia/commons/8/87/Google_Chrome_75_screenshot.png) - - SITE: https://www.google.com/chrome/dev/ - - SOURCE/UNOFFICIAL APPIMAGE: https://github.com/ivan-hc/Chrome-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/google-chrome.md b/apps/google-chrome.md deleted file mode 100644 index 2f94c8b8b..000000000 --- a/apps/google-chrome.md +++ /dev/null @@ -1,16 +0,0 @@ -# GOOGLE-CHROME - - Google Chrome - The most popular Web Browser, provided by Google LLC. - - This is the Stable version. - - NOTE: This is the Unofficial AppImage built from the official deb package. - - ![Screenshot](https://upload.wikimedia.org/wikipedia/commons/8/87/Google_Chrome_75_screenshot.png) - - SITE: https://www.google.com/chrome - - SOURCE/UNOFFICIAL APPIMAGE: https://github.com/ivan-hc/Chrome-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/google-docs b/apps/google-docs new file mode 100644 index 000000000..33f7903e3 --- /dev/null +++ b/apps/google-docs @@ -0,0 +1,4 @@ +# google-docs +Google Docs Desktop App made with electron. Includes Google Docs, Sheets, Slides, Forms, and Drive. +# SITES: https://complabs.in/apps/google-docs +# SOURCES: https://github.com/Comp-Labs/Google-Docs \ No newline at end of file diff --git a/apps/google-docs.md b/apps/google-docs.md deleted file mode 100644 index 5e2df7d69..000000000 --- a/apps/google-docs.md +++ /dev/null @@ -1,10 +0,0 @@ -# GOOGLE-DOCS - - Google Docs Desktop App made with electron. Includes Google Docs, Sheets, Slides, Forms, and Drive. - - SITE: https://complabs.in/apps/google-docs - - SOURCE: https://github.com/Comp-Labs/Google-Docs - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/google-task-tauri b/apps/google-task-tauri new file mode 100644 index 000000000..a81677e14 --- /dev/null +++ b/apps/google-task-tauri @@ -0,0 +1,3 @@ +# google-task-tauri +An Unofficial Desktop Client for Google Tasks +# SITES: https://github.com/codad5/google-task-tauri \ No newline at end of file diff --git a/apps/google-task-tauri.md b/apps/google-task-tauri.md deleted file mode 100644 index 127511a47..000000000 --- a/apps/google-task-tauri.md +++ /dev/null @@ -1,8 +0,0 @@ -# GOOGLE-TASK-TAURI - - An Unofficial Desktop Client for Google Tasks - - SITE: https://github.com/codad5/google-task-tauri - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/google-tasks-desktop b/apps/google-tasks-desktop new file mode 100644 index 000000000..922072591 --- /dev/null +++ b/apps/google-tasks-desktop @@ -0,0 +1,3 @@ +# google-tasks-desktop +Unofficial google tasks desktop application. Using React and google tasks api. +# SITES: https://github.com/Pong420/google-tasks-desktop \ No newline at end of file diff --git a/apps/google-tasks-desktop.md b/apps/google-tasks-desktop.md deleted file mode 100644 index ab948fac5..000000000 --- a/apps/google-tasks-desktop.md +++ /dev/null @@ -1,8 +0,0 @@ -# GOOGLE-TASKS-DESKTOP - - Unofficial google tasks desktop application. Using React and google tasks api. - - SITE: https://github.com/Pong420/google-tasks-desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gooseberry b/apps/gooseberry new file mode 100644 index 000000000..ca39b8da6 --- /dev/null +++ b/apps/gooseberry @@ -0,0 +1,3 @@ +# gooseberry +A command line utility to generate a knowledge base from Hypothesis annotations +# SITES: https://github.com/out-of-cheese-error/gooseberry \ No newline at end of file diff --git a/apps/gooseberry.md b/apps/gooseberry.md deleted file mode 100644 index 47b61a13f..000000000 --- a/apps/gooseberry.md +++ /dev/null @@ -1,8 +0,0 @@ -# GOOSEBERRY - - A command line utility to generate a knowledge base from Hypothesis annotations - - SITE: https://github.com/out-of-cheese-error/gooseberry - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gopass b/apps/gopass new file mode 100644 index 000000000..00065837c --- /dev/null +++ b/apps/gopass @@ -0,0 +1,3 @@ +# gopass +The slightly more awesome standard unix password manager for teams +# SITES: https://github.com/gopasspw/gopass \ No newline at end of file diff --git a/apps/gopass.md b/apps/gopass.md deleted file mode 100644 index 3250375c2..000000000 --- a/apps/gopass.md +++ /dev/null @@ -1,8 +0,0 @@ -# GOPASS - - The slightly more awesome standard unix password manager for teams - - SITE: https://github.com/gopasspw/gopass - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gopeed b/apps/gopeed new file mode 100644 index 000000000..90ea515ae --- /dev/null +++ b/apps/gopeed @@ -0,0 +1,5 @@ +# gopeed +A modern download manager that supports all platforms. + + Built with Golang and Flutter. +# SITES: https://github.com/GopeedLab/gopeed \ No newline at end of file diff --git a/apps/gopeed.md b/apps/gopeed.md deleted file mode 100644 index ba87dd6fa..000000000 --- a/apps/gopeed.md +++ /dev/null @@ -1,10 +0,0 @@ -# GOPEED - - A modern download manager that supports all platforms. - - Built with Golang and Flutter. - - SITE: https://github.com/GopeedLab/gopeed - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gopher64 b/apps/gopher64 new file mode 100644 index 000000000..6e56d079d --- /dev/null +++ b/apps/gopher64 @@ -0,0 +1,4 @@ +# gopher64 + Unofficial AppImage of gopher64. +# SITES: https://github.com/pkgforge-dev/gopher64-appimage +# SOURCES: https://github.com/pkgforge-dev/gopher64-appimage \ No newline at end of file diff --git a/apps/gopher64.md b/apps/gopher64.md deleted file mode 100644 index e55910c7c..000000000 --- a/apps/gopher64.md +++ /dev/null @@ -1,8 +0,0 @@ -# GOPHER64 - - Unofficial AppImage of gopher64. - - SITE: https://github.com/pkgforge-dev/gopher64-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/gospel b/apps/gospel new file mode 100644 index 000000000..cac6856c0 --- /dev/null +++ b/apps/gospel @@ -0,0 +1,4 @@ +# gospel +Poppler based fast pdf viewer written in PyQt5. +# SCREENSHOTS: https://raw.githubusercontent.com/ksharindam/gospel-pdf-viewer/main/data/screenshots/Screenshot1.jpg +# SITES: https://github.com/ksharindam/gospel-pdf-viewer \ No newline at end of file diff --git a/apps/gospel.md b/apps/gospel.md deleted file mode 100644 index d70e89152..000000000 --- a/apps/gospel.md +++ /dev/null @@ -1,10 +0,0 @@ -# GOSPEL - - Poppler based fast pdf viewer written in PyQt5. - - ![Screenshot](https://raw.githubusercontent.com/ksharindam/gospel-pdf-viewer/main/data/screenshots/Screenshot1.jpg) - - SITE: https://github.com/ksharindam/gospel-pdf-viewer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gost-shred b/apps/gost-shred new file mode 100644 index 000000000..3dfcacb7c --- /dev/null +++ b/apps/gost-shred @@ -0,0 +1,3 @@ +# gost-shred +GOST R 50739-95 Data Sanitization Method (2 passes) +# SITES: https://github.com/pedroalbanese/gost-shred \ No newline at end of file diff --git a/apps/gost-shred.md b/apps/gost-shred.md deleted file mode 100644 index 72b7cee42..000000000 --- a/apps/gost-shred.md +++ /dev/null @@ -1,8 +0,0 @@ -# GOST-SHRED - - GOST R 50739-95 Data Sanitization Method (2 passes) - - SITE: https://github.com/pedroalbanese/gost-shred - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/got b/apps/got new file mode 100644 index 000000000..e5ca667f5 --- /dev/null +++ b/apps/got @@ -0,0 +1,3 @@ +# got +Got: Simple golang package and CLI tool to download large files faster 🏃 than cURL and Wget! +# SITES: https://github.com/melbahja/got \ No newline at end of file diff --git a/apps/got.md b/apps/got.md deleted file mode 100644 index a159ae481..000000000 --- a/apps/got.md +++ /dev/null @@ -1,8 +0,0 @@ -# GOT - - Got: Simple golang package and CLI tool to download large files faster 🏃 than cURL and Wget! - - SITE: https://github.com/melbahja/got - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gotimer b/apps/gotimer new file mode 100644 index 000000000..437caaccf --- /dev/null +++ b/apps/gotimer @@ -0,0 +1,3 @@ +# gotimer +A simple terminal based digital timer for Pomodoro. +# SITES: https://github.com/nwillc/gotimer \ No newline at end of file diff --git a/apps/gotimer.md b/apps/gotimer.md deleted file mode 100644 index 7e0714be4..000000000 --- a/apps/gotimer.md +++ /dev/null @@ -1,8 +0,0 @@ -# GOTIMER - - A simple terminal based digital timer for Pomodoro. - - SITE: https://github.com/nwillc/gotimer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/goto b/apps/goto new file mode 100644 index 000000000..39234aec9 --- /dev/null +++ b/apps/goto @@ -0,0 +1,3 @@ +# goto +A simple terminal SSH manager that provides you with an easy access to the list of your favorite SSH servers. Binaries included! +# SITES: https://github.com/grafviktor/goto \ No newline at end of file diff --git a/apps/goto.md b/apps/goto.md deleted file mode 100644 index a848d1d42..000000000 --- a/apps/goto.md +++ /dev/null @@ -1,8 +0,0 @@ -# GOTO - - A simple terminal SSH manager that provides you with an easy access to the list of your favorite SSH servers. Binaries included! - - SITE: https://github.com/grafviktor/goto - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/goverlay b/apps/goverlay new file mode 100644 index 000000000..3f38201c0 --- /dev/null +++ b/apps/goverlay @@ -0,0 +1,3 @@ +# goverlay +GOverlay is an opensource project that aims to create a Graphical UI to help manage Linux overlays. +# SITES: https://github.com/benjamimgois/goverlay \ No newline at end of file diff --git a/apps/goverlay.md b/apps/goverlay.md deleted file mode 100644 index b19ba13d0..000000000 --- a/apps/goverlay.md +++ /dev/null @@ -1,8 +0,0 @@ -# GOVERLAY - - GOverlay is an opensource project that aims to create a Graphical UI to help manage Linux overlays. - - SITE: https://github.com/benjamimgois/goverlay - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gp-archive b/apps/gp-archive new file mode 100644 index 000000000..4f8b8ae63 --- /dev/null +++ b/apps/gp-archive @@ -0,0 +1,4 @@ +# gp-archive + Archive profiling experiment data. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/gp-archive.md b/apps/gp-archive.md deleted file mode 100644 index d1eeea887..000000000 --- a/apps/gp-archive.md +++ /dev/null @@ -1,8 +0,0 @@ -# GP-ARCHIVE - - Archive profiling experiment data. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/gp-collect-app b/apps/gp-collect-app new file mode 100644 index 000000000..a6bab7a0c --- /dev/null +++ b/apps/gp-collect-app @@ -0,0 +1,4 @@ +# gp-collect-app + Collect application performance profiling data. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/gp-collect-app.md b/apps/gp-collect-app.md deleted file mode 100644 index eee0239e6..000000000 --- a/apps/gp-collect-app.md +++ /dev/null @@ -1,8 +0,0 @@ -# GP-COLLECT-APP - - Collect application performance profiling data. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/gp-display-html b/apps/gp-display-html new file mode 100644 index 000000000..9e75fe763 --- /dev/null +++ b/apps/gp-display-html @@ -0,0 +1,4 @@ +# gp-display-html + Generate HTML reports from profiling data. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/gp-display-html.md b/apps/gp-display-html.md deleted file mode 100644 index 8b5dc8054..000000000 --- a/apps/gp-display-html.md +++ /dev/null @@ -1,8 +0,0 @@ -# GP-DISPLAY-HTML - - Generate HTML reports from profiling data. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/gp-display-src b/apps/gp-display-src new file mode 100644 index 000000000..86e9d5d8e --- /dev/null +++ b/apps/gp-display-src @@ -0,0 +1,4 @@ +# gp-display-src + Display source code annotated with profiling data. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/gp-display-src.md b/apps/gp-display-src.md deleted file mode 100644 index f525ca3f9..000000000 --- a/apps/gp-display-src.md +++ /dev/null @@ -1,8 +0,0 @@ -# GP-DISPLAY-SRC - - Display source code annotated with profiling data. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/gp-display-text b/apps/gp-display-text new file mode 100644 index 000000000..b1f301f3c --- /dev/null +++ b/apps/gp-display-text @@ -0,0 +1,4 @@ +# gp-display-text + Display profiling data in plain text format. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/gp-display-text.md b/apps/gp-display-text.md deleted file mode 100644 index 4c888514b..000000000 --- a/apps/gp-display-text.md +++ /dev/null @@ -1,8 +0,0 @@ -# GP-DISPLAY-TEXT - - Display profiling data in plain text format. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/gpg-tui b/apps/gpg-tui new file mode 100644 index 000000000..c34c0ef2e --- /dev/null +++ b/apps/gpg-tui @@ -0,0 +1,3 @@ +# gpg-tui +Manage your GnuPG keys with ease! 🔐 +# SITES: https://github.com/orhun/gpg-tui \ No newline at end of file diff --git a/apps/gpg-tui.md b/apps/gpg-tui.md deleted file mode 100644 index 590e2c532..000000000 --- a/apps/gpg-tui.md +++ /dev/null @@ -1,8 +0,0 @@ -# GPG-TUI - - Manage your GnuPG keys with ease! 🔐 - - SITE: https://github.com/orhun/gpg-tui - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gpgfrontend b/apps/gpgfrontend new file mode 100644 index 000000000..d5bb9318a --- /dev/null +++ b/apps/gpgfrontend @@ -0,0 +1,3 @@ +# gpgfrontend +A Cross-Platform OpenPGP Frontend Software +# SITES: https://github.com/saturneric/GpgFrontend \ No newline at end of file diff --git a/apps/gpgfrontend.md b/apps/gpgfrontend.md deleted file mode 100644 index 9e9fcf052..000000000 --- a/apps/gpgfrontend.md +++ /dev/null @@ -1,8 +0,0 @@ -# GPGFRONTEND - - A Cross-Platform OpenPGP Frontend Software - - SITE: https://github.com/saturneric/GpgFrontend - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gping b/apps/gping new file mode 100644 index 000000000..d20186f1c --- /dev/null +++ b/apps/gping @@ -0,0 +1,3 @@ +# gping +Ping, but with a graph. +# SITES: https://github.com/orf/gping \ No newline at end of file diff --git a/apps/gping.md b/apps/gping.md deleted file mode 100644 index 2a4402524..000000000 --- a/apps/gping.md +++ /dev/null @@ -1,8 +0,0 @@ -# GPING - - Ping, but with a graph. - - SITE: https://github.com/orf/gping - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gpodder b/apps/gpodder new file mode 100644 index 000000000..76a7f0e38 --- /dev/null +++ b/apps/gpodder @@ -0,0 +1,4 @@ +# gpodder + Unofficial AppImage of gPodder. +# SITES: https://github.com/pkgforge-dev/gpodder-appimage +# SOURCES: https://github.com/pkgforge-dev/gpodder-appimage \ No newline at end of file diff --git a/apps/gpodder.md b/apps/gpodder.md deleted file mode 100644 index 27a86551e..000000000 --- a/apps/gpodder.md +++ /dev/null @@ -1,8 +0,0 @@ -# GPODDER - - Unofficial AppImage of gPodder. - - SITE: https://github.com/pkgforge-dev/gpodder-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/gpredict b/apps/gpredict new file mode 100644 index 000000000..38c16cd92 --- /dev/null +++ b/apps/gpredict @@ -0,0 +1,3 @@ +# gpredict +Gpredict satellite tracking application. +# SITES: https://github.com/csete/gpredict \ No newline at end of file diff --git a/apps/gpredict.md b/apps/gpredict.md deleted file mode 100644 index 7f25114bc..000000000 --- a/apps/gpredict.md +++ /dev/null @@ -1,8 +0,0 @@ -# GPREDICT - - Gpredict satellite tracking application. - - SITE: https://github.com/csete/gpredict - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gprof b/apps/gprof new file mode 100644 index 000000000..65a01f30f --- /dev/null +++ b/apps/gprof @@ -0,0 +1,4 @@ +# gprof + Graph profile data. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/gprof.md b/apps/gprof.md deleted file mode 100644 index 9d44fc3ba..000000000 --- a/apps/gprof.md +++ /dev/null @@ -1,8 +0,0 @@ -# GPROF - - Graph profile data. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/gprofng b/apps/gprofng new file mode 100644 index 000000000..8430dbb45 --- /dev/null +++ b/apps/gprofng @@ -0,0 +1,4 @@ +# gprofng + Generation GNU application profiling tool. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/gprofng-archive b/apps/gprofng-archive new file mode 100644 index 000000000..99737d861 --- /dev/null +++ b/apps/gprofng-archive @@ -0,0 +1,4 @@ +# gprofng-archive + Experiment data. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/gprofng-archive.md b/apps/gprofng-archive.md deleted file mode 100644 index 1575a9452..000000000 --- a/apps/gprofng-archive.md +++ /dev/null @@ -1,8 +0,0 @@ -# GPROFNG-ARCHIVE - - Experiment data. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/gprofng-collect-app b/apps/gprofng-collect-app new file mode 100644 index 000000000..97d4485f3 --- /dev/null +++ b/apps/gprofng-collect-app @@ -0,0 +1,4 @@ +# gprofng-collect-app + Data for the target. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/gprofng-collect-app.md b/apps/gprofng-collect-app.md deleted file mode 100644 index 3c6d9f991..000000000 --- a/apps/gprofng-collect-app.md +++ /dev/null @@ -1,8 +0,0 @@ -# GPROFNG-COLLECT-APP - - Data for the target. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/gprofng-display-html b/apps/gprofng-display-html new file mode 100644 index 000000000..9230da25f --- /dev/null +++ b/apps/gprofng-display-html @@ -0,0 +1,4 @@ +# gprofng-display-html + HTML based directory structure. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/gprofng-display-html.md b/apps/gprofng-display-html.md deleted file mode 100644 index 9bfc5b9c6..000000000 --- a/apps/gprofng-display-html.md +++ /dev/null @@ -1,8 +0,0 @@ -# GPROFNG-DISPLAY-HTML - - HTML based directory structure. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/gprofng-display-src b/apps/gprofng-display-src new file mode 100644 index 000000000..5e5280418 --- /dev/null +++ b/apps/gprofng-display-src @@ -0,0 +1,4 @@ +# gprofng-display-src + Code and optionally. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/gprofng-display-src.md b/apps/gprofng-display-src.md deleted file mode 100644 index 714c597ab..000000000 --- a/apps/gprofng-display-src.md +++ /dev/null @@ -1,8 +0,0 @@ -# GPROFNG-DISPLAY-SRC - - Code and optionally. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/gprofng-display-text b/apps/gprofng-display-text new file mode 100644 index 000000000..5c1f6398c --- /dev/null +++ b/apps/gprofng-display-text @@ -0,0 +1,4 @@ +# gprofng-display-text + Performance data in plain text. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/gprofng-display-text.md b/apps/gprofng-display-text.md deleted file mode 100644 index 78b5d9bf6..000000000 --- a/apps/gprofng-display-text.md +++ /dev/null @@ -1,8 +0,0 @@ -# GPROFNG-DISPLAY-TEXT - - Performance data in plain text. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/gprofng-gmon b/apps/gprofng-gmon new file mode 100644 index 000000000..597c2405c --- /dev/null +++ b/apps/gprofng-gmon @@ -0,0 +1,4 @@ +# gprofng-gmon + Display or convert GNU gmon profiling data. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/gprofng-gmon.md b/apps/gprofng-gmon.md deleted file mode 100644 index 53082e2e5..000000000 --- a/apps/gprofng-gmon.md +++ /dev/null @@ -1,8 +0,0 @@ -# GPROFNG-GMON - - Display or convert GNU gmon profiling data. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/gprofng.md b/apps/gprofng.md deleted file mode 100644 index 5958868c7..000000000 --- a/apps/gprofng.md +++ /dev/null @@ -1,8 +0,0 @@ -# GPROFNG - - Generation GNU application profiling tool. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/gpt-anywhere b/apps/gpt-anywhere new file mode 100644 index 000000000..92f8bc2f4 --- /dev/null +++ b/apps/gpt-anywhere @@ -0,0 +1,3 @@ +# gpt-anywhere +Use GPT anywhere with just one shortcut. +# SITES: http://jinay.dev/gpt-anywhere/ \ No newline at end of file diff --git a/apps/gpt-anywhere.md b/apps/gpt-anywhere.md deleted file mode 100644 index 1288f315f..000000000 --- a/apps/gpt-anywhere.md +++ /dev/null @@ -1,8 +0,0 @@ -# GPT-ANYWHERE - - Use GPT anywhere with just one shortcut. - - SITE: http://jinay.dev/gpt-anywhere/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gpu-screen-recorder b/apps/gpu-screen-recorder new file mode 100644 index 000000000..4441eecc1 --- /dev/null +++ b/apps/gpu-screen-recorder @@ -0,0 +1,3 @@ +# gpu-screen-recorder +Unofficial AppImage of GPU Screen Recorder [Maintainer=@Samueru-sama] +# SITES: https://github.com/pkgforge-dev/gpu-screen-recorder-AppImage \ No newline at end of file diff --git a/apps/gpu-screen-recorder.md b/apps/gpu-screen-recorder.md deleted file mode 100644 index 80c567984..000000000 --- a/apps/gpu-screen-recorder.md +++ /dev/null @@ -1,8 +0,0 @@ -# GPU-SCREEN-RECORDER - - Unofficial AppImage of GPU Screen Recorder [Maintainer=@Samueru-sama] - - SITE: https://github.com/pkgforge-dev/gpu-screen-recorder-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gpu-t b/apps/gpu-t new file mode 100644 index 000000000..daa9c250d --- /dev/null +++ b/apps/gpu-t @@ -0,0 +1,3 @@ +# gpu-t +A comprehensive graphics card information utility for Linux. +# SITES: https://github.com/lseurttyuu/GPU-T \ No newline at end of file diff --git a/apps/gpu-t.md b/apps/gpu-t.md deleted file mode 100644 index 638af75f3..000000000 --- a/apps/gpu-t.md +++ /dev/null @@ -1,8 +0,0 @@ -# GPU-T - - A comprehensive graphics card information utility for Linux. - - SITE: https://github.com/lseurttyuu/GPU-T - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/gpupad b/apps/gpupad new file mode 100644 index 000000000..e8daa1099 --- /dev/null +++ b/apps/gpupad @@ -0,0 +1,3 @@ +# gpupad +A flexible GLSL shader editor and IDE. +# SITES: https://github.com/houmain/gpupad \ No newline at end of file diff --git a/apps/gpupad.md b/apps/gpupad.md deleted file mode 100644 index 4e2f7c4b4..000000000 --- a/apps/gpupad.md +++ /dev/null @@ -1,8 +0,0 @@ -# GPUPAD - - A flexible GLSL shader editor and IDE. - - SITE: https://github.com/houmain/gpupad - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gqrx b/apps/gqrx new file mode 100644 index 000000000..df35012f2 --- /dev/null +++ b/apps/gqrx @@ -0,0 +1,3 @@ +# gqrx +Gqrx is an open source software defined radio receiver (SDR) powered by the GNU Radio and the Qt graphical toolkit. +# SITES: https://gqrx.dk \ No newline at end of file diff --git a/apps/gqrx.md b/apps/gqrx.md deleted file mode 100644 index c7c0bade8..000000000 --- a/apps/gqrx.md +++ /dev/null @@ -1,8 +0,0 @@ -# GQRX - - Gqrx is an open source software defined radio receiver (SDR) powered by the GNU Radio and the Qt graphical toolkit. - - SITE: https://gqrx.dk - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/grabscr b/apps/grabscr new file mode 100644 index 000000000..efa76092c --- /dev/null +++ b/apps/grabscr @@ -0,0 +1,3 @@ +# grabscr +Yet another screenshot maker +# SITES: https://github.com/thepeshka/grabscr \ No newline at end of file diff --git a/apps/grabscr.md b/apps/grabscr.md deleted file mode 100644 index 5bcbed3dd..000000000 --- a/apps/grabscr.md +++ /dev/null @@ -1,8 +0,0 @@ -# GRABSCR - - Yet another screenshot maker - - SITE: https://github.com/thepeshka/grabscr - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gradia b/apps/gradia new file mode 100644 index 000000000..c1ce72f59 --- /dev/null +++ b/apps/gradia @@ -0,0 +1,3 @@ +# gradia +Unofficial, screenshot/picture editor and uploader. +# SITES: https://github.com/pkgforge-dev/Gradia-AppImage \ No newline at end of file diff --git a/apps/gradia.md b/apps/gradia.md deleted file mode 100644 index d3c67c652..000000000 --- a/apps/gradia.md +++ /dev/null @@ -1,8 +0,0 @@ -# GRADIA - - Unofficial, screenshot/picture editor and uploader. - - SITE: https://github.com/pkgforge-dev/Gradia-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/gram-enhanced b/apps/gram-enhanced new file mode 100644 index 000000000..30da54ca8 --- /dev/null +++ b/apps/gram-enhanced @@ -0,0 +1,3 @@ +# gram-enhanced +Unofficial, a powerful and modern source code editor. +# SITES: https://github.com/pkgforge-dev/Gram-AppImage-Enhanced \ No newline at end of file diff --git a/apps/gram-enhanced.md b/apps/gram-enhanced.md deleted file mode 100644 index 46d081e9f..000000000 --- a/apps/gram-enhanced.md +++ /dev/null @@ -1,8 +0,0 @@ -# GRAM-ENHANCED - - Unofficial, a powerful and modern source code editor. - - SITE: https://github.com/pkgforge-dev/Gram-AppImage-Enhanced - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/granatier b/apps/granatier new file mode 100644 index 000000000..8c02f5cf3 --- /dev/null +++ b/apps/granatier @@ -0,0 +1,12 @@ +# granatier +Granatier is a clone of the classic Bomberman game, inspired by the work of the Clanbomber clone. + + This game is part of the KDE Games suite. + + USAGE (from the command line): + + kdegames -h (shows the list of games) + kdegames $GAME (launches the selected game) +# SCREENSHOTS: https://cdn.kde.org/screenshots/granatier/granatier.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-games-suite-appimage \ No newline at end of file diff --git a/apps/granatier.md b/apps/granatier.md deleted file mode 100644 index a6606a8e4..000000000 --- a/apps/granatier.md +++ /dev/null @@ -1,19 +0,0 @@ -# GRANATIER - - Granatier is a clone of the classic Bomberman game, inspired by the work of the Clanbomber clone. - - This game is part of the KDE Games suite. - - USAGE (from the command line): - - kdegames -h (shows the list of games) - kdegames $GAME (launches the selected game) - - ![Screenshot](https://cdn.kde.org/screenshots/granatier/granatier.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-games-suite-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/graphest b/apps/graphest new file mode 100644 index 000000000..1dd2b432d --- /dev/null +++ b/apps/graphest @@ -0,0 +1,3 @@ +# graphest +A faithful graphing calculator. +# SITES: https://github.com/Firestar-Reimu/graphest-Appimage \ No newline at end of file diff --git a/apps/graphest.md b/apps/graphest.md deleted file mode 100644 index 2f926d44d..000000000 --- a/apps/graphest.md +++ /dev/null @@ -1,8 +0,0 @@ -# GRAPHEST - - A faithful graphing calculator. - - SITE: https://github.com/Firestar-Reimu/graphest-Appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/graphql-playground b/apps/graphql-playground new file mode 100644 index 000000000..ad074db27 --- /dev/null +++ b/apps/graphql-playground @@ -0,0 +1,3 @@ +# graphql-playground +GraphQL IDE for better development workflows (GraphQL Subscriptions, interactive +# SITES: https://github.com/graphcool/graphql-playground \ No newline at end of file diff --git a/apps/graphql-playground.md b/apps/graphql-playground.md deleted file mode 100644 index 3a7e03280..000000000 --- a/apps/graphql-playground.md +++ /dev/null @@ -1,8 +0,0 @@ -# GRAPHQL-PLAYGROUND - - GraphQL IDE for better development workflows (GraphQL Subscriptions, interactive - - SITE: https://github.com/graphcool/graphql-playground - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/graphs b/apps/graphs new file mode 100644 index 000000000..d63f3909e --- /dev/null +++ b/apps/graphs @@ -0,0 +1,3 @@ +# graphs +Unofficial. A simple, yet powerful tool that allows you to plot and manipulate your data with ease. +# SITES: https://github.com/pkgforge-dev/Graphs-AppImage \ No newline at end of file diff --git a/apps/graphs.md b/apps/graphs.md deleted file mode 100644 index 6e4fd07c4..000000000 --- a/apps/graphs.md +++ /dev/null @@ -1,8 +0,0 @@ -# GRAPHS - - Unofficial. A simple, yet powerful tool that allows you to plot and manipulate your data with ease. - - SITE: https://github.com/pkgforge-dev/Graphs-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/graviton b/apps/graviton new file mode 100644 index 000000000..3be09e46d --- /dev/null +++ b/apps/graviton @@ -0,0 +1,3 @@ +# graviton +Graviton is a simple code editor. +# SITES: https://github.com/Graviton-Code-Editor/Graviton-App \ No newline at end of file diff --git a/apps/graviton.md b/apps/graviton.md deleted file mode 100644 index 9da338093..000000000 --- a/apps/graviton.md +++ /dev/null @@ -1,8 +0,0 @@ -# GRAVITON - - Graviton is a simple code editor. - - SITE: https://github.com/Graviton-Code-Editor/Graviton-App - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/greenlight b/apps/greenlight new file mode 100644 index 000000000..57a4747b2 --- /dev/null +++ b/apps/greenlight @@ -0,0 +1,3 @@ +# greenlight +Greenlight is an open-source client for xCloud and Xbox home streaming made in Typescript. +# SITES: https://github.com/unknownskl/greenlight \ No newline at end of file diff --git a/apps/greenlight.md b/apps/greenlight.md deleted file mode 100644 index 051f46a58..000000000 --- a/apps/greenlight.md +++ /dev/null @@ -1,8 +0,0 @@ -# GREENLIGHT - - Greenlight is an open-source client for xCloud and Xbox home streaming made in Typescript. - - SITE: https://github.com/unknownskl/greenlight - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/grep b/apps/grep new file mode 100644 index 000000000..bb46b1130 --- /dev/null +++ b/apps/grep @@ -0,0 +1,3 @@ +# grep +A string search utility. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/grep.md b/apps/grep.md deleted file mode 100644 index 761e8999a..000000000 --- a/apps/grep.md +++ /dev/null @@ -1,8 +0,0 @@ -# GREP - - A string search utility. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/gridcoin-research b/apps/gridcoin-research new file mode 100644 index 000000000..13893b06c --- /dev/null +++ b/apps/gridcoin-research @@ -0,0 +1,3 @@ +# gridcoin-research +POS-based cryptocurrency that rewards users for participating on the BOINC network. +# SITES: https://github.com/gridcoin-community/Gridcoin-Research \ No newline at end of file diff --git a/apps/gridcoin-research.md b/apps/gridcoin-research.md deleted file mode 100644 index d56d50b6f..000000000 --- a/apps/gridcoin-research.md +++ /dev/null @@ -1,8 +0,0 @@ -# GRIDCOIN-RESEARCH - - POS-based cryptocurrency that rewards users for participating on the BOINC network. - - SITE: https://github.com/gridcoin-community/Gridcoin-Research - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gridea b/apps/gridea new file mode 100644 index 000000000..ecde932eb --- /dev/null +++ b/apps/gridea @@ -0,0 +1,3 @@ +# gridea +A static blog writing client (一个静态博客写作客户端) +# SITES: https://open.gridea.dev/ \ No newline at end of file diff --git a/apps/gridea.md b/apps/gridea.md deleted file mode 100644 index 3bbcd503e..000000000 --- a/apps/gridea.md +++ /dev/null @@ -1,8 +0,0 @@ -# GRIDEA - - A static blog writing client (一个静态博客写作客户端) - - SITE: https://open.gridea.dev/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gridix b/apps/gridix new file mode 100644 index 000000000..4714027f9 --- /dev/null +++ b/apps/gridix @@ -0,0 +1,3 @@ +# gridix +A simple, fast, and secure cross-platform database management tool with Helix or Vim-style keybindings. +# SITES: https://github.com/MCB-SMART-BOY/Gridix \ No newline at end of file diff --git a/apps/gridix.md b/apps/gridix.md deleted file mode 100644 index 0e8e547c8..000000000 --- a/apps/gridix.md +++ /dev/null @@ -1,8 +0,0 @@ -# GRIDIX - - A simple, fast, and secure cross-platform database management tool with Helix or Vim-style keybindings. - - SITE: https://github.com/MCB-SMART-BOY/Gridix - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/gridplayer b/apps/gridplayer new file mode 100644 index 000000000..6931aa339 --- /dev/null +++ b/apps/gridplayer @@ -0,0 +1,3 @@ +# gridplayer +Play videos side-by-side +# SITES: https://github.com/vzhd1701/gridplayer \ No newline at end of file diff --git a/apps/gridplayer.md b/apps/gridplayer.md deleted file mode 100644 index 208440e5f..000000000 --- a/apps/gridplayer.md +++ /dev/null @@ -1,8 +0,0 @@ -# GRIDPLAYER - - Play videos side-by-side - - SITE: https://github.com/vzhd1701/gridplayer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gridsync b/apps/gridsync new file mode 100644 index 000000000..b96403bd4 --- /dev/null +++ b/apps/gridsync @@ -0,0 +1,3 @@ +# gridsync +Synchronize local directories with Tahoe-LAFS storage grids +# SITES: https://github.com/gridsync/gridsync \ No newline at end of file diff --git a/apps/gridsync.md b/apps/gridsync.md deleted file mode 100644 index aaf4ec30c..000000000 --- a/apps/gridsync.md +++ /dev/null @@ -1,8 +0,0 @@ -# GRIDSYNC - - Synchronize local directories with Tahoe-LAFS storage grids - - SITE: https://github.com/gridsync/gridsync - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/grinplusplus b/apps/grinplusplus new file mode 100644 index 000000000..99b51ba2c --- /dev/null +++ b/apps/grinplusplus @@ -0,0 +1,3 @@ +# grinplusplus +Grin++ is a C++ Grin Node & Wallet For Windows, Mac OS X, & Linux +# SITES: https://github.com/GrinPlusPlus/GrinPlusPlus \ No newline at end of file diff --git a/apps/grinplusplus.md b/apps/grinplusplus.md deleted file mode 100644 index a5fedba72..000000000 --- a/apps/grinplusplus.md +++ /dev/null @@ -1,8 +0,0 @@ -# GRINPLUSPLUS - - Grin++ is a C++ Grin Node & Wallet For Windows, Mac OS X, & Linux - - SITE: https://github.com/GrinPlusPlus/GrinPlusPlus - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/grist-desktop b/apps/grist-desktop new file mode 100644 index 000000000..b410018ce --- /dev/null +++ b/apps/grist-desktop @@ -0,0 +1,3 @@ +# grist-desktop +Desktop Grist, packaged with Electron. +# SITES: https://github.com/gristlabs/grist-desktop \ No newline at end of file diff --git a/apps/grist-desktop.md b/apps/grist-desktop.md deleted file mode 100644 index ca7101d69..000000000 --- a/apps/grist-desktop.md +++ /dev/null @@ -1,8 +0,0 @@ -# GRIST-DESKTOP - - Desktop Grist, packaged with Electron. - - SITE: https://github.com/gristlabs/grist-desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gron b/apps/gron new file mode 100644 index 000000000..ee4917808 --- /dev/null +++ b/apps/gron @@ -0,0 +1,3 @@ +# gron +Make JSON greppable! Transform JSON into discrete assignments to grep. +# SITES: https://github.com/tomnomnom/gron \ No newline at end of file diff --git a/apps/gron.awk b/apps/gron.awk new file mode 100644 index 000000000..91b4ee6cd --- /dev/null +++ b/apps/gron.awk @@ -0,0 +1,3 @@ +# gron.awk +True JSON parser in pure Awk. Fast with Gawk/Mawk/GoAWK. +# SITES: https://github.com/xonixx/gron.awk \ No newline at end of file diff --git a/apps/gron.awk.md b/apps/gron.awk.md deleted file mode 100644 index 112a3c2d0..000000000 --- a/apps/gron.awk.md +++ /dev/null @@ -1,8 +0,0 @@ -# GRON.AWK - - True JSON parser in pure Awk. Fast with Gawk/Mawk/GoAWK. - - SITE: https://github.com/xonixx/gron.awk - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gron.md b/apps/gron.md deleted file mode 100644 index 7efbe4ca4..000000000 --- a/apps/gron.md +++ /dev/null @@ -1,8 +0,0 @@ -# GRON - - Make JSON greppable! Transform JSON into discrete assignments to grep. - - SITE: https://github.com/tomnomnom/gron - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/groot b/apps/groot new file mode 100644 index 000000000..aadddf1c8 --- /dev/null +++ b/apps/groot @@ -0,0 +1,3 @@ +# groot +Groot is a Graphical Editor, written in C++ and Qt, to create BehaviorTrees. +# SITES: https://github.com/BehaviorTree/Groot \ No newline at end of file diff --git a/apps/groot.md b/apps/groot.md deleted file mode 100644 index 6bea78ca1..000000000 --- a/apps/groot.md +++ /dev/null @@ -1,8 +0,0 @@ -# GROOT - - Groot is a Graphical Editor, written in C++ and Qt, to create BehaviorTrees. - - SITE: https://github.com/BehaviorTree/Groot - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/groups b/apps/groups new file mode 100644 index 000000000..5582116a4 --- /dev/null +++ b/apps/groups @@ -0,0 +1,4 @@ +# groups + Print the groups a user is in. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/groups.md b/apps/groups.md deleted file mode 100644 index f7a4d07c8..000000000 --- a/apps/groups.md +++ /dev/null @@ -1,8 +0,0 @@ -# GROUPS - - Print the groups a user is in. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/gsequencer b/apps/gsequencer new file mode 100644 index 000000000..187838eaf --- /dev/null +++ b/apps/gsequencer @@ -0,0 +1,3 @@ +# gsequencer +Advanced Gtk+ Sequencer is a tree based audio processing engine released under the terms of the GNU GPLv3+. It uses extensively threads, supporting LADSPA, DSSI and Lv2 plugin format. +# SITES: https://github.com/gsequencer/gsequencer \ No newline at end of file diff --git a/apps/gsequencer.md b/apps/gsequencer.md deleted file mode 100644 index 33533c26f..000000000 --- a/apps/gsequencer.md +++ /dev/null @@ -1,8 +0,0 @@ -# GSEQUENCER - - Advanced Gtk+ Sequencer is a tree based audio processing engine released under the terms of the GNU GPLv3+. It uses extensively threads, supporting LADSPA, DSSI and Lv2 plugin format. - - SITE: https://github.com/gsequencer/gsequencer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gsubs b/apps/gsubs new file mode 100644 index 000000000..dede6f79d --- /dev/null +++ b/apps/gsubs @@ -0,0 +1,3 @@ +# gsubs +Finds you the perfect subtitle match +# SITES: https://github.com/sanjevirau/gsubs \ No newline at end of file diff --git a/apps/gsubs.md b/apps/gsubs.md deleted file mode 100644 index b9e0b99c4..000000000 --- a/apps/gsubs.md +++ /dev/null @@ -1,8 +0,0 @@ -# GSUBS - - Finds you the perfect subtitle match - - SITE: https://github.com/sanjevirau/gsubs - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gthumb b/apps/gthumb new file mode 100644 index 000000000..0b30006ae --- /dev/null +++ b/apps/gthumb @@ -0,0 +1,3 @@ +# gthumb +Unofficial, image viewer and browser. +# SITES: https://github.com/pkgforge-dev/gThumb-AppImage \ No newline at end of file diff --git a/apps/gthumb.md b/apps/gthumb.md deleted file mode 100644 index 31c767e53..000000000 --- a/apps/gthumb.md +++ /dev/null @@ -1,8 +0,0 @@ -# GTHUMB - - Unofficial, image viewer and browser. - - SITE: https://github.com/pkgforge-dev/gThumb-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/guarda b/apps/guarda new file mode 100644 index 000000000..41733faf5 --- /dev/null +++ b/apps/guarda @@ -0,0 +1,3 @@ +# guarda +A secure, easy-to-use open source multi-platform cryptocurrency wallet. +# SITES: https://github.com/guardaco/guarda-desktop-releases \ No newline at end of file diff --git a/apps/guarda.md b/apps/guarda.md deleted file mode 100644 index 9df97e2d1..000000000 --- a/apps/guarda.md +++ /dev/null @@ -1,8 +0,0 @@ -# GUARDA - - A secure, easy-to-use open source multi-platform cryptocurrency wallet. - - SITE: https://github.com/guardaco/guarda-desktop-releases - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/guglielmo b/apps/guglielmo new file mode 100644 index 000000000..779ab3de9 --- /dev/null +++ b/apps/guglielmo @@ -0,0 +1,3 @@ +# guglielmo +A FM, DAB/DAB+ decoder using Qt and C++ +# SITES: https://github.com/marcogrecopriolo/guglielmo \ No newline at end of file diff --git a/apps/guglielmo.md b/apps/guglielmo.md deleted file mode 100644 index 9708620ed..000000000 --- a/apps/guglielmo.md +++ /dev/null @@ -1,8 +0,0 @@ -# GUGLIELMO - - A FM, DAB/DAB+ decoder using Qt and C++ - - SITE: https://github.com/marcogrecopriolo/guglielmo - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/guiscrcpy b/apps/guiscrcpy new file mode 100644 index 000000000..4a92e24e0 --- /dev/null +++ b/apps/guiscrcpy @@ -0,0 +1,3 @@ +# guiscrcpy +GUI integration for the award winning open-source android screen mirroring system +# SITES: https://github.com/srevinsaju/guiscrcpy \ No newline at end of file diff --git a/apps/guiscrcpy.md b/apps/guiscrcpy.md deleted file mode 100644 index bb73d8ad5..000000000 --- a/apps/guiscrcpy.md +++ /dev/null @@ -1,8 +0,0 @@ -# GUISCRCPY - - GUI integration for the award winning open-source android screen mirroring system - - SITE: https://github.com/srevinsaju/guiscrcpy - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/guitar b/apps/guitar new file mode 100644 index 000000000..93a56513b --- /dev/null +++ b/apps/guitar @@ -0,0 +1,3 @@ +# guitar +Graphical git client +# SITES: https://github.com/soramimi/Guitar \ No newline at end of file diff --git a/apps/guitar.md b/apps/guitar.md deleted file mode 100644 index 0af95a296..000000000 --- a/apps/guitar.md +++ /dev/null @@ -1,8 +0,0 @@ -# GUITAR - - Graphical git client - - SITE: https://github.com/soramimi/Guitar - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gum b/apps/gum new file mode 100644 index 000000000..30c1366da --- /dev/null +++ b/apps/gum @@ -0,0 +1,3 @@ +# gum +A tool for glamorous shell scripts 🎀 +# SITES: https://github.com/charmbracelet/gum \ No newline at end of file diff --git a/apps/gum.md b/apps/gum.md deleted file mode 100644 index df46cf148..000000000 --- a/apps/gum.md +++ /dev/null @@ -1,8 +0,0 @@ -# GUM - - A tool for glamorous shell scripts 🎀 - - SITE: https://github.com/charmbracelet/gum - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gvim b/apps/gvim new file mode 100644 index 000000000..a8f6d80f5 --- /dev/null +++ b/apps/gvim @@ -0,0 +1,3 @@ +# gvim +Edit text files +# SITES: https://github.com/vim/vim-appimage \ No newline at end of file diff --git a/apps/gvim.md b/apps/gvim.md deleted file mode 100644 index c9adcb752..000000000 --- a/apps/gvim.md +++ /dev/null @@ -1,8 +0,0 @@ -# GVIM - - Edit text files - - SITE: https://github.com/vim/vim-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gwenview b/apps/gwenview new file mode 100644 index 000000000..023f091ed --- /dev/null +++ b/apps/gwenview @@ -0,0 +1,3 @@ +# gwenview +Unofficial. Fast and easy to use image viewer by KDE. ideal for displaying a collection of images. +# SITES: https://github.com/pkgforge-dev/Gwenview-AppImage \ No newline at end of file diff --git a/apps/gwenview.md b/apps/gwenview.md deleted file mode 100644 index 980054193..000000000 --- a/apps/gwenview.md +++ /dev/null @@ -1,8 +0,0 @@ -# GWENVIEW - - Unofficial. Fast and easy to use image viewer by KDE. ideal for displaying a collection of images. - - SITE: https://github.com/pkgforge-dev/Gwenview-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/gxc-smart-contract-ide b/apps/gxc-smart-contract-ide new file mode 100644 index 000000000..131e31ed4 --- /dev/null +++ b/apps/gxc-smart-contract-ide @@ -0,0 +1,3 @@ +# gxc-smart-contract-ide +gxchain smart contract IDE alpha +# SITES: https://github.com/gxchain/gxc-smart-contract-ide \ No newline at end of file diff --git a/apps/gxc-smart-contract-ide.md b/apps/gxc-smart-contract-ide.md deleted file mode 100644 index ad42d0122..000000000 --- a/apps/gxc-smart-contract-ide.md +++ /dev/null @@ -1,8 +0,0 @@ -# GXC-SMART-CONTRACT-IDE - - gxchain smart contract IDE alpha - - SITE: https://github.com/gxchain/gxc-smart-contract-ide - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/gyroflow b/apps/gyroflow new file mode 100644 index 000000000..f80fe31bc --- /dev/null +++ b/apps/gyroflow @@ -0,0 +1,3 @@ +# gyroflow +Video stabilization using gyroscope data +# SITES: https://gyroflow.xyz \ No newline at end of file diff --git a/apps/gyroflow.md b/apps/gyroflow.md deleted file mode 100644 index b4dde19fe..000000000 --- a/apps/gyroflow.md +++ /dev/null @@ -1,8 +0,0 @@ -# GYROFLOW - - Video stabilization using gyroscope data - - SITE: https://gyroflow.xyz - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/hades-emu b/apps/hades-emu new file mode 100644 index 000000000..6328065b7 --- /dev/null +++ b/apps/hades-emu @@ -0,0 +1,3 @@ +# hades-emu +🔥 A Nintendo Game Boy Advance Emulator +# SITES: https://github.com/hades-emu/Hades \ No newline at end of file diff --git a/apps/hades-emu.md b/apps/hades-emu.md deleted file mode 100644 index 78e0009c1..000000000 --- a/apps/hades-emu.md +++ /dev/null @@ -1,8 +0,0 @@ -# HADES-EMU - - 🔥 A Nintendo Game Boy Advance Emulator - - SITE: https://github.com/hades-emu/Hades - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/hammer b/apps/hammer new file mode 100644 index 000000000..769ecfbb8 --- /dev/null +++ b/apps/hammer @@ -0,0 +1,3 @@ +# hammer +A simple tool for building stories. +# SITES: https://github.com/Wavesonics/hammer-editor \ No newline at end of file diff --git a/apps/hammer.md b/apps/hammer.md deleted file mode 100644 index 61be2ae86..000000000 --- a/apps/hammer.md +++ /dev/null @@ -1,8 +0,0 @@ -# HAMMER - - A simple tool for building stories. - - SITE: https://github.com/Wavesonics/hammer-editor - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/hamsket b/apps/hamsket new file mode 100644 index 000000000..4736b4d54 --- /dev/null +++ b/apps/hamsket @@ -0,0 +1,3 @@ +# hamsket +Free and Open Source messaging and emailing app that combines common web applications into one. +# SITES: https://github.com/TheGoddessInari/hamsket \ No newline at end of file diff --git a/apps/hamsket.md b/apps/hamsket.md deleted file mode 100644 index e5fd6f197..000000000 --- a/apps/hamsket.md +++ /dev/null @@ -1,8 +0,0 @@ -# HAMSKET - - Free and Open Source messaging and emailing app that combines common web applications into one. - - SITE: https://github.com/TheGoddessInari/hamsket - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/handbrake b/apps/handbrake new file mode 100644 index 000000000..f39e88568 --- /dev/null +++ b/apps/handbrake @@ -0,0 +1,7 @@ +# handbrake +HandBrake is an open-source multiplatform video transcoder. + + This is the unofficial AppImage built on top of JuNest, the lightweight Arch Linux based distro that runs on top of any other Linux distro. +# SCREENSHOTS: https://user-images.githubusercontent.com/88724353/236652385-7bbc09a5-81dd-49b4-912f-e542c9ca2e51.jpg +# SITES: https://handbrake.fr +# SOURCES: https://github.com/ivan-hc/Handbrake-appimage \ No newline at end of file diff --git a/apps/handbrake.md b/apps/handbrake.md deleted file mode 100644 index 63ccb003b..000000000 --- a/apps/handbrake.md +++ /dev/null @@ -1,14 +0,0 @@ -# HANDBRAKE - - HandBrake is an open-source multiplatform video transcoder. - - This is the unofficial AppImage built on top of JuNest, the lightweight Arch Linux based distro that runs on top of any other Linux distro. - - ![handbrake-1-1024x655](https://user-images.githubusercontent.com/88724353/236652385-7bbc09a5-81dd-49b4-912f-e542c9ca2e51.jpg) - - SITE: https://handbrake.fr - - APPIMAGE: https://github.com/ivan-hc/Handbrake-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/handlr b/apps/handlr new file mode 100644 index 000000000..576892a8d --- /dev/null +++ b/apps/handlr @@ -0,0 +1,3 @@ +# handlr +Fork of handlr with support for regex. A better xdg-utils. +# SITES: https://github.com/Anomalocaridid/handlr-regex \ No newline at end of file diff --git a/apps/handlr.md b/apps/handlr.md deleted file mode 100644 index df9793fa7..000000000 --- a/apps/handlr.md +++ /dev/null @@ -1,8 +0,0 @@ -# HANDLR - - Fork of handlr with support for regex. A better xdg-utils. - - SITE: https://github.com/Anomalocaridid/handlr-regex - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/handy b/apps/handy new file mode 100644 index 000000000..beb9c31cb --- /dev/null +++ b/apps/handy @@ -0,0 +1,3 @@ +# handy +A free, open source, and extensible speech-to-text application that works completely offline. +# SITES: https://github.com/cjpais/Handy \ No newline at end of file diff --git a/apps/handy.md b/apps/handy.md deleted file mode 100644 index a68104b44..000000000 --- a/apps/handy.md +++ /dev/null @@ -1,8 +0,0 @@ -# HANDY - - A free, open source, and extensible speech-to-text application that works completely offline. - - SITE: https://github.com/cjpais/Handy - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/hangar b/apps/hangar new file mode 100644 index 000000000..fd64e47f4 --- /dev/null +++ b/apps/hangar @@ -0,0 +1,3 @@ +# hangar +A native Bluesky client for Linux, built with Rust, GTK4, and Libadwaita. +# SITES: https://github.com/sethcottle/hangar \ No newline at end of file diff --git a/apps/hangar.md b/apps/hangar.md deleted file mode 100644 index 6f6293fc2..000000000 --- a/apps/hangar.md +++ /dev/null @@ -1,8 +0,0 @@ -# HANGAR - - A native Bluesky client for Linux, built with Rust, GTK4, and Libadwaita. - - SITE: https://github.com/sethcottle/hangar - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/hapee b/apps/hapee new file mode 100644 index 000000000..2887393b8 --- /dev/null +++ b/apps/hapee @@ -0,0 +1,3 @@ +# hapee +Best cross-platform downloader ever +# SITES: https://github.com/hugetiny/Hapee \ No newline at end of file diff --git a/apps/hapee.md b/apps/hapee.md deleted file mode 100644 index 685f59ae7..000000000 --- a/apps/hapee.md +++ /dev/null @@ -1,8 +0,0 @@ -# HAPEE - - Best cross-platform downloader ever - - SITE: https://github.com/hugetiny/Hapee - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/harmonoid b/apps/harmonoid new file mode 100644 index 000000000..b95a3a184 --- /dev/null +++ b/apps/harmonoid @@ -0,0 +1,3 @@ +# harmonoid +Plays & manages your music library. Looks beautiful & juicy. Playlists, visuals, synced lyrics, pitch shift, volume boost & more. +# SITES: https://harmonoid.com \ No newline at end of file diff --git a/apps/harmonoid.md b/apps/harmonoid.md deleted file mode 100644 index 5748c0c3d..000000000 --- a/apps/harmonoid.md +++ /dev/null @@ -1,8 +0,0 @@ -# HARMONOID - - Plays & manages your music library. Looks beautiful & juicy. Playlists, visuals, synced lyrics, pitch shift, volume boost & more. - - SITE: https://harmonoid.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/haruna b/apps/haruna new file mode 100644 index 000000000..d60fec331 --- /dev/null +++ b/apps/haruna @@ -0,0 +1,3 @@ +# haruna +Unofficial, an open source media player built with Qt/QML and libmpv. +# SITES: https://github.com/pkgforge-dev/Haruna-AppImage \ No newline at end of file diff --git a/apps/haruna.md b/apps/haruna.md deleted file mode 100644 index 2363558fc..000000000 --- a/apps/haruna.md +++ /dev/null @@ -1,8 +0,0 @@ -# HARUNA - - Unofficial, an open source media player built with Qt/QML and libmpv. - - SITE: https://github.com/pkgforge-dev/Haruna-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/hascard b/apps/hascard new file mode 100644 index 000000000..4205eaf26 --- /dev/null +++ b/apps/hascard @@ -0,0 +1,3 @@ +# hascard +flashcard TUI with markdown cards +# SITES: https://github.com/Yvee1/hascard \ No newline at end of file diff --git a/apps/hascard.md b/apps/hascard.md deleted file mode 100644 index 553cae99a..000000000 --- a/apps/hascard.md +++ /dev/null @@ -1,8 +0,0 @@ -# HASCARD - - flashcard TUI with markdown cards - - SITE: https://github.com/Yvee1/hascard - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/hashsum b/apps/hashsum new file mode 100644 index 000000000..93e2d1365 --- /dev/null +++ b/apps/hashsum @@ -0,0 +1,3 @@ +# hashsum +A universal tool for finding file duplicates and modified files. +# SITES: https://gitlab.com/posktomten/hashsum \ No newline at end of file diff --git a/apps/hashsum.md b/apps/hashsum.md deleted file mode 100644 index c69947d36..000000000 --- a/apps/hashsum.md +++ /dev/null @@ -1,8 +0,0 @@ -# HASHSUM - - A universal tool for finding file duplicates and modified files. - - SITE: https://gitlab.com/posktomten/hashsum - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/hastyheroes b/apps/hastyheroes new file mode 100644 index 000000000..6cffe1880 --- /dev/null +++ b/apps/hastyheroes @@ -0,0 +1,3 @@ +# hastyheroes +An endless 2D jumping game, select a avatar and start playing +# SITES: https://github.com/Aveek-Saha/HastyHeroes \ No newline at end of file diff --git a/apps/hastyheroes.md b/apps/hastyheroes.md deleted file mode 100644 index b0b8a2d37..000000000 --- a/apps/hastyheroes.md +++ /dev/null @@ -1,8 +0,0 @@ -# HASTYHEROES - - An endless 2D jumping game, select a avatar and start playing - - SITE: https://github.com/Aveek-Saha/HastyHeroes - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/hatari b/apps/hatari new file mode 100644 index 000000000..af5bdae55 --- /dev/null +++ b/apps/hatari @@ -0,0 +1,3 @@ +# hatari +Unofficial, an Atari ST and STE emulator. +# SITES: https://github.com/pkgforge-dev/Hatari-AppImage \ No newline at end of file diff --git a/apps/hatari.md b/apps/hatari.md deleted file mode 100644 index e884e602f..000000000 --- a/apps/hatari.md +++ /dev/null @@ -1,8 +0,0 @@ -# HATARI - - Unofficial, an Atari ST and STE emulator. - - SITE: https://github.com/pkgforge-dev/Hatari-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/haveno-reto b/apps/haveno-reto new file mode 100644 index 000000000..f725115f2 --- /dev/null +++ b/apps/haveno-reto @@ -0,0 +1,3 @@ +# haveno-reto +Decentralized P2P exchange built on Monero and Tor. +# SITES: https://github.com/retoaccess1/haveno-reto \ No newline at end of file diff --git a/apps/haveno-reto.md b/apps/haveno-reto.md deleted file mode 100644 index 84ba25e8b..000000000 --- a/apps/haveno-reto.md +++ /dev/null @@ -1,8 +0,0 @@ -# HAVENO-RETO - - Decentralized P2P exchange built on Monero and Tor. - - SITE: https://github.com/retoaccess1/haveno-reto - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/hctl b/apps/hctl new file mode 100644 index 000000000..92f40cc5a --- /dev/null +++ b/apps/hctl @@ -0,0 +1,3 @@ +# hctl +A tool to control your Home Assistant devices from the command-line. +# SITES: https://github.com/xx4h/hctl \ No newline at end of file diff --git a/apps/hctl.md b/apps/hctl.md deleted file mode 100644 index dd87ef747..000000000 --- a/apps/hctl.md +++ /dev/null @@ -1,8 +0,0 @@ -# HCTL - - A tool to control your Home Assistant devices from the command-line. - - SITE: https://github.com/xx4h/hctl - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/hd b/apps/hd new file mode 100644 index 000000000..f4bbe0d38 --- /dev/null +++ b/apps/hd @@ -0,0 +1,4 @@ +# hd + Small hex dumper utility (with optional HexII output). This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/hd.md b/apps/hd.md deleted file mode 100644 index 04d6a3705..000000000 --- a/apps/hd.md +++ /dev/null @@ -1,8 +0,0 @@ -# HD - - Small hex dumper utility (with optional HexII output). This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/hdict b/apps/hdict new file mode 100644 index 000000000..a2de96e74 --- /dev/null +++ b/apps/hdict @@ -0,0 +1,3 @@ +# hdict +Offline dictionary reader for StarDict, Slob, Mdict and Dictd dictionaries. +# SITES: https://github.com/drdhaval2785/hdict \ No newline at end of file diff --git a/apps/hdict.md b/apps/hdict.md deleted file mode 100644 index 07978579f..000000000 --- a/apps/hdict.md +++ /dev/null @@ -1,8 +0,0 @@ -# HDICT - - Offline dictionary reader for StarDict, Slob, Mdict and Dictd dictionaries. - - SITE: https://github.com/drdhaval2785/hdict - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/hdrmerge b/apps/hdrmerge new file mode 100644 index 000000000..f567eca23 --- /dev/null +++ b/apps/hdrmerge @@ -0,0 +1,3 @@ +# hdrmerge +Merge several raw images into a single DNG raw image with high dynamic +# SITES: https://github.com/jcelaya/hdrmerge \ No newline at end of file diff --git a/apps/hdrmerge.md b/apps/hdrmerge.md deleted file mode 100644 index 9b5cc7446..000000000 --- a/apps/hdrmerge.md +++ /dev/null @@ -1,8 +0,0 @@ -# HDRMERGE - - Merge several raw images into a single DNG raw image with high dynamic - - SITE: https://github.com/jcelaya/hdrmerge - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/head b/apps/head new file mode 100644 index 000000000..b38b479a4 --- /dev/null +++ b/apps/head @@ -0,0 +1,3 @@ +# head +Output the first part of files. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/head.md b/apps/head.md deleted file mode 100644 index 15601bc45..000000000 --- a/apps/head.md +++ /dev/null @@ -1,8 +0,0 @@ -# HEAD - - Output the first part of files. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/heat1d b/apps/heat1d new file mode 100644 index 000000000..0bacb6489 --- /dev/null +++ b/apps/heat1d @@ -0,0 +1,8 @@ +# heat1d +CRITERIA 1D is a one-dimensional agro-hydrological model. It includes soil water fluxes, crop development and water needs, a GIS interface (CRITERIA GEO) for geographical simulations and tools to manage crop and soil parameters. + + The software is written in C++ using Qt libraries, so cross-platform building is possible (Windows, Linux, MacOS). + + HEAT1D is a graphical interface for testing the soilFluxex3D library in a 1D domain. Users can set fixed or variable atmospheric boundary conditions and soil parameters. Output graph results include soil temperature, soil water content, heat fluxes (diffusive and latent), liquid (isothermal and thermal) and vapor (isothermal and thermal) water fluxes. +# SCREENSHOTS: https://github.com/ARPA-SIMC/CRITERIA1D/raw/master/DOC/img/heat1D.png +# SITES: https://github.com/ARPA-SIMC/CRITERIA1D \ No newline at end of file diff --git a/apps/heat1d.md b/apps/heat1d.md deleted file mode 100644 index 9ff048dbb..000000000 --- a/apps/heat1d.md +++ /dev/null @@ -1,14 +0,0 @@ -# HEAT1D - - CRITERIA 1D is a one-dimensional agro-hydrological model. It includes soil water fluxes, crop development and water needs, a GIS interface (CRITERIA GEO) for geographical simulations and tools to manage crop and soil parameters. - - The software is written in C++ using Qt libraries, so cross-platform building is possible (Windows, Linux, MacOS). - - HEAT1D is a graphical interface for testing the soilFluxex3D library in a 1D domain. Users can set fixed or variable atmospheric boundary conditions and soil parameters. Output graph results include soil temperature, soil water content, heat fluxes (diffusive and latent), liquid (isothermal and thermal) and vapor (isothermal and thermal) water fluxes. - - ![Screenshot](https://github.com/ARPA-SIMC/CRITERIA1D/raw/master/DOC/img/heat1D.png) - - SITE: https://github.com/ARPA-SIMC/CRITERIA1D - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/heimer b/apps/heimer new file mode 100644 index 000000000..a4c710691 --- /dev/null +++ b/apps/heimer @@ -0,0 +1,3 @@ +# heimer +Heimer is a simple cross-platform mind map, diagram, and note-taking tool written in Qt. +# SITES: https://github.com/juzzlin/Heimer \ No newline at end of file diff --git a/apps/heimer.md b/apps/heimer.md deleted file mode 100644 index 05c49f188..000000000 --- a/apps/heimer.md +++ /dev/null @@ -1,8 +0,0 @@ -# HEIMER - - Heimer is a simple cross-platform mind map, diagram, and note-taking tool written in Qt. - - SITE: https://github.com/juzzlin/Heimer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/helio b/apps/helio new file mode 100644 index 000000000..fa1d703bb --- /dev/null +++ b/apps/helio @@ -0,0 +1,3 @@ +# helio +One music sequencer for all major platforms, desktop and mobile. +# SITES: https://helio.fm \ No newline at end of file diff --git a/apps/helio.md b/apps/helio.md deleted file mode 100644 index 02e69d4a0..000000000 --- a/apps/helio.md +++ /dev/null @@ -1,8 +0,0 @@ -# HELIO - - One music sequencer for all major platforms, desktop and mobile. - - SITE: https://helio.fm - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/helion b/apps/helion new file mode 100644 index 000000000..70b4c7a5c --- /dev/null +++ b/apps/helion @@ -0,0 +1,3 @@ +# helion +A modern fast paced Doom FPS engine. +# SITES: https://github.com/Helion-Engine/Helion \ No newline at end of file diff --git a/apps/helion.md b/apps/helion.md deleted file mode 100644 index c470f2d29..000000000 --- a/apps/helion.md +++ /dev/null @@ -1,8 +0,0 @@ -# HELION - - A modern fast paced Doom FPS engine. - - SITE: https://github.com/Helion-Engine/Helion - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/helioslauncher b/apps/helioslauncher new file mode 100644 index 000000000..2e45bb550 --- /dev/null +++ b/apps/helioslauncher @@ -0,0 +1,3 @@ +# helioslauncher +Custom launcher for modded minecraft written in Electron and Node.js +# SITES: https://github.com/dscalzi/HeliosLauncher \ No newline at end of file diff --git a/apps/helioslauncher.md b/apps/helioslauncher.md deleted file mode 100644 index b9122764a..000000000 --- a/apps/helioslauncher.md +++ /dev/null @@ -1,8 +0,0 @@ -# HELIOSLAUNCHER - - Custom launcher for modded minecraft written in Electron and Node.js - - SITE: https://github.com/dscalzi/HeliosLauncher - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/helium b/apps/helium new file mode 100644 index 000000000..2dc797a36 --- /dev/null +++ b/apps/helium @@ -0,0 +1,3 @@ +# helium +Private, fast, and honest Chromium-based web browser made for people. +# SITES: https://github.com/imputnet/helium-linux \ No newline at end of file diff --git a/apps/helium-browser-enhanced b/apps/helium-browser-enhanced new file mode 100644 index 000000000..8e852d978 --- /dev/null +++ b/apps/helium-browser-enhanced @@ -0,0 +1,4 @@ +# helium-browser-enhanced + About Unofficial AppImage of Helium. +# SITES: https://github.com/pkgforge-dev/helium-browser-appimage-enhanced +# SOURCES: https://github.com/pkgforge-dev/helium-browser-appimage-enhanced \ No newline at end of file diff --git a/apps/helium-browser-enhanced.md b/apps/helium-browser-enhanced.md deleted file mode 100644 index 0616cce2b..000000000 --- a/apps/helium-browser-enhanced.md +++ /dev/null @@ -1,8 +0,0 @@ -# HELIUM-BROWSER-ENHANCED - - About Unofficial AppImage of Helium. - - SITE: https://github.com/pkgforge-dev/helium-browser-appimage-enhanced - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/helium.md b/apps/helium.md deleted file mode 100644 index 94394af5f..000000000 --- a/apps/helium.md +++ /dev/null @@ -1,8 +0,0 @@ -# HELIUM - - Private, fast, and honest Chromium-based web browser made for people. - - SITE: https://github.com/imputnet/helium-linux - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/helix b/apps/helix new file mode 100644 index 000000000..bcb188232 --- /dev/null +++ b/apps/helix @@ -0,0 +1,3 @@ +# helix +A post-modern modal text editor. +# SITES: https://github.com/helix-editor/helix \ No newline at end of file diff --git a/apps/helix.md b/apps/helix.md deleted file mode 100644 index 1580aa719..000000000 --- a/apps/helix.md +++ /dev/null @@ -1,8 +0,0 @@ -# HELIX - - A post-modern modal text editor. - - SITE: https://github.com/helix-editor/helix - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/helixnotes b/apps/helixnotes new file mode 100644 index 000000000..ff0551c02 --- /dev/null +++ b/apps/helixnotes @@ -0,0 +1,3 @@ +# helixnotes +A local markdown note-taking app built with Tauri, SvelteKit, and Rust. +# SITES: https://helixnotes.com \ No newline at end of file diff --git a/apps/helixnotes.md b/apps/helixnotes.md deleted file mode 100644 index 3327d077e..000000000 --- a/apps/helixnotes.md +++ /dev/null @@ -1,8 +0,0 @@ -# HELIXNOTES - - A local markdown note-taking app built with Tauri, SvelteKit, and Rust. - - SITE: https://helixnotes.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/henson b/apps/henson new file mode 100644 index 000000000..93caa79ca --- /dev/null +++ b/apps/henson @@ -0,0 +1,3 @@ +# henson +A puppet manager for NationStates. +# SITES: https://github.com/NotAName320/Henson \ No newline at end of file diff --git a/apps/henson.md b/apps/henson.md deleted file mode 100644 index 8924b9c61..000000000 --- a/apps/henson.md +++ /dev/null @@ -1,8 +0,0 @@ -# HENSON - - A puppet manager for NationStates. - - SITE: https://github.com/NotAName320/Henson - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/hermesmessenger b/apps/hermesmessenger new file mode 100644 index 000000000..17f8fa978 --- /dev/null +++ b/apps/hermesmessenger @@ -0,0 +1,3 @@ +# hermesmessenger +Desktop client version of the Hermes Messenger +# SITES: https://github.com/HermesMessenger/HermesDesktop \ No newline at end of file diff --git a/apps/hermesmessenger.md b/apps/hermesmessenger.md deleted file mode 100644 index 122e87406..000000000 --- a/apps/hermesmessenger.md +++ /dev/null @@ -1,8 +0,0 @@ -# HERMESMESSENGER - - Desktop client version of the Hermes Messenger - - SITE: https://github.com/HermesMessenger/HermesDesktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/hero-display b/apps/hero-display new file mode 100644 index 000000000..bd131c4dc --- /dev/null +++ b/apps/hero-display @@ -0,0 +1,3 @@ +# hero-display +App for display on HERO robot +# SITES: https://github.com/tue-robotics/hero-display \ No newline at end of file diff --git a/apps/hero-display.md b/apps/hero-display.md deleted file mode 100644 index 1869516df..000000000 --- a/apps/hero-display.md +++ /dev/null @@ -1,8 +0,0 @@ -# HERO-DISPLAY - - App for display on HERO robot - - SITE: https://github.com/tue-robotics/hero-display - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/heroic-games-launcher b/apps/heroic-games-launcher new file mode 100644 index 000000000..88168bf61 --- /dev/null +++ b/apps/heroic-games-launcher @@ -0,0 +1,3 @@ +# heroic-games-launcher +A Native GOG and Epic Games Launcher for Linux, Windows and Mac. +# SITES: https://github.com/Heroic-Games-Launcher/HeroicGamesLauncher \ No newline at end of file diff --git a/apps/heroic-games-launcher.md b/apps/heroic-games-launcher.md deleted file mode 100644 index 7a6bfb217..000000000 --- a/apps/heroic-games-launcher.md +++ /dev/null @@ -1,8 +0,0 @@ -# HEROIC-GAMES-LAUNCHER - - A Native GOG and Epic Games Launcher for Linux, Windows and Mac. - - SITE: https://github.com/Heroic-Games-Launcher/HeroicGamesLauncher - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/hexdump b/apps/hexdump new file mode 100644 index 000000000..49900057f --- /dev/null +++ b/apps/hexdump @@ -0,0 +1,4 @@ +# hexdump + Display file contents in hexadecimal format. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/hexdump.md b/apps/hexdump.md deleted file mode 100644 index ad744d5db..000000000 --- a/apps/hexdump.md +++ /dev/null @@ -1,8 +0,0 @@ -# HEXDUMP - - Display file contents in hexadecimal format. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/hexinator b/apps/hexinator new file mode 100644 index 000000000..c23453188 --- /dev/null +++ b/apps/hexinator @@ -0,0 +1,3 @@ +# hexinator +Hexinator is a hex editor that is specialized on reverse engineering and binary file analysis. +# SITES: : https://hexinator.com \ No newline at end of file diff --git a/apps/hexinator.md b/apps/hexinator.md deleted file mode 100644 index c17457c55..000000000 --- a/apps/hexinator.md +++ /dev/null @@ -1,8 +0,0 @@ -# HEXINATOR - - Hexinator is a hex editor that is specialized on reverse engineering and binary file analysis. - - SITE: : https://hexinator.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/hexoclient b/apps/hexoclient new file mode 100644 index 000000000..320ea854e --- /dev/null +++ b/apps/hexoclient @@ -0,0 +1,3 @@ +# hexoclient +hexo-client: A cross-platform hexo client, build on electron. +# SITES: https://github.com/gaoyoubo/hexo-client \ No newline at end of file diff --git a/apps/hexoclient.md b/apps/hexoclient.md deleted file mode 100644 index 6eb0eae44..000000000 --- a/apps/hexoclient.md +++ /dev/null @@ -1,8 +0,0 @@ -# HEXOCLIENT - - hexo-client: A cross-platform hexo client, build on electron. - - SITE: https://github.com/gaoyoubo/hexo-client - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/hexoeditor b/apps/hexoeditor new file mode 100644 index 000000000..8f0346520 --- /dev/null +++ b/apps/hexoeditor @@ -0,0 +1,3 @@ +# hexoeditor +This is markdown editor for Hexo built with Electron. +# SITES: https://github.com/zhuzhuyule/HexoEditor \ No newline at end of file diff --git a/apps/hexoeditor.md b/apps/hexoeditor.md deleted file mode 100644 index 362d8a5dd..000000000 --- a/apps/hexoeditor.md +++ /dev/null @@ -1,8 +0,0 @@ -# HEXOEDITOR - - This is markdown editor for Hexo built with Electron. - - SITE: https://github.com/zhuzhuyule/HexoEditor - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/heynote b/apps/heynote new file mode 100644 index 000000000..93d64aa25 --- /dev/null +++ b/apps/heynote @@ -0,0 +1,3 @@ +# heynote +A dedicated scratchpad for developers. +# SITES: https://github.com/heyman/heynote \ No newline at end of file diff --git a/apps/heynote.md b/apps/heynote.md deleted file mode 100644 index 506d44d0f..000000000 --- a/apps/heynote.md +++ /dev/null @@ -1,8 +0,0 @@ -# HEYNOTE - - A dedicated scratchpad for developers. - - SITE: https://github.com/heyman/heynote - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/hiddify-next b/apps/hiddify-next new file mode 100644 index 000000000..cbcd95f2f --- /dev/null +++ b/apps/hiddify-next @@ -0,0 +1,3 @@ +# hiddify-next +Multi-platform auto-proxy client, supporting Sing-box, X-ray, TUIC, Hysteria, Reality, Trojan, SSH etc. It’s an open-source, secure and ad-free. +# SITES: https://github.com/hiddify/hiddify-next \ No newline at end of file diff --git a/apps/hiddify-next.md b/apps/hiddify-next.md deleted file mode 100644 index 999719389..000000000 --- a/apps/hiddify-next.md +++ /dev/null @@ -1,8 +0,0 @@ -# HIDDIFY-NEXT - - Multi-platform auto-proxy client, supporting Sing-box, X-ray, TUIC, Hysteria, Reality, Trojan, SSH etc. It’s an open-source, secure and ad-free. - - SITE: https://github.com/hiddify/hiddify-next - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/hide.me b/apps/hide.me new file mode 100644 index 000000000..08aff7cc7 --- /dev/null +++ b/apps/hide.me @@ -0,0 +1,3 @@ +# hide.me +Hide.me CLI VPN client for Linux +# SITES: https://github.com/eventure/hide.client.linux \ No newline at end of file diff --git a/apps/hide.me.md b/apps/hide.me.md deleted file mode 100644 index f7fc6828c..000000000 --- a/apps/hide.me.md +++ /dev/null @@ -1,8 +0,0 @@ -# HIDE.ME - - Hide.me CLI VPN client for Linux - - SITE: https://github.com/eventure/hide.client.linux - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/hidpi-fixer b/apps/hidpi-fixer new file mode 100644 index 000000000..1357eca60 --- /dev/null +++ b/apps/hidpi-fixer @@ -0,0 +1,3 @@ +# hidpi-fixer +Qt app that automates fractional scaling configuration on X11 desktops +# SITES: https://github.com/alex-spataru/HiDPI-Fixer \ No newline at end of file diff --git a/apps/hidpi-fixer.md b/apps/hidpi-fixer.md deleted file mode 100644 index f7b28fa89..000000000 --- a/apps/hidpi-fixer.md +++ /dev/null @@ -1,8 +0,0 @@ -# HIDPI-FIXER - - Qt app that automates fractional scaling configuration on X11 desktops - - SITE: https://github.com/alex-spataru/HiDPI-Fixer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/highlite b/apps/highlite new file mode 100644 index 000000000..e23d6c746 --- /dev/null +++ b/apps/highlite @@ -0,0 +1,3 @@ +# highlite +A RuneLite-esque Client for the game High Spell. +# SITES: https://github.com/Highl1te/HighliteDesktop \ No newline at end of file diff --git a/apps/highlite.md b/apps/highlite.md deleted file mode 100644 index 38f5ffdbb..000000000 --- a/apps/highlite.md +++ /dev/null @@ -1,8 +0,0 @@ -# HIGHLITE - - A RuneLite-esque Client for the game High Spell. - - SITE: https://github.com/Highl1te/HighliteDesktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/hilbish b/apps/hilbish new file mode 100644 index 000000000..b3345f4da --- /dev/null +++ b/apps/hilbish @@ -0,0 +1,3 @@ +# hilbish +🌓 The Moon-powered shell! A comfy and extensible shell for Lua fans! 🌺 ✨ +# SITES: https://github.com/Rosettea/Hilbish \ No newline at end of file diff --git a/apps/hilbish.md b/apps/hilbish.md deleted file mode 100644 index 55b3992b3..000000000 --- a/apps/hilbish.md +++ /dev/null @@ -1,8 +0,0 @@ -# HILBISH - - 🌓 The Moon-powered shell! A comfy and extensible shell for Lua fans! 🌺 ✨ - - SITE: https://github.com/Rosettea/Hilbish - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/himalaya b/apps/himalaya new file mode 100644 index 000000000..68c0d8a60 --- /dev/null +++ b/apps/himalaya @@ -0,0 +1,3 @@ +# himalaya +CLI to manage emails +# SITES: https://github.com/pimalaya/himalaya \ No newline at end of file diff --git a/apps/himalaya.md b/apps/himalaya.md deleted file mode 100644 index 2a018d364..000000000 --- a/apps/himalaya.md +++ /dev/null @@ -1,8 +0,0 @@ -# HIMALAYA - - CLI to manage emails - - SITE: https://github.com/pimalaya/himalaya - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/hmcl b/apps/hmcl new file mode 100644 index 000000000..1e84fa857 --- /dev/null +++ b/apps/hmcl @@ -0,0 +1,3 @@ +# hmcl +A Minecraft Launcher which is multi-functional, cross-platform and popular +# SITES: https://github.com/HMCL-dev/HMCL \ No newline at end of file diff --git a/apps/hmcl.md b/apps/hmcl.md deleted file mode 100644 index bb6930294..000000000 --- a/apps/hmcl.md +++ /dev/null @@ -1,8 +0,0 @@ -# HMCL - - A Minecraft Launcher which is multi-functional, cross-platform and popular - - SITE: https://github.com/HMCL-dev/HMCL - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/hostid b/apps/hostid new file mode 100644 index 000000000..32a07c842 --- /dev/null +++ b/apps/hostid @@ -0,0 +1,4 @@ +# hostid + Print the numeric identifier for the current host. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/hostid.md b/apps/hostid.md deleted file mode 100644 index 23776090a..000000000 --- a/apps/hostid.md +++ /dev/null @@ -1,8 +0,0 @@ -# HOSTID - - Print the numeric identifier for the current host. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/hotspot b/apps/hotspot new file mode 100644 index 000000000..480c9e5e5 --- /dev/null +++ b/apps/hotspot @@ -0,0 +1,3 @@ +# hotspot +The Linux perf GUI for performance analysis +# SITES: https://github.com/KDAB/hotspot \ No newline at end of file diff --git a/apps/hotspot.md b/apps/hotspot.md deleted file mode 100644 index 6a3a0f24f..000000000 --- a/apps/hotspot.md +++ /dev/null @@ -1,8 +0,0 @@ -# HOTSPOT - - The Linux perf GUI for performance analysis - - SITE: https://github.com/KDAB/hotspot - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/houdoku b/apps/houdoku new file mode 100644 index 000000000..ff700b439 --- /dev/null +++ b/apps/houdoku @@ -0,0 +1,3 @@ +# houdoku +Manga reader and library manager for the desktop. +# SITES: https://houdoku.org/ \ No newline at end of file diff --git a/apps/houdoku.md b/apps/houdoku.md deleted file mode 100644 index 8434f3737..000000000 --- a/apps/houdoku.md +++ /dev/null @@ -1,8 +0,0 @@ -# HOUDOKU - - Manga reader and library manager for the desktop. - - SITE: https://houdoku.org/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/hp-15c-simulator b/apps/hp-15c-simulator new file mode 100644 index 000000000..af9b96728 --- /dev/null +++ b/apps/hp-15c-simulator @@ -0,0 +1,3 @@ +# hp-15c-simulator +Unofficial, a simulator for the HP-15C programmable scientific RPN calculator. +# SITES: https://github.com/pkgforge-dev/HP-15C-Simulator-AppImage \ No newline at end of file diff --git a/apps/hp-15c-simulator.md b/apps/hp-15c-simulator.md deleted file mode 100644 index d25a85c27..000000000 --- a/apps/hp-15c-simulator.md +++ /dev/null @@ -1,8 +0,0 @@ -# HP-15C-SIMULATOR - - Unofficial, a simulator for the HP-15C programmable scientific RPN calculator. - - SITE: https://github.com/pkgforge-dev/HP-15C-Simulator-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/hpack b/apps/hpack new file mode 100644 index 000000000..e86d60f5b --- /dev/null +++ b/apps/hpack @@ -0,0 +1,3 @@ +# hpack +A fine tool to convert any data into C header +# SITES: https://github.com/antony-jr/hpack \ No newline at end of file diff --git a/apps/hpack.md b/apps/hpack.md deleted file mode 100644 index a718ba906..000000000 --- a/apps/hpack.md +++ /dev/null @@ -1,8 +0,0 @@ -# HPACK - - A fine tool to convert any data into C header - - SITE: https://github.com/antony-jr/hpack - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/hsinstall b/apps/hsinstall new file mode 100644 index 000000000..f7e811bfd --- /dev/null +++ b/apps/hsinstall @@ -0,0 +1,3 @@ +# hsinstall +Pack a haskell project into a deployable directory structure. +# SITES: https://github.com/dino-/hsinstall \ No newline at end of file diff --git a/apps/hsinstall.md b/apps/hsinstall.md deleted file mode 100644 index 3ea9f4ec1..000000000 --- a/apps/hsinstall.md +++ /dev/null @@ -1,8 +0,0 @@ -# HSINSTALL - - Pack a haskell project into a deployable directory structure. - - SITE: https://github.com/dino-/hsinstall - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/htmldoc b/apps/htmldoc new file mode 100644 index 000000000..6bc28a251 --- /dev/null +++ b/apps/htmldoc @@ -0,0 +1,3 @@ +# htmldoc +HTML and Markdown Conversion Software to output PostScript and PDF +# SITES: https://github.com/KurtPfeifle/htmldoc \ No newline at end of file diff --git a/apps/htmldoc.md b/apps/htmldoc.md deleted file mode 100644 index 1664e19dc..000000000 --- a/apps/htmldoc.md +++ /dev/null @@ -1,8 +0,0 @@ -# HTMLDOC - - HTML and Markdown Conversion Software to output PostScript and PDF - - SITE: https://github.com/KurtPfeifle/htmldoc - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/htop b/apps/htop new file mode 100644 index 000000000..018bd307e --- /dev/null +++ b/apps/htop @@ -0,0 +1,3 @@ +# htop +AppImage of htop. +# SITES: https://github.com/Samueru-sama/htop-AppImage \ No newline at end of file diff --git a/apps/htop.md b/apps/htop.md deleted file mode 100644 index 67697209c..000000000 --- a/apps/htop.md +++ /dev/null @@ -1,8 +0,0 @@ -# HTOP - - AppImage of htop. - - SITE: https://github.com/Samueru-sama/htop-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/httpie-desktop b/apps/httpie-desktop new file mode 100644 index 000000000..b7981d83b --- /dev/null +++ b/apps/httpie-desktop @@ -0,0 +1,3 @@ +# httpie-desktop +HTTPie for Desktop (AppImage) +# SITES: https://httpie.io/product \ No newline at end of file diff --git a/apps/httpie-desktop.md b/apps/httpie-desktop.md deleted file mode 100644 index ee6741959..000000000 --- a/apps/httpie-desktop.md +++ /dev/null @@ -1,8 +0,0 @@ -# HTTPIE-DESKTOP - - HTTPie for Desktop (AppImage) - - SITE: https://httpie.io/product - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/httptoolkit b/apps/httptoolkit new file mode 100644 index 000000000..565c138f9 --- /dev/null +++ b/apps/httptoolkit @@ -0,0 +1,3 @@ +# httptoolkit +HTTP Toolkit is an open-source tool for debugging, testing and building with HTTP. +# SITES: https://github.com/httptoolkit/httptoolkit-desktop \ No newline at end of file diff --git a/apps/httptoolkit.md b/apps/httptoolkit.md deleted file mode 100644 index d77c20564..000000000 --- a/apps/httptoolkit.md +++ /dev/null @@ -1,8 +0,0 @@ -# HTTPTOOLKIT - - HTTP Toolkit is an open-source tool for debugging, testing and building with HTTP. - - SITE: https://github.com/httptoolkit/httptoolkit-desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/hugin b/apps/hugin new file mode 100644 index 000000000..6b05ab03e --- /dev/null +++ b/apps/hugin @@ -0,0 +1,3 @@ +# hugin +Stitch photographs together +# SITES: https://github.com/aferrero2707/hugin-appimage \ No newline at end of file diff --git a/apps/hugin.md b/apps/hugin.md deleted file mode 100644 index b6e3956b3..000000000 --- a/apps/hugin.md +++ /dev/null @@ -1,8 +0,0 @@ -# HUGIN - - Stitch photographs together - - SITE: https://github.com/aferrero2707/hugin-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/hugor b/apps/hugor new file mode 100644 index 000000000..ef9b715f1 --- /dev/null +++ b/apps/hugor @@ -0,0 +1,3 @@ +# hugor +A cross-platform, multimedia interpreter for Hugo adventure games. +# SITES: https://github.com/realnc/hugor \ No newline at end of file diff --git a/apps/hugor.md b/apps/hugor.md deleted file mode 100644 index 961178784..000000000 --- a/apps/hugor.md +++ /dev/null @@ -1,8 +0,0 @@ -# HUGOR - - A cross-platform, multimedia interpreter for Hugo adventure games. - - SITE: https://github.com/realnc/hugor - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/humanlog b/apps/humanlog new file mode 100644 index 000000000..9e80fd616 --- /dev/null +++ b/apps/humanlog @@ -0,0 +1,3 @@ +# humanlog +Logs for humans to read. +# SITES: https://github.com/humanlogio/humanlog \ No newline at end of file diff --git a/apps/humanlog.md b/apps/humanlog.md deleted file mode 100644 index 073a95d30..000000000 --- a/apps/humanlog.md +++ /dev/null @@ -1,8 +0,0 @@ -# HUMANLOG - - Logs for humans to read. - - SITE: https://github.com/humanlogio/humanlog - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/huwinterpreter b/apps/huwinterpreter new file mode 100644 index 000000000..f227e78a1 --- /dev/null +++ b/apps/huwinterpreter @@ -0,0 +1,3 @@ +# huwinterpreter +HuwCode interpreter +# SITES: https://github.com/huwdp/huwinterpreter \ No newline at end of file diff --git a/apps/huwinterpreter.md b/apps/huwinterpreter.md deleted file mode 100644 index e0662eaee..000000000 --- a/apps/huwinterpreter.md +++ /dev/null @@ -1,8 +0,0 @@ -# HUWINTERPRETER - - HuwCode interpreter - - SITE: https://github.com/huwdp/huwinterpreter - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/hw-probe b/apps/hw-probe new file mode 100644 index 000000000..136bbab91 --- /dev/null +++ b/apps/hw-probe @@ -0,0 +1,3 @@ +# hw-probe +Probe for hardware and upload result to the Linux hardware database +# SITES: https://github.com/linuxhw/hw-probe \ No newline at end of file diff --git a/apps/hw-probe.md b/apps/hw-probe.md deleted file mode 100644 index 9adf55941..000000000 --- a/apps/hw-probe.md +++ /dev/null @@ -1,8 +0,0 @@ -# HW-PROBE - - Probe for hardware and upload result to the Linux hardware database - - SITE: https://github.com/linuxhw/hw-probe - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/hydra b/apps/hydra new file mode 100644 index 000000000..2c5f4aa37 --- /dev/null +++ b/apps/hydra @@ -0,0 +1,3 @@ +# hydra +Hydra is a game launcher with its own embedded bittorrent client and a self-managed repack scraper. +# SITES: https://github.com/hydralauncher/hydra \ No newline at end of file diff --git a/apps/hydra.md b/apps/hydra.md deleted file mode 100644 index c6bd2bed9..000000000 --- a/apps/hydra.md +++ /dev/null @@ -1,8 +0,0 @@ -# HYDRA - - Hydra is a game launcher with its own embedded bittorrent client and a self-managed repack scraper. - - SITE: https://github.com/hydralauncher/hydra - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/hydrogen-music b/apps/hydrogen-music new file mode 100644 index 000000000..4853ab383 --- /dev/null +++ b/apps/hydrogen-music @@ -0,0 +1,3 @@ +# hydrogen-music +The advanced drum machine for Linux, macOS, and Windows. +# SITES: https://github.com/hydrogen-music/hydrogen \ No newline at end of file diff --git a/apps/hydrogen-music.md b/apps/hydrogen-music.md deleted file mode 100644 index 32d53cf90..000000000 --- a/apps/hydrogen-music.md +++ /dev/null @@ -1,8 +0,0 @@ -# HYDROGEN-MUSIC - - The advanced drum machine for Linux, macOS, and Windows. - - SITE: https://github.com/hydrogen-music/hydrogen - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/hyper b/apps/hyper new file mode 100644 index 000000000..87fd4e4e2 --- /dev/null +++ b/apps/hyper @@ -0,0 +1,3 @@ +# hyper +A terminal built on web technologies +# SITES: https://github.com/vercel/hyper \ No newline at end of file diff --git a/apps/hyper.md b/apps/hyper.md deleted file mode 100644 index 1fce23da5..000000000 --- a/apps/hyper.md +++ /dev/null @@ -1,8 +0,0 @@ -# HYPER - - A terminal built on web technologies - - SITE: https://github.com/vercel/hyper - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/hyperdex b/apps/hyperdex new file mode 100644 index 000000000..039b3d398 --- /dev/null +++ b/apps/hyperdex @@ -0,0 +1,3 @@ +# hyperdex +BarterDEX desktop app +# SITES: https://github.com/lukechilds/hyperdex \ No newline at end of file diff --git a/apps/hyperdex.md b/apps/hyperdex.md deleted file mode 100644 index 9ea8560b3..000000000 --- a/apps/hyperdex.md +++ /dev/null @@ -1,8 +0,0 @@ -# HYPERDEX - - BarterDEX desktop app - - SITE: https://github.com/lukechilds/hyperdex - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/hyperfine b/apps/hyperfine new file mode 100644 index 000000000..6eabc9070 --- /dev/null +++ b/apps/hyperfine @@ -0,0 +1,3 @@ +# hyperfine +A command-line benchmarking tool. +# SITES: https://github.com/sharkdp/hyperfine \ No newline at end of file diff --git a/apps/hyperfine.md b/apps/hyperfine.md deleted file mode 100644 index 787df01e1..000000000 --- a/apps/hyperfine.md +++ /dev/null @@ -1,8 +0,0 @@ -# HYPERFINE - - A command-line benchmarking tool. - - SITE: https://github.com/sharkdp/hyperfine - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/hyperionide b/apps/hyperionide new file mode 100644 index 000000000..32132c9a7 --- /dev/null +++ b/apps/hyperionide @@ -0,0 +1,3 @@ +# hyperionide +Hyperion IDE for JIRA +# SITES: https://github.com/HyperionScripting/HyperionIDE \ No newline at end of file diff --git a/apps/hyperionide.md b/apps/hyperionide.md deleted file mode 100644 index 16434282b..000000000 --- a/apps/hyperionide.md +++ /dev/null @@ -1,8 +0,0 @@ -# HYPERIONIDE - - Hyperion IDE for JIRA - - SITE: https://github.com/HyperionScripting/HyperionIDE - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/hyperkeys b/apps/hyperkeys new file mode 100644 index 000000000..b8589e5f7 --- /dev/null +++ b/apps/hyperkeys @@ -0,0 +1,3 @@ +# hyperkeys +Unleash you keyboard shorcuts. +# SITES: https://hyperkeys.xureilab.com/ \ No newline at end of file diff --git a/apps/hyperkeys.md b/apps/hyperkeys.md deleted file mode 100644 index 2e58bbb33..000000000 --- a/apps/hyperkeys.md +++ /dev/null @@ -1,8 +0,0 @@ -# HYPERKEYS - - Unleash you keyboard shorcuts. - - SITE: https://hyperkeys.xureilab.com/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/hyperspace b/apps/hyperspace new file mode 100644 index 000000000..ca1e2b6b7 --- /dev/null +++ b/apps/hyperspace @@ -0,0 +1,3 @@ +# hyperspace +A fluffy client for Mastodon in React +# SITES: https://github.com/alicerunsonfedora/hyperspace \ No newline at end of file diff --git a/apps/hyperspace.md b/apps/hyperspace.md deleted file mode 100644 index 0b24d90b2..000000000 --- a/apps/hyperspace.md +++ /dev/null @@ -1,8 +0,0 @@ -# HYPERSPACE - - A fluffy client for Mastodon in React - - SITE: https://github.com/alicerunsonfedora/hyperspace - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/hypnotix b/apps/hypnotix new file mode 100644 index 000000000..999b7b9ee --- /dev/null +++ b/apps/hypnotix @@ -0,0 +1,3 @@ +# hypnotix +An IPTV streaming application with support for live TV. +# SITES: https://github.com/ivan-hc/Hypnotix-appimage \ No newline at end of file diff --git a/apps/hypnotix.md b/apps/hypnotix.md deleted file mode 100644 index b21022eb8..000000000 --- a/apps/hypnotix.md +++ /dev/null @@ -1,8 +0,0 @@ -# HYPNOTIX - - An IPTV streaming application with support for live TV. - - SITE: https://github.com/ivan-hc/Hypnotix-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/i3 b/apps/i3 new file mode 100644 index 000000000..5c8279cf3 --- /dev/null +++ b/apps/i3 @@ -0,0 +1,5 @@ +# i3 +A tiling window manager for X11. + + This it the Unofficial AppImage (built from Git). +# SITES: https://github.com/Samueru-sama/i3-AppImage \ No newline at end of file diff --git a/apps/i3-auto-layout b/apps/i3-auto-layout new file mode 100644 index 000000000..cf1ed31ec --- /dev/null +++ b/apps/i3-auto-layout @@ -0,0 +1,3 @@ +# i3-auto-layout +Automatic, optimal tiling for i3wm. Fork of dead version. +# SITES: https://github.com/pando85/i3-auto-layout \ No newline at end of file diff --git a/apps/i3-auto-layout.md b/apps/i3-auto-layout.md deleted file mode 100644 index ff6008c64..000000000 --- a/apps/i3-auto-layout.md +++ /dev/null @@ -1,8 +0,0 @@ -# I3-AUTO-LAYOUT - - Automatic, optimal tiling for i3wm. Fork of dead version. - - SITE: https://github.com/pando85/i3-auto-layout - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/i3.md b/apps/i3.md deleted file mode 100644 index ddbff88ca..000000000 --- a/apps/i3.md +++ /dev/null @@ -1,10 +0,0 @@ -# I3 - - A tiling window manager for X11. - - This it the Unofficial AppImage (built from Git). - - SITE: https://github.com/Samueru-sama/i3-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/i3lock-color b/apps/i3lock-color new file mode 100644 index 000000000..8900a375f --- /dev/null +++ b/apps/i3lock-color @@ -0,0 +1,4 @@ +# i3lock-color +The world's most popular non-default computer lockscreen. +# SCREENSHOTS: https://raw.githubusercontent.com/Raymo111/i3lock-color/master/examples/screenshot.png +# SITES: https://github.com/Raymo111/i3lock-color \ No newline at end of file diff --git a/apps/i3lock-color.md b/apps/i3lock-color.md deleted file mode 100644 index 7045ca024..000000000 --- a/apps/i3lock-color.md +++ /dev/null @@ -1,10 +0,0 @@ -# I3LOCK-COLOR - - The world's most popular non-default computer lockscreen. - - ![Screenshot](https://raw.githubusercontent.com/Raymo111/i3lock-color/master/examples/screenshot.png) - - SITE: https://github.com/Raymo111/i3lock-color - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/iagoncloudapp b/apps/iagoncloudapp new file mode 100644 index 000000000..fff3cb39c --- /dev/null +++ b/apps/iagoncloudapp @@ -0,0 +1,4 @@ +# iagoncloudapp +Iagon Cloud Application for Distributed Storage and Processing. +# SITES: https://iagon.com +# SOURCES: https://github.com/Iagonorg/Iagon-storage-node \ No newline at end of file diff --git a/apps/iagoncloudapp.md b/apps/iagoncloudapp.md deleted file mode 100644 index b22a11763..000000000 --- a/apps/iagoncloudapp.md +++ /dev/null @@ -1,10 +0,0 @@ -# IAGONCLOUDAPP - - Iagon Cloud Application for Distributed Storage and Processing. - - SITE: https://iagon.com - - SOURCE: https://github.com/Iagonorg/Iagon-storage-node - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ibus-rime b/apps/ibus-rime new file mode 100644 index 000000000..ee8fcb574 --- /dev/null +++ b/apps/ibus-rime @@ -0,0 +1,3 @@ +# ibus-rime +This project provides a packaging solution for the Zhongzhou Yun input method (ibus-rime) in AppImage format. +# SITES: https://github.com/hchunhui/ibus-rime.AppImage \ No newline at end of file diff --git a/apps/ibus-rime.md b/apps/ibus-rime.md deleted file mode 100644 index 890465f34..000000000 --- a/apps/ibus-rime.md +++ /dev/null @@ -1,8 +0,0 @@ -# IBUS-RIME - - This project provides a packaging solution for the Zhongzhou Yun input method (ibus-rime) in AppImage format. - - SITE: https://github.com/hchunhui/ibus-rime.AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/icalingua++ b/apps/icalingua++ new file mode 100644 index 000000000..5c359ab4d --- /dev/null +++ b/apps/icalingua++ @@ -0,0 +1,3 @@ +# icalingua++ +A client for QQ and more. +# SITES: https://github.com/Icalingua-plus-plus/Icalingua-plus-plus \ No newline at end of file diff --git a/apps/icalingua++.md b/apps/icalingua++.md deleted file mode 100644 index 7aaaac7e7..000000000 --- a/apps/icalingua++.md +++ /dev/null @@ -1,8 +0,0 @@ -# ICALINGUA++ - - A client for QQ and more. - - SITE: https://github.com/Icalingua-plus-plus/Icalingua-plus-plus - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/icecat b/apps/icecat new file mode 100644 index 000000000..4d46831e8 --- /dev/null +++ b/apps/icecat @@ -0,0 +1,8 @@ +# icecat +GNU IceCat is the GNU version of the Firefox browser. + + Its main advantage is an ethical one: it is entirely free software. While the Firefox source code from the Mozilla project is free software, they distribute and recommend nonfree software as plug-ins and addons. Also their trademark license imposes requirements for the distribution of modified versions that make it inconvenient to exercise freedom 3. + + This is the portable official version converted to an AppImage by our team, "Portable Linux Apps" , no additional changes have been made. +# SITES: https://www.gnu.org/software/gnuzilla +# SOURCES: https://icecatbrowser.org https://github.com/Portable-Linux-Apps/IceCat-AppImage \ No newline at end of file diff --git a/apps/icecat.md b/apps/icecat.md deleted file mode 100644 index 9ddb7ba71..000000000 --- a/apps/icecat.md +++ /dev/null @@ -1,16 +0,0 @@ -# ICECAT - - GNU IceCat is the GNU version of the Firefox browser. - - Its main advantage is an ethical one: it is entirely free software. While the Firefox source code from the Mozilla project is free software, they distribute and recommend nonfree software as plug-ins and addons. Also their trademark license imposes requirements for the distribution of modified versions that make it inconvenient to exercise freedom 3. - - This is the portable official version converted to an AppImage by our team, "Portable Linux Apps" , no additional changes have been made. - - SITE: https://www.gnu.org/software/gnuzilla - - SOURCE: https://icecatbrowser.org - - APPIMAGE: https://github.com/Portable-Linux-Apps/IceCat-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/icestudio b/apps/icestudio new file mode 100644 index 000000000..b0f9705dc --- /dev/null +++ b/apps/icestudio @@ -0,0 +1,3 @@ +# icestudio +A real gamechanger in the world of Open Source FPGAs +# SITES: https://icestudio.io/ \ No newline at end of file diff --git a/apps/icestudio.md b/apps/icestudio.md deleted file mode 100644 index 6c0739151..000000000 --- a/apps/icestudio.md +++ /dev/null @@ -1,8 +0,0 @@ -# ICESTUDIO - - A real gamechanger in the world of Open Source FPGAs - - SITE: https://icestudio.io/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/id b/apps/id new file mode 100644 index 000000000..085498c99 --- /dev/null +++ b/apps/id @@ -0,0 +1,3 @@ +# id +Print real and effective user and group IDs. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/id.md b/apps/id.md deleted file mode 100644 index 9fe6031ec..000000000 --- a/apps/id.md +++ /dev/null @@ -1,8 +0,0 @@ -# ID - - Print real and effective user and group IDs. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/identity b/apps/identity new file mode 100644 index 000000000..788119ebc --- /dev/null +++ b/apps/identity @@ -0,0 +1,3 @@ +# identity +Unofficial. Compare images and videos with one another to check for differences. +# SITES: https://github.com/pkgforge-dev/Identity-AppImage \ No newline at end of file diff --git a/apps/identity.md b/apps/identity.md deleted file mode 100644 index ccd2cb12f..000000000 --- a/apps/identity.md +++ /dev/null @@ -1,8 +0,0 @@ -# IDENTITY - - Unofficial. Compare images and videos with one another to check for differences. - - SITE: https://github.com/pkgforge-dev/Identity-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/idescriptor b/apps/idescriptor new file mode 100644 index 000000000..3b4afae7d --- /dev/null +++ b/apps/idescriptor @@ -0,0 +1,3 @@ +# idescriptor +A free, open-source, and cross-platform iDevice management tool. +# SITES: https://github.com/iDescriptor/iDescriptor \ No newline at end of file diff --git a/apps/idescriptor.md b/apps/idescriptor.md deleted file mode 100644 index 95c10fe4e..000000000 --- a/apps/idescriptor.md +++ /dev/null @@ -1,8 +0,0 @@ -# IDESCRIPTOR - - A free, open-source, and cross-platform iDevice management tool. - - SITE: https://github.com/iDescriptor/iDescriptor - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/igdm b/apps/igdm new file mode 100644 index 000000000..128acc957 --- /dev/null +++ b/apps/igdm @@ -0,0 +1,3 @@ +# igdm +Desktop application for Instagram DMs +# SITES: https://github.com/ifedapoolarewaju/igdm \ No newline at end of file diff --git a/apps/igdm.md b/apps/igdm.md deleted file mode 100644 index 20c19f15d..000000000 --- a/apps/igdm.md +++ /dev/null @@ -1,8 +0,0 @@ -# IGDM - - Desktop application for Instagram DMs - - SITE: https://github.com/ifedapoolarewaju/igdm - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/iheartradio-webapp b/apps/iheartradio-webapp new file mode 100644 index 000000000..29d7998c8 --- /dev/null +++ b/apps/iheartradio-webapp @@ -0,0 +1,3 @@ +# iheartradio-webapp +Election WebApp for iHeartRadio +# SITES: https://github.com/ItzSwirlz/iheartradio-webapp \ No newline at end of file diff --git a/apps/iheartradio-webapp.md b/apps/iheartradio-webapp.md deleted file mode 100644 index 61f506b58..000000000 --- a/apps/iheartradio-webapp.md +++ /dev/null @@ -1,8 +0,0 @@ -# IHEARTRADIO-WEBAPP - - Election WebApp for iHeartRadio - - SITE: https://github.com/ItzSwirlz/iheartradio-webapp - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/iloader b/apps/iloader new file mode 100644 index 000000000..00e893770 --- /dev/null +++ b/apps/iloader @@ -0,0 +1,3 @@ +# iloader +User friendly sideloader. +# SITES: https://github.com/nab138/iloader \ No newline at end of file diff --git a/apps/iloader.md b/apps/iloader.md deleted file mode 100644 index 6b4793ff0..000000000 --- a/apps/iloader.md +++ /dev/null @@ -1,8 +0,0 @@ -# ILOADER - - User friendly sideloader. - - SITE: https://github.com/nab138/iloader - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/imagemagick-clang b/apps/imagemagick-clang new file mode 100644 index 000000000..72d7503a0 --- /dev/null +++ b/apps/imagemagick-clang @@ -0,0 +1,5 @@ +# imagemagick-clang +Use ImageMagick® to create, edit, compose, or convert digital images. It can read and write images in a variety of formats (over 200) including PNG, JPEG, GIF, WebP, HEIC, SVG, PDF, DPX, EXR and TIFF. ImageMagick can resize, flip, mirror, rotate, distort, shear and transform images, adjust image colors, apply various special effects, or draw text, lines, polygons, ellipses and Bézier curves. + + This version uses CLANG. +# SITES: https://github.com/ImageMagick/ImageMagick \ No newline at end of file diff --git a/apps/imagemagick-clang.md b/apps/imagemagick-clang.md deleted file mode 100644 index 4f245e1b3..000000000 --- a/apps/imagemagick-clang.md +++ /dev/null @@ -1,12 +0,0 @@ -# IMAGEMAGICK-CLANG - - Use ImageMagick® to create, edit, compose, or convert digital images. It can read and write images in a variety of formats (over 200) including PNG, JPEG, GIF, WebP, HEIC, SVG, PDF, DPX, EXR and TIFF. ImageMagick can resize, flip, mirror, rotate, distort, shear and transform images, adjust image colors, apply various special effects, or draw text, lines, polygons, ellipses and Bézier curves. - - This version uses CLANG. - - USAGE: "imagemagick-clang -help" - - SITE: https://github.com/ImageMagick/ImageMagick - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/imagemagick-gcc b/apps/imagemagick-gcc new file mode 100644 index 000000000..a45359bd9 --- /dev/null +++ b/apps/imagemagick-gcc @@ -0,0 +1,5 @@ +# imagemagick-gcc +Use ImageMagick® to create, edit, compose, or convert digital images. It can read and write images in a variety of formats (over 200) including PNG, JPEG, GIF, WebP, HEIC, SVG, PDF, DPX, EXR and TIFF. ImageMagick can resize, flip, mirror, rotate, distort, shear and transform images, adjust image colors, apply various special effects, or draw text, lines, polygons, ellipses and Bézier curves. + + This version uses GCC. +# SITES: https://github.com/ImageMagick/ImageMagick \ No newline at end of file diff --git a/apps/imagemagick-gcc.md b/apps/imagemagick-gcc.md deleted file mode 100644 index 27c4a23e9..000000000 --- a/apps/imagemagick-gcc.md +++ /dev/null @@ -1,12 +0,0 @@ -# IMAGEMAGICK-GCC - - Use ImageMagick® to create, edit, compose, or convert digital images. It can read and write images in a variety of formats (over 200) including PNG, JPEG, GIF, WebP, HEIC, SVG, PDF, DPX, EXR and TIFF. ImageMagick can resize, flip, mirror, rotate, distort, shear and transform images, adjust image colors, apply various special effects, or draw text, lines, polygons, ellipses and Bézier curves. - - This version uses GCC. - - USAGE: "imagemagick-gcc -help" - - SITE: https://github.com/ImageMagick/ImageMagick - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/imagemosaicwall b/apps/imagemosaicwall new file mode 100644 index 000000000..ca0c86df4 --- /dev/null +++ b/apps/imagemosaicwall @@ -0,0 +1,3 @@ +# imagemosaicwall +This application allows you to create an image based on a bunch of other images. It looks like a mosaic effect. +# SITES: https://github.com/scheckmedia/ImageMosaicWall \ No newline at end of file diff --git a/apps/imagemosaicwall.md b/apps/imagemosaicwall.md deleted file mode 100644 index 660e376e2..000000000 --- a/apps/imagemosaicwall.md +++ /dev/null @@ -1,8 +0,0 @@ -# IMAGEMOSAICWALL - - This application allows you to create an image based on a bunch of other images. It looks like a mosaic effect. - - SITE: https://github.com/scheckmedia/ImageMosaicWall - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/imagine b/apps/imagine new file mode 100644 index 000000000..345fc45c6 --- /dev/null +++ b/apps/imagine @@ -0,0 +1,3 @@ +# imagine +PNG/JPEG optimization +# SITES: https://github.com/meowtec/Imagine \ No newline at end of file diff --git a/apps/imagine.md b/apps/imagine.md deleted file mode 100644 index 7eb929f90..000000000 --- a/apps/imagine.md +++ /dev/null @@ -1,8 +0,0 @@ -# IMAGINE - - PNG/JPEG optimization - - SITE: https://github.com/meowtec/Imagine - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/imapsyncclient b/apps/imapsyncclient new file mode 100644 index 000000000..12239b1d9 --- /dev/null +++ b/apps/imapsyncclient @@ -0,0 +1,3 @@ +# imapsyncclient +An electron-vue project +# SITES: https://github.com/ridaamirini/ImapSyncClient \ No newline at end of file diff --git a/apps/imapsyncclient.md b/apps/imapsyncclient.md deleted file mode 100644 index 4ec0d061b..000000000 --- a/apps/imapsyncclient.md +++ /dev/null @@ -1,8 +0,0 @@ -# IMAPSYNCCLIENT - - An electron-vue project - - SITE: https://github.com/ridaamirini/ImapSyncClient - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/imfile b/apps/imfile new file mode 100644 index 000000000..adf503af1 --- /dev/null +++ b/apps/imfile @@ -0,0 +1,3 @@ +# imfile +A full-featured download manager. +# SITES: https://github.com/imfile-io/imfile-desktop \ No newline at end of file diff --git a/apps/imfile.md b/apps/imfile.md deleted file mode 100644 index 6e535fc97..000000000 --- a/apps/imfile.md +++ /dev/null @@ -1,8 +0,0 @@ -# IMFILE - - A full-featured download manager. - - SITE: https://github.com/imfile-io/imfile-desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/imgbrd-grabber b/apps/imgbrd-grabber new file mode 100644 index 000000000..00f5b7ec4 --- /dev/null +++ b/apps/imgbrd-grabber @@ -0,0 +1,3 @@ +# imgbrd-grabber +Very customizable imageboard/booru downloader with powerful filenaming features. +# SITES: https://github.com/Bionus/imgbrd-grabber \ No newline at end of file diff --git a/apps/imgbrd-grabber.md b/apps/imgbrd-grabber.md deleted file mode 100644 index 3c4a2b805..000000000 --- a/apps/imgbrd-grabber.md +++ /dev/null @@ -1,8 +0,0 @@ -# IMGBRD-GRABBER - - Very customizable imageboard/booru downloader with powerful filenaming features. - - SITE: https://github.com/Bionus/imgbrd-grabber - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/imgcat b/apps/imgcat new file mode 100644 index 000000000..b4606770f --- /dev/null +++ b/apps/imgcat @@ -0,0 +1,3 @@ +# imgcat +Display images and gifs in your terminal. +# SITES: https://github.com/danielgatis/imgcat \ No newline at end of file diff --git a/apps/imgcat.md b/apps/imgcat.md deleted file mode 100644 index 44d00944f..000000000 --- a/apps/imgcat.md +++ /dev/null @@ -1,8 +0,0 @@ -# IMGCAT - - Display images and gifs in your terminal. - - SITE: https://github.com/danielgatis/imgcat - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/imhex b/apps/imhex new file mode 100644 index 000000000..389f60e20 --- /dev/null +++ b/apps/imhex @@ -0,0 +1,3 @@ +# imhex +A Hex Editor for Reverse Engineers, Programmers and people who value their retinas when working at 3 AM. +# SITES: https://github.com/WerWolv/ImHex \ No newline at end of file diff --git a/apps/imhex.md b/apps/imhex.md deleted file mode 100644 index 02746cd9e..000000000 --- a/apps/imhex.md +++ /dev/null @@ -1,8 +0,0 @@ -# IMHEX - - A Hex Editor for Reverse Engineers, Programmers and people who value their retinas when working at 3 AM. - - SITE: https://github.com/WerWolv/ImHex - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/impact b/apps/impact new file mode 100644 index 000000000..8250129b1 --- /dev/null +++ b/apps/impact @@ -0,0 +1,3 @@ +# impact +Music Management and Playback +# SITES: https://github.com/lxndr/impact \ No newline at end of file diff --git a/apps/impact.md b/apps/impact.md deleted file mode 100644 index d324425bb..000000000 --- a/apps/impact.md +++ /dev/null @@ -1,8 +0,0 @@ -# IMPACT - - Music Management and Playback - - SITE: https://github.com/lxndr/impact - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/impactor b/apps/impactor new file mode 100644 index 000000000..add1200bf --- /dev/null +++ b/apps/impactor @@ -0,0 +1,3 @@ +# impactor +Feature rich iOS/tvOS sideloading application written in Rust. Formerly known as PlumeImpactor. +# SITES: https://github.com/khcrysalis/Impactor \ No newline at end of file diff --git a/apps/impactor.md b/apps/impactor.md deleted file mode 100644 index 905c83346..000000000 --- a/apps/impactor.md +++ /dev/null @@ -1,8 +0,0 @@ -# IMPACTOR - - Feature rich iOS/tvOS sideloading application written in Rust. Formerly known as PlumeImpactor. - - SITE: https://github.com/khcrysalis/Impactor - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/implay b/apps/implay new file mode 100644 index 000000000..1a53c70cf --- /dev/null +++ b/apps/implay @@ -0,0 +1,3 @@ +# implay +A Cross-Platform Desktop Media Player, built on top of mpv and ImGui. +# SITES: https://github.com/tsl0922/ImPlay \ No newline at end of file diff --git a/apps/implay.md b/apps/implay.md deleted file mode 100644 index be67b33e1..000000000 --- a/apps/implay.md +++ /dev/null @@ -1,8 +0,0 @@ -# IMPLAY - - A Cross-Platform Desktop Media Player, built on top of mpv and ImGui. - - SITE: https://github.com/tsl0922/ImPlay - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/impposter b/apps/impposter new file mode 100644 index 000000000..7764d2db0 --- /dev/null +++ b/apps/impposter @@ -0,0 +1,3 @@ +# impposter +A simple react/electron project to be able to post to my own development blog +# SITES: https://github.com/imp-dance/imp-poster \ No newline at end of file diff --git a/apps/impposter.md b/apps/impposter.md deleted file mode 100644 index bd5803c26..000000000 --- a/apps/impposter.md +++ /dev/null @@ -1,8 +0,0 @@ -# IMPPOSTER - - A simple react/electron project to be able to post to my own development blog - - SITE: https://github.com/imp-dance/imp-poster - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/impression b/apps/impression new file mode 100644 index 000000000..50bccd7d0 --- /dev/null +++ b/apps/impression @@ -0,0 +1,3 @@ +# impression +Unofficial. Simple USB image writer application. +# SITES: https://github.com/pkgforge-dev/Impression-AppImage \ No newline at end of file diff --git a/apps/impression.md b/apps/impression.md deleted file mode 100644 index c4794902e..000000000 --- a/apps/impression.md +++ /dev/null @@ -1,8 +0,0 @@ -# IMPRESSION - - Unofficial. Simple USB image writer application. - - SITE: https://github.com/pkgforge-dev/Impression-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/inboxer b/apps/inboxer new file mode 100644 index 000000000..23e4ffe27 --- /dev/null +++ b/apps/inboxer @@ -0,0 +1,3 @@ +# inboxer +Simple client for Google Inbox +# SITES: https://github.com/denysdovhan/inboxer \ No newline at end of file diff --git a/apps/inboxer.md b/apps/inboxer.md deleted file mode 100644 index 0795efbb2..000000000 --- a/apps/inboxer.md +++ /dev/null @@ -1,8 +0,0 @@ -# INBOXER - - Simple client for Google Inbox - - SITE: https://github.com/denysdovhan/inboxer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/infection-monkey b/apps/infection-monkey new file mode 100644 index 000000000..404f623b9 --- /dev/null +++ b/apps/infection-monkey @@ -0,0 +1,3 @@ +# infection-monkey +Infection Monkey - An automated pentest tool. +# SITES: https://github.com/guardicore/monkey \ No newline at end of file diff --git a/apps/infection-monkey.md b/apps/infection-monkey.md deleted file mode 100644 index d2593ee6a..000000000 --- a/apps/infection-monkey.md +++ /dev/null @@ -1,8 +0,0 @@ -# INFECTION-MONKEY - - Infection Monkey - An automated pentest tool. - - SITE: https://github.com/guardicore/monkey - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/infinitex b/apps/infinitex new file mode 100644 index 000000000..72f17554e --- /dev/null +++ b/apps/infinitex @@ -0,0 +1,3 @@ +# infinitex +A new age editor for academics who seek freedom and people with cryptography +# SITES: https://github.com/fetacore/Infinitex \ No newline at end of file diff --git a/apps/infinitex.md b/apps/infinitex.md deleted file mode 100644 index 926c4d725..000000000 --- a/apps/infinitex.md +++ /dev/null @@ -1,8 +0,0 @@ -# INFINITEX - - A new age editor for academics who seek freedom and people with cryptography - - SITE: https://github.com/fetacore/Infinitex - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/infra-app b/apps/infra-app new file mode 100644 index 000000000..88b89e59c --- /dev/null +++ b/apps/infra-app @@ -0,0 +1,3 @@ +# infra-app +Infra App for Linux +# SITES: https://infra.app \ No newline at end of file diff --git a/apps/infra-app.md b/apps/infra-app.md deleted file mode 100644 index 713e09464..000000000 --- a/apps/infra-app.md +++ /dev/null @@ -1,8 +0,0 @@ -# INFRA-APP - - Infra App for Linux - - SITE: https://infra.app - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/inkdown b/apps/inkdown new file mode 100644 index 000000000..a48587761 --- /dev/null +++ b/apps/inkdown @@ -0,0 +1,3 @@ +# inkdown +A WYSIWYG Markdown editor, improve reading and editing experience. and generate your Markdown files into online documents in the easiest and fastest way. +# SITES: https://github.com/1943time/inkdown \ No newline at end of file diff --git a/apps/inkdown.md b/apps/inkdown.md deleted file mode 100644 index a316c6d9e..000000000 --- a/apps/inkdown.md +++ /dev/null @@ -1,8 +0,0 @@ -# INKDOWN - - A WYSIWYG Markdown editor, improve reading and editing experience. and generate your Markdown files into online documents in the easiest and fastest way. - - SITE: https://github.com/1943time/inkdown - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/inkscape b/apps/inkscape new file mode 100644 index 000000000..f8e5614e2 --- /dev/null +++ b/apps/inkscape @@ -0,0 +1,9 @@ +# inkscape +Inkscape is a Free and open source vector graphics editor for GNU/Linux, Windows and MacOS X. It offers a rich set of features and is widely used for both artistic and technical illustrations such as cartoons, clip art, logos, typography, diagramming and flowcharting. It uses vector graphics to allow for sharp printouts and renderings at unlimited resolution and is not bound to a fixed number of pixels like raster graphics. Inkscape uses the standardized SVG file format as its main format, which is supported by many other applications including web browsers. + + It can import and export various file formats, including SVG, AI, EPS, PDF, PS and PNG. It has a comprehensive feature set, a simple interface, multi-lingual support and is designed to be extensible; users can customize Inkscape's functionality with add-ons. + + This is the unofficial Archimage built on top of JuNest. +# SCREENSHOTS: https://media.inkscape.org/media/resources/file/Inkscape_SS_01.png +# SITES: https://inkscape.org +# SOURCES: https://github.com/ivan-hc/Inkscape-appimage \ No newline at end of file diff --git a/apps/inkscape.md b/apps/inkscape.md deleted file mode 100644 index 5e8aff636..000000000 --- a/apps/inkscape.md +++ /dev/null @@ -1,16 +0,0 @@ -# INKSCAPE - - Inkscape is a Free and open source vector graphics editor for GNU/Linux, Windows and MacOS X. It offers a rich set of features and is widely used for both artistic and technical illustrations such as cartoons, clip art, logos, typography, diagramming and flowcharting. It uses vector graphics to allow for sharp printouts and renderings at unlimited resolution and is not bound to a fixed number of pixels like raster graphics. Inkscape uses the standardized SVG file format as its main format, which is supported by many other applications including web browsers. - - It can import and export various file formats, including SVG, AI, EPS, PDF, PS and PNG. It has a comprehensive feature set, a simple interface, multi-lingual support and is designed to be extensible; users can customize Inkscape's functionality with add-ons. - - This is the unofficial Archimage built on top of JuNest. - - ![Screenshot](https://media.inkscape.org/media/resources/file/Inkscape_SS_01.png) - - SITE: https://inkscape.org - - UNOFFICIAL APPIMAGE: https://github.com/ivan-hc/Inkscape-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/innerbreeze b/apps/innerbreeze new file mode 100644 index 000000000..66b7954e0 --- /dev/null +++ b/apps/innerbreeze @@ -0,0 +1,3 @@ +# innerbreeze +Guided breathing meditation app based on the Wim Hof breathing method. +# SITES: https://github.com/naoxio/inbreeze \ No newline at end of file diff --git a/apps/innerbreeze.md b/apps/innerbreeze.md deleted file mode 100644 index d6b2ce58e..000000000 --- a/apps/innerbreeze.md +++ /dev/null @@ -1,8 +0,0 @@ -# INNERBREEZE - - Guided breathing meditation app based on the Wim Hof breathing method. - - SITE: https://github.com/naoxio/inbreeze - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/innoextract b/apps/innoextract new file mode 100644 index 000000000..3ab166b27 --- /dev/null +++ b/apps/innoextract @@ -0,0 +1,3 @@ +# innoextract +Unofficial, a tool to extract installers created by Inno Setup. +# SITES: https://github.com/pkgforge-dev/innoextract-AppImage \ No newline at end of file diff --git a/apps/innoextract.md b/apps/innoextract.md deleted file mode 100644 index c6024369c..000000000 --- a/apps/innoextract.md +++ /dev/null @@ -1,8 +0,0 @@ -# INNOEXTRACT - - Unofficial, a tool to extract installers created by Inno Setup. - - SITE: https://github.com/pkgforge-dev/innoextract-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/insight b/apps/insight new file mode 100644 index 000000000..445a3441b --- /dev/null +++ b/apps/insight @@ -0,0 +1,3 @@ +# insight +The GUI front-end of GDB with Tcl/Tk. +# SITES: https://github.com/antony-jr/insight \ No newline at end of file diff --git a/apps/insight.md b/apps/insight.md deleted file mode 100644 index 91cdf2895..000000000 --- a/apps/insight.md +++ /dev/null @@ -1,8 +0,0 @@ -# INSIGHT - - The GUI front-end of GDB with Tcl/Tk. - - SITE: https://github.com/antony-jr/insight - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/insomnia b/apps/insomnia new file mode 100644 index 000000000..fb4d42bf3 --- /dev/null +++ b/apps/insomnia @@ -0,0 +1,3 @@ +# insomnia +The open-source, cross-platform API client for GraphQL, REST, WebSockets and gRPC. +# SITES: https://github.com/Kong/insomnia \ No newline at end of file diff --git a/apps/insomnia.md b/apps/insomnia.md deleted file mode 100644 index bf5aabfcb..000000000 --- a/apps/insomnia.md +++ /dev/null @@ -1,8 +0,0 @@ -# INSOMNIA - - The open-source, cross-platform API client for GraphQL, REST, WebSockets and gRPC. - - SITE: https://github.com/Kong/insomnia - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/insomnium b/apps/insomnium new file mode 100644 index 000000000..eb69006d2 --- /dev/null +++ b/apps/insomnium @@ -0,0 +1,6 @@ +# insomnium +Insomnium is a fast local API testing tool that is privacy-focused and 100% local. For testing GraphQL, REST, WebSockets and gRPC. + + This is a fork of Kong/insomnia +# SCREENSHOTS: https://raw.githubusercontent.com/ArchGPT/insomnium/main/screenshots/v0.1.png +# SITES: https://github.com/ArchGPT/insomnium \ No newline at end of file diff --git a/apps/insomnium.md b/apps/insomnium.md deleted file mode 100644 index 9d367b624..000000000 --- a/apps/insomnium.md +++ /dev/null @@ -1,12 +0,0 @@ -# INSOMNIUM - - Insomnium is a fast local API testing tool that is privacy-focused and 100% local. For testing GraphQL, REST, WebSockets and gRPC. - - This is a fork of Kong/insomnia - - ![Screenshot](https://raw.githubusercontent.com/ArchGPT/insomnium/main/screenshots/v0.1.png) - - SITE: https://github.com/ArchGPT/insomnium - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/install b/apps/install new file mode 100644 index 000000000..0534644da --- /dev/null +++ b/apps/install @@ -0,0 +1,4 @@ +# install + Copy files and set attributes. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/install.md b/apps/install.md deleted file mode 100644 index 78ec8ec7a..000000000 --- a/apps/install.md +++ /dev/null @@ -1,8 +0,0 @@ -# INSTALL - - Copy files and set attributes. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/instead b/apps/instead new file mode 100644 index 000000000..6c0a41a5c --- /dev/null +++ b/apps/instead @@ -0,0 +1,3 @@ +# instead +Simple Text Adventures Interpreter +# SITES: https://github.com/instead-hub/instead \ No newline at end of file diff --git a/apps/instead.md b/apps/instead.md deleted file mode 100644 index 1811d8650..000000000 --- a/apps/instead.md +++ /dev/null @@ -1,8 +0,0 @@ -# INSTEAD - - Simple Text Adventures Interpreter - - SITE: https://github.com/instead-hub/instead - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/international-doom b/apps/international-doom new file mode 100644 index 000000000..25838276b --- /dev/null +++ b/apps/international-doom @@ -0,0 +1,3 @@ +# international-doom +Small, functional and simple source ports, created with help, efforts and bits of code from people around the world. +# SITES: https://github.com/JNechaevsky/international-doom \ No newline at end of file diff --git a/apps/international-doom.md b/apps/international-doom.md deleted file mode 100644 index 52acada4e..000000000 --- a/apps/international-doom.md +++ /dev/null @@ -1,8 +0,0 @@ -# INTERNATIONAL-DOOM - - Small, functional and simple source ports, created with help, efforts and bits of code from people around the world. - - SITE: https://github.com/JNechaevsky/international-doom - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/internxt-drive b/apps/internxt-drive new file mode 100644 index 000000000..1dcf2b322 --- /dev/null +++ b/apps/internxt-drive @@ -0,0 +1,3 @@ +# internxt-drive +Electron React Boilerplate uses Electron, React, React Router, Webpack and React Fast Refresh. +# SITES: https://github.com/internxt/drive-desktop-linux \ No newline at end of file diff --git a/apps/internxt-drive.md b/apps/internxt-drive.md deleted file mode 100644 index 53a0d2e79..000000000 --- a/apps/internxt-drive.md +++ /dev/null @@ -1,8 +0,0 @@ -# INTERNXT-DRIVE - - Electron React Boilerplate uses Electron, React, React Router, Webpack and React Fast Refresh. - - SITE: https://github.com/internxt/drive-desktop-linux - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/interstellar b/apps/interstellar new file mode 100644 index 000000000..217501144 --- /dev/null +++ b/apps/interstellar @@ -0,0 +1,3 @@ +# interstellar +An app for Mbin/Lemmy/PieFed, connecting you to the fediverse. +# SITES: https://github.com/jwr1/interstellar \ No newline at end of file diff --git a/apps/interstellar.md b/apps/interstellar.md deleted file mode 100644 index 823716536..000000000 --- a/apps/interstellar.md +++ /dev/null @@ -1,8 +0,0 @@ -# INTERSTELLAR - - An app for Mbin/Lemmy/PieFed, connecting you to the fediverse. - - SITE: https://github.com/jwr1/interstellar - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/intiface b/apps/intiface new file mode 100644 index 000000000..fe9601940 --- /dev/null +++ b/apps/intiface @@ -0,0 +1,3 @@ +# intiface +Desktop Intiface Application +# SITES: https://github.com/intiface/intiface-desktop \ No newline at end of file diff --git a/apps/intiface.md b/apps/intiface.md deleted file mode 100644 index db82da8ac..000000000 --- a/apps/intiface.md +++ /dev/null @@ -1,8 +0,0 @@ -# INTIFACE - - Desktop Intiface Application - - SITE: https://github.com/intiface/intiface-desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/invoice-generator b/apps/invoice-generator new file mode 100644 index 000000000..453eebfab --- /dev/null +++ b/apps/invoice-generator @@ -0,0 +1,3 @@ +# invoice-generator +Invoice Generator in Electron +# SITES: https://github.com/bhavyaagg/Invoice-Generator-Electron \ No newline at end of file diff --git a/apps/invoice-generator.md b/apps/invoice-generator.md deleted file mode 100644 index db930ebb4..000000000 --- a/apps/invoice-generator.md +++ /dev/null @@ -1,8 +0,0 @@ -# INVOICE-GENERATOR - - Invoice Generator in Electron - - SITE: https://github.com/bhavyaagg/Invoice-Generator-Electron - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/inxi b/apps/inxi new file mode 100644 index 000000000..63fcc7b5d --- /dev/null +++ b/apps/inxi @@ -0,0 +1,3 @@ +# inxi +A full featured CLI system information tool. +# SITES: https://smxi.org \ No newline at end of file diff --git a/apps/inxi.md b/apps/inxi.md deleted file mode 100644 index 481fb987c..000000000 --- a/apps/inxi.md +++ /dev/null @@ -1,8 +0,0 @@ -# INXI - - A full featured CLI system information tool. - - SITE: https://smxi.org - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ioquake3 b/apps/ioquake3 new file mode 100644 index 000000000..d41411cf0 --- /dev/null +++ b/apps/ioquake3 @@ -0,0 +1,3 @@ +# ioquake3 +Unofficial, the de-facto OSS Quake 3 distribution. +# SITES: https://github.com/pkgforge-dev/ioquake3-AppImage \ No newline at end of file diff --git a/apps/ioquake3.md b/apps/ioquake3.md deleted file mode 100644 index c3e28ea23..000000000 --- a/apps/ioquake3.md +++ /dev/null @@ -1,8 +0,0 @@ -# IOQUAKE3 - - Unofficial, the de-facto OSS Quake 3 distribution. - - SITE: https://github.com/pkgforge-dev/ioquake3-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/iota1k b/apps/iota1k new file mode 100644 index 000000000..051b3520a --- /dev/null +++ b/apps/iota1k @@ -0,0 +1,3 @@ +# iota1k +IOTA based messenging app +# SITES: https://github.com/xx10t4/iota1k \ No newline at end of file diff --git a/apps/iota1k.md b/apps/iota1k.md deleted file mode 100644 index eb6c85607..000000000 --- a/apps/iota1k.md +++ /dev/null @@ -1,8 +0,0 @@ -# IOTA1K - - IOTA based messenging app - - SITE: https://github.com/xx10t4/iota1k - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ipfs-desktop b/apps/ipfs-desktop new file mode 100644 index 000000000..1c6d94727 --- /dev/null +++ b/apps/ipfs-desktop @@ -0,0 +1,3 @@ +# ipfs-desktop +An unobtrusive and user-friendly desktop application for IPFS on Linux. +# SITES: https://github.com/ipfs/ipfs-desktop \ No newline at end of file diff --git a/apps/ipfs-desktop.md b/apps/ipfs-desktop.md deleted file mode 100644 index 6813506fd..000000000 --- a/apps/ipfs-desktop.md +++ /dev/null @@ -1,8 +0,0 @@ -# IPFS-DESKTOP - - An unobtrusive and user-friendly desktop application for IPFS on Linux. - - SITE: https://github.com/ipfs/ipfs-desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/iptracker b/apps/iptracker new file mode 100644 index 000000000..83aa03560 --- /dev/null +++ b/apps/iptracker @@ -0,0 +1,3 @@ +# iptracker +Desktop tool to keep track of your IP address and update you when it changes +# SITES: https://github.com/modernben/iptracker \ No newline at end of file diff --git a/apps/iptracker.md b/apps/iptracker.md deleted file mode 100644 index ed15bffcf..000000000 --- a/apps/iptracker.md +++ /dev/null @@ -1,8 +0,0 @@ -# IPTRACKER - - Desktop tool to keep track of your IP address and update you when it changes - - SITE: https://github.com/modernben/iptracker - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/iptvnator b/apps/iptvnator new file mode 100644 index 000000000..473e49a5e --- /dev/null +++ b/apps/iptvnator @@ -0,0 +1,3 @@ +# iptvnator +Cross-platform IPTV player app, supports m3u+m3u8 playlists, favorites, TV guide, TV archive/catchup and more. +# SITES: https://github.com/4gray/iptvnator/ \ No newline at end of file diff --git a/apps/iptvnator.md b/apps/iptvnator.md deleted file mode 100644 index ffc740241..000000000 --- a/apps/iptvnator.md +++ /dev/null @@ -1,8 +0,0 @@ -# IPTVNATOR - - Cross-platform IPTV player app, supports m3u+m3u8 playlists, favorites, TV guide, TV archive/catchup and more. - - SITE: https://github.com/4gray/iptvnator/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/iqpuzzle b/apps/iqpuzzle new file mode 100644 index 000000000..f6fa7c6f4 --- /dev/null +++ b/apps/iqpuzzle @@ -0,0 +1,3 @@ +# iqpuzzle +A challenging pentomino puzzle. +# SITES: https://github.com/ElTh0r0/iqpuzzle \ No newline at end of file diff --git a/apps/iqpuzzle.md b/apps/iqpuzzle.md deleted file mode 100644 index c9abfcfec..000000000 --- a/apps/iqpuzzle.md +++ /dev/null @@ -1,8 +0,0 @@ -# IQPUZZLE - - A challenging pentomino puzzle. - - SITE: https://github.com/ElTh0r0/iqpuzzle - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/irccloud-desktop b/apps/irccloud-desktop new file mode 100644 index 000000000..294fde18e --- /dev/null +++ b/apps/irccloud-desktop @@ -0,0 +1,3 @@ +# irccloud-desktop +IRCCloud Desktop Client +# SITES: https://github.com/irccloud/irccloud-desktop \ No newline at end of file diff --git a/apps/irccloud-desktop.md b/apps/irccloud-desktop.md deleted file mode 100644 index 470c7533b..000000000 --- a/apps/irccloud-desktop.md +++ /dev/null @@ -1,8 +0,0 @@ -# IRCCLOUD-DESKTOP - - IRCCloud Desktop Client - - SITE: https://github.com/irccloud/irccloud-desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ireader b/apps/ireader new file mode 100644 index 000000000..4c664f6b8 --- /dev/null +++ b/apps/ireader @@ -0,0 +1,3 @@ +# ireader +Privacy-focused, open source novel reader app. +# SITES: https://github.com/IReaderorg/IReader \ No newline at end of file diff --git a/apps/ireader.md b/apps/ireader.md deleted file mode 100644 index 47c004671..000000000 --- a/apps/ireader.md +++ /dev/null @@ -1,8 +0,0 @@ -# IREADER - - Privacy-focused, open source novel reader app. - - SITE: https://github.com/IReaderorg/IReader - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/iris b/apps/iris new file mode 100644 index 000000000..63c206d89 --- /dev/null +++ b/apps/iris @@ -0,0 +1,3 @@ +# iris +Sony PlayStation 2 games emulator for Windows, Linux and macOS. +# SITES: https://github.com/allkern/iris \ No newline at end of file diff --git a/apps/iris-enhanced b/apps/iris-enhanced new file mode 100644 index 000000000..1b8c402fa --- /dev/null +++ b/apps/iris-enhanced @@ -0,0 +1,3 @@ +# iris-enhanced +Unofficial, Sony PlayStation 2 emulator. +# SITES: https://github.com/pkgforge-dev/Iris-AppImage-Enhanced \ No newline at end of file diff --git a/apps/iris-enhanced.md b/apps/iris-enhanced.md deleted file mode 100644 index a5410731b..000000000 --- a/apps/iris-enhanced.md +++ /dev/null @@ -1,8 +0,0 @@ -# IRIS-ENHANCED - - Unofficial, Sony PlayStation 2 emulator. - - SITE: https://github.com/pkgforge-dev/Iris-AppImage-Enhanced - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/iris.md b/apps/iris.md deleted file mode 100644 index 0017f234d..000000000 --- a/apps/iris.md +++ /dev/null @@ -1,8 +0,0 @@ -# IRIS - - Sony PlayStation 2 games emulator for Windows, Linux and macOS. - - SITE: https://github.com/allkern/iris - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/ironwail b/apps/ironwail new file mode 100644 index 000000000..e2081b181 --- /dev/null +++ b/apps/ironwail @@ -0,0 +1,3 @@ +# ironwail +High-performance QuakeSpasm fork QuakeSpasm. A modern, cross-platform Quake game engine based on FitzQuake. +# SITES: https://github.com/andrei-drexler/ironwail \ No newline at end of file diff --git a/apps/ironwail.md b/apps/ironwail.md deleted file mode 100644 index 394fe4388..000000000 --- a/apps/ironwail.md +++ /dev/null @@ -1,8 +0,0 @@ -# IRONWAIL - - High-performance QuakeSpasm fork QuakeSpasm. A modern, cross-platform Quake game engine based on FitzQuake. - - SITE: https://github.com/andrei-drexler/ironwail - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/irpf2025 b/apps/irpf2025 new file mode 100644 index 000000000..d2dd1383f --- /dev/null +++ b/apps/irpf2025 @@ -0,0 +1,3 @@ +# irpf2025 +Appimage não oficial do IRPF2025, declare seu imposto de renda (Ano-calendário 2024). +# SITES: https://github.com/pkgforge-dev/IRPF2025-AppImage \ No newline at end of file diff --git a/apps/irpf2025.md b/apps/irpf2025.md deleted file mode 100644 index 20e10e3e7..000000000 --- a/apps/irpf2025.md +++ /dev/null @@ -1,8 +0,0 @@ -# IRPF2025 - - Appimage não oficial do IRPF2025, declare seu imposto de renda (Ano-calendário 2024). - - SITE: https://github.com/pkgforge-dev/IRPF2025-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/irpf2026 b/apps/irpf2026 new file mode 100644 index 000000000..c0b8ccd0e --- /dev/null +++ b/apps/irpf2026 @@ -0,0 +1,3 @@ +# irpf2026 +Appimage não oficial do IRPF2026. +# SITES: https://github.com/pkgforge-dev/IRPF2026-AppImage \ No newline at end of file diff --git a/apps/irpf2026.md b/apps/irpf2026.md deleted file mode 100644 index 4ab5cd800..000000000 --- a/apps/irpf2026.md +++ /dev/null @@ -1,8 +0,0 @@ -# IRPF2026 - - Appimage não oficial do IRPF2026. - - SITE: https://github.com/pkgforge-dev/IRPF2026-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/irscrutinizer b/apps/irscrutinizer new file mode 100644 index 000000000..d2c9e45ad --- /dev/null +++ b/apps/irscrutinizer @@ -0,0 +1,3 @@ +# irscrutinizer +Program for capturing, generating, analyzing, importing and exporting of infrared signals. +# SITES: https://github.com/bengtmartensson/IrScrutinizer \ No newline at end of file diff --git a/apps/irscrutinizer.md b/apps/irscrutinizer.md deleted file mode 100644 index a866a01b2..000000000 --- a/apps/irscrutinizer.md +++ /dev/null @@ -1,8 +0,0 @@ -# IRSCRUTINIZER - - Program for capturing, generating, analyzing, importing and exporting of infrared signals. - - SITE: https://github.com/bengtmartensson/IrScrutinizer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/isd b/apps/isd new file mode 100644 index 000000000..9417e631c --- /dev/null +++ b/apps/isd @@ -0,0 +1,3 @@ +# isd +Isd (interactive systemd) – a better way to work with systemd units. +# SITES: https://github.com/kainctl/isd \ No newline at end of file diff --git a/apps/isd.md b/apps/isd.md deleted file mode 100644 index 9ee4dd589..000000000 --- a/apps/isd.md +++ /dev/null @@ -1,8 +0,0 @@ -# ISD - - Isd (interactive systemd) – a better way to work with systemd units. - - SITE: https://github.com/kainctl/isd - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/isle-editor b/apps/isle-editor new file mode 100644 index 000000000..f4647cd20 --- /dev/null +++ b/apps/isle-editor @@ -0,0 +1,3 @@ +# isle-editor +Editor for Integrated Statistics Learning Environment (ISLE) lessons. +# SITES: https://github.com/isle-project/isle-editor \ No newline at end of file diff --git a/apps/isle-editor.md b/apps/isle-editor.md deleted file mode 100644 index e232ea00d..000000000 --- a/apps/isle-editor.md +++ /dev/null @@ -1,8 +0,0 @@ -# ISLE-EDITOR - - Editor for Integrated Statistics Learning Environment (ISLE) lessons. - - SITE: https://github.com/isle-project/isle-editor - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/isle-portable b/apps/isle-portable new file mode 100644 index 000000000..69207368b --- /dev/null +++ b/apps/isle-portable @@ -0,0 +1,3 @@ +# isle-portable +Unofficial, a portable version of LEGO Island (1997). +# SITES: https://github.com/pkgforge-dev/isle-portable-AppImage-Enhanced \ No newline at end of file diff --git a/apps/isle-portable-enhanced b/apps/isle-portable-enhanced new file mode 100644 index 000000000..438b8a338 --- /dev/null +++ b/apps/isle-portable-enhanced @@ -0,0 +1,3 @@ +# isle-portable-enhanced +Unofficial, a portable version of LEGO Island (1997). +# SITES: https://github.com/pkgforge-dev/isle-portable-AppImage-Enhanced \ No newline at end of file diff --git a/apps/isle-portable-enhanced.md b/apps/isle-portable-enhanced.md deleted file mode 100644 index 416285dc7..000000000 --- a/apps/isle-portable-enhanced.md +++ /dev/null @@ -1,8 +0,0 @@ -# ISLE-PORTABLE-ENHANCED - - Unofficial, a portable version of LEGO Island (1997). - - SITE: https://github.com/pkgforge-dev/isle-portable-AppImage-Enhanced - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/isle-portable.md b/apps/isle-portable.md deleted file mode 100644 index e85e8e0e2..000000000 --- a/apps/isle-portable.md +++ /dev/null @@ -1,8 +0,0 @@ -# ISLE-PORTABLE - - Unofficial, a portable version of LEGO Island (1997). - - SITE: https://github.com/pkgforge-dev/isle-portable-AppImage-Enhanced - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/isoimagewriter b/apps/isoimagewriter new file mode 100644 index 000000000..9de494b88 --- /dev/null +++ b/apps/isoimagewriter @@ -0,0 +1,7 @@ +# isoimagewriter +Write an ISO Image to a USB Disk. + + This tool is part of the KDE Utils Suite. +# SCREENSHOTS: https://cdn.kde.org/screenshots/isoimagewriter/isoimagewriter2.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-utils-appimage \ No newline at end of file diff --git a/apps/isoimagewriter.md b/apps/isoimagewriter.md deleted file mode 100644 index 0e0e7a75c..000000000 --- a/apps/isoimagewriter.md +++ /dev/null @@ -1,14 +0,0 @@ -# ISOIMAGEWRITER - - Write an ISO Image to a USB Disk. - - This tool is part of the KDE Utils Suite. - - ![Screenshot](https://cdn.kde.org/screenshots/isoimagewriter/isoimagewriter2.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-utils-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/isolate b/apps/isolate new file mode 100644 index 000000000..16eab9316 --- /dev/null +++ b/apps/isolate @@ -0,0 +1,3 @@ +# isolate +Lightweight image browser +# SITES: https://github.com/seenaburns/isolate \ No newline at end of file diff --git a/apps/isolate.md b/apps/isolate.md deleted file mode 100644 index 9b852922d..000000000 --- a/apps/isolate.md +++ /dev/null @@ -1,8 +0,0 @@ -# ISOLATE - - Lightweight image browser - - SITE: https://github.com/seenaburns/isolate - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/itch.io b/apps/itch.io new file mode 100644 index 000000000..59a18f845 --- /dev/null +++ b/apps/itch.io @@ -0,0 +1,4 @@ +# itch.io + A simple way to find and share indie games online for free. +# SITES: https://itch.io/app +# SOURCES: https://itch.io/app \ No newline at end of file diff --git a/apps/itch.io.md b/apps/itch.io.md deleted file mode 100644 index fa6d4d560..000000000 --- a/apps/itch.io.md +++ /dev/null @@ -1,8 +0,0 @@ -# ITCH.IO - - A simple way to find and share indie games online for free. - - SITE: https://itch.io/app - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/itgmania b/apps/itgmania new file mode 100644 index 000000000..8111ba632 --- /dev/null +++ b/apps/itgmania @@ -0,0 +1,3 @@ +# itgmania +Unofficial, a fork of StepMania 5.1, an advanced cross-platform rhythm game for home and arcade use. +# SITES: https://github.com/pkgforge-dev/ITGmania-AppImage \ No newline at end of file diff --git a/apps/itgmania.md b/apps/itgmania.md deleted file mode 100644 index 0b2848b36..000000000 --- a/apps/itgmania.md +++ /dev/null @@ -1,8 +0,0 @@ -# ITGMANIA - - Unofficial, a fork of StepMania 5.1, an advanced cross-platform rhythm game for home and arcade use. - - SITE: https://github.com/pkgforge-dev/ITGmania-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/itr2025 b/apps/itr2025 new file mode 100644 index 000000000..77757e1a2 --- /dev/null +++ b/apps/itr2025 @@ -0,0 +1,3 @@ +# itr2025 +Appimage não oficial do ITR2025, declare seu imposto dos seus imóveis rurais (Ano-calendário 2025). +# SITES: https://github.com/pkgforge-dev/ITR2025-AppImage \ No newline at end of file diff --git a/apps/itr2025.md b/apps/itr2025.md deleted file mode 100644 index 7c1b5721c..000000000 --- a/apps/itr2025.md +++ /dev/null @@ -1,8 +0,0 @@ -# ITR2025 - - Appimage não oficial do ITR2025, declare seu imposto dos seus imóveis rurais (Ano-calendário 2025). - - SITE: https://github.com/pkgforge-dev/ITR2025-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/itusb1-manager b/apps/itusb1-manager new file mode 100644 index 000000000..5dfabe3b3 --- /dev/null +++ b/apps/itusb1-manager @@ -0,0 +1,3 @@ +# itusb1-manager +ITUSB1 Manager (itusb1-mngr) is a standalone graphical application to control the ITUSB1 USB Test Switch. It can access multiple devices at a time, and log the captured data to a CSV file. +# SITES: https://github.com/bloguetronica/itusb1-mngr \ No newline at end of file diff --git a/apps/itusb1-manager.md b/apps/itusb1-manager.md deleted file mode 100644 index ec0d105b5..000000000 --- a/apps/itusb1-manager.md +++ /dev/null @@ -1,8 +0,0 @@ -# ITUSB1-MANAGER - - ITUSB1 Manager (itusb1-mngr) is a standalone graphical application to control the ITUSB1 USB Test Switch. It can access multiple devices at a time, and log the captured data to a CSV file. - - SITE: https://github.com/bloguetronica/itusb1-mngr - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/jabref b/apps/jabref new file mode 100644 index 000000000..006df0007 --- /dev/null +++ b/apps/jabref @@ -0,0 +1,3 @@ +# jabref +Graphical Java application for managing BibTeX and biblatex (.bib) databases +# SITES: https://github.com/JabRef/jabref \ No newline at end of file diff --git a/apps/jabref.md b/apps/jabref.md deleted file mode 100644 index 14d9f91da..000000000 --- a/apps/jabref.md +++ /dev/null @@ -1,8 +0,0 @@ -# JABREF - - Graphical Java application for managing BibTeX and biblatex (.bib) databases - - SITE: https://github.com/JabRef/jabref - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/jag b/apps/jag new file mode 100644 index 000000000..ab72bb7b9 --- /dev/null +++ b/apps/jag @@ -0,0 +1,3 @@ +# jag +Jag - program for telemetry veiwing +# SITES: https://github.com/seleznevae/jag \ No newline at end of file diff --git a/apps/jag.md b/apps/jag.md deleted file mode 100644 index 1aca9e32a..000000000 --- a/apps/jag.md +++ /dev/null @@ -1,8 +0,0 @@ -# JAG - - Jag - program for telemetry veiwing - - SITE: https://github.com/seleznevae/jag - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/james b/apps/james new file mode 100644 index 000000000..2bb96fc90 --- /dev/null +++ b/apps/james @@ -0,0 +1,3 @@ +# james +HTTP/HTTPS proxy built in Electron and React +# SITES: https://github.com/james-proxy/james \ No newline at end of file diff --git a/apps/james.md b/apps/james.md deleted file mode 100644 index 563a666dd..000000000 --- a/apps/james.md +++ /dev/null @@ -1,8 +0,0 @@ -# JAMES - - HTTP/HTTPS proxy built in Electron and React - - SITE: https://github.com/james-proxy/james - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/jan b/apps/jan new file mode 100644 index 000000000..6ddc3f4ef --- /dev/null +++ b/apps/jan @@ -0,0 +1,4 @@ +# jan +Jan is an open source alternative to ChatGPT that runs 100% offline on your computer. +# SCREENSHOTS: https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io/assets/88724353/c71d7e22-16dc-4766-84e9-a4c63523b2e0 +# SITES: https://github.com/janhq/jan \ No newline at end of file diff --git a/apps/jan.md b/apps/jan.md deleted file mode 100644 index 7c2ed8629..000000000 --- a/apps/jan.md +++ /dev/null @@ -1,10 +0,0 @@ -# JAN - - Jan is an open source alternative to ChatGPT that runs 100% offline on your computer. - - ![demo](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io/assets/88724353/c71d7e22-16dc-4766-84e9-a4c63523b2e0) - - SITE: https://github.com/janhq/jan - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/janice b/apps/janice new file mode 100644 index 000000000..0ac2882ff --- /dev/null +++ b/apps/janice @@ -0,0 +1,3 @@ +# janice +A desktop app for viewing large JSON files. +# SITES: https://github.com/ErikKalkoken/janice \ No newline at end of file diff --git a/apps/janice.md b/apps/janice.md deleted file mode 100644 index e6b689d0c..000000000 --- a/apps/janice.md +++ /dev/null @@ -1,8 +0,0 @@ -# JANICE - - A desktop app for viewing large JSON files. - - SITE: https://github.com/ErikKalkoken/janice - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/janus b/apps/janus new file mode 100644 index 000000000..46c857100 --- /dev/null +++ b/apps/janus @@ -0,0 +1,3 @@ +# janus +Simple text editor. +# SITES: https://github.com/gholmann16/janus \ No newline at end of file diff --git a/apps/janus.md b/apps/janus.md deleted file mode 100644 index 99c66c4f0..000000000 --- a/apps/janus.md +++ /dev/null @@ -1,8 +0,0 @@ -# JANUS - - Simple text editor. - - SITE: https://github.com/gholmann16/janus - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/jazz2 b/apps/jazz2 new file mode 100644 index 000000000..0f750fc88 --- /dev/null +++ b/apps/jazz2 @@ -0,0 +1,4 @@ +# jazz2 +Jazz² Resurrection: Open-source reimplementation of Jazz Jackrabbit 2. +# SCREENSHOTS: https://raw.githubusercontent.com/deathkiller/jazz2/main/Docs/Preview.gif +# SITES: https://github.com/deathkiller/jazz2 \ No newline at end of file diff --git a/apps/jazz2.md b/apps/jazz2.md deleted file mode 100644 index f9e26f9fb..000000000 --- a/apps/jazz2.md +++ /dev/null @@ -1,10 +0,0 @@ -# JAZZ2 - - Jazz² Resurrection: Open-source reimplementation of Jazz Jackrabbit 2. - - ![GIF](https://raw.githubusercontent.com/deathkiller/jazz2/main/Docs/Preview.gif) - - SITE: https://github.com/deathkiller/jazz2 - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/jdappstreamedit b/apps/jdappstreamedit new file mode 100644 index 000000000..e71b68feb --- /dev/null +++ b/apps/jdappstreamedit @@ -0,0 +1,3 @@ +# jdappstreamedit +A graphical Program to create and edit AppStream files. +# SITES: https://sourceforge.net/projects/jdappstreamedit \ No newline at end of file diff --git a/apps/jdappstreamedit.md b/apps/jdappstreamedit.md deleted file mode 100644 index 69fd3d1f7..000000000 --- a/apps/jdappstreamedit.md +++ /dev/null @@ -1,8 +0,0 @@ -# JDAPPSTREAMEDIT - - A graphical Program to create and edit AppStream files. - - SITE: https://sourceforge.net/projects/jdappstreamedit - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/jddesktopentryedit b/apps/jddesktopentryedit new file mode 100644 index 000000000..d8afa5e94 --- /dev/null +++ b/apps/jddesktopentryedit @@ -0,0 +1,3 @@ +# jddesktopentryedit +A graphical Program to create and edit Desktop Entries. +# SITES: https://sourceforge.net/projects/jddesktopentryedit \ No newline at end of file diff --git a/apps/jddesktopentryedit.md b/apps/jddesktopentryedit.md deleted file mode 100644 index 507fd43ce..000000000 --- a/apps/jddesktopentryedit.md +++ /dev/null @@ -1,8 +0,0 @@ -# JDDESKTOPENTRYEDIT - - A graphical Program to create and edit Desktop Entries. - - SITE: https://sourceforge.net/projects/jddesktopentryedit - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/jdminecraftlauncher b/apps/jdminecraftlauncher new file mode 100644 index 000000000..1cc8b3d8c --- /dev/null +++ b/apps/jdminecraftlauncher @@ -0,0 +1,3 @@ +# jdminecraftlauncher +Unofficial classic styled Minecraft Launcher. +# SITES: https://sourceforge.net/projects/jdminecraftlauncher \ No newline at end of file diff --git a/apps/jdminecraftlauncher.md b/apps/jdminecraftlauncher.md deleted file mode 100644 index cb65ef0f1..000000000 --- a/apps/jdminecraftlauncher.md +++ /dev/null @@ -1,8 +0,0 @@ -# JDMINECRAFTLAUNCHER - - Unofficial classic styled Minecraft Launcher. - - SITE: https://sourceforge.net/projects/jdminecraftlauncher - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/jdmrpackinstaller b/apps/jdmrpackinstaller new file mode 100644 index 000000000..2debe7ac2 --- /dev/null +++ b/apps/jdmrpackinstaller @@ -0,0 +1,3 @@ +# jdmrpackinstaller +Install Modrinth modpacks. +# SITES: https://sourceforge.net/projects/jdmrpackinstaller/ \ No newline at end of file diff --git a/apps/jdmrpackinstaller.md b/apps/jdmrpackinstaller.md deleted file mode 100644 index 332d8cb24..000000000 --- a/apps/jdmrpackinstaller.md +++ /dev/null @@ -1,8 +0,0 @@ -# JDMRPACKINSTALLER - - Install Modrinth modpacks. - - SITE: https://sourceforge.net/projects/jdmrpackinstaller/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/jdnbtexplorer b/apps/jdnbtexplorer new file mode 100644 index 000000000..a833c81f8 --- /dev/null +++ b/apps/jdnbtexplorer @@ -0,0 +1,3 @@ +# jdnbtexplorer +A Editor for Minecraft NBT files. +# SITES: https://sourceforge.net/projects/jdnbtexplorer \ No newline at end of file diff --git a/apps/jdnbtexplorer.md b/apps/jdnbtexplorer.md deleted file mode 100644 index 638269858..000000000 --- a/apps/jdnbtexplorer.md +++ /dev/null @@ -1,8 +0,0 @@ -# JDNBTEXPLORER - - A Editor for Minecraft NBT files. - - SITE: https://sourceforge.net/projects/jdnbtexplorer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/jdownloader2 b/apps/jdownloader2 new file mode 100644 index 000000000..fd28d115d --- /dev/null +++ b/apps/jdownloader2 @@ -0,0 +1,5 @@ +# jdownloader2 +JDownloader is a free, open-source download management tool with a huge community that makes downloading as easy and fast as it should be. Users can start, stop or pause downloads, set bandwith limitations, auto-extract archives and much more. It's an easy-to-extend framework that can save hours of your valuable time every day! +# SCREENSHOTS: https://github.com/user-attachments/assets/22ac990d-8f35-4dc3-b9f8-b0faf8c24827 +# SITES: https://jdownloader.org/ +# SOURCES: https://github.com/Shikakiben/JDownloader2-AppImage \ No newline at end of file diff --git a/apps/jdownloader2.md b/apps/jdownloader2.md deleted file mode 100644 index 044abf187..000000000 --- a/apps/jdownloader2.md +++ /dev/null @@ -1,16 +0,0 @@ -# JDOWNLOADER2 - - - -JDownloader is a free, open-source download management tool with a huge community that makes downloading as easy and fast as it should be. Users can start, stop or pause downloads, set bandwith limitations, auto-extract archives and much more. It's an easy-to-extend framework that can save hours of your valuable time every day! - - -![Screenshot](https://github.com/user-attachments/assets/22ac990d-8f35-4dc3-b9f8-b0faf8c24827) - - - SITE: https://jdownloader.org/ - - SOURCE: https://github.com/Shikakiben/JDownloader2-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/jdreplace b/apps/jdreplace new file mode 100644 index 000000000..2f66bce4d --- /dev/null +++ b/apps/jdreplace @@ -0,0 +1,3 @@ +# jdreplace +With jdReplace you can replace a text in all files of a directory. +# SITES: https://sourceforge.net/projects/jdreplace/ \ No newline at end of file diff --git a/apps/jdreplace.md b/apps/jdreplace.md deleted file mode 100644 index 66a316b3a..000000000 --- a/apps/jdreplace.md +++ /dev/null @@ -1,8 +0,0 @@ -# JDREPLACE - - With jdReplace you can replace a text in all files of a directory. - - SITE: https://sourceforge.net/projects/jdreplace/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/jdtextedit b/apps/jdtextedit new file mode 100644 index 000000000..8a26cbf59 --- /dev/null +++ b/apps/jdtextedit @@ -0,0 +1,3 @@ +# jdtextedit +jdTextEdit is a powerful texteditor with a lot of features. +# SITES: https://sourceforge.net/projects/jdtextedit \ No newline at end of file diff --git a/apps/jdtextedit.md b/apps/jdtextedit.md deleted file mode 100644 index bb1b2d04b..000000000 --- a/apps/jdtextedit.md +++ /dev/null @@ -1,8 +0,0 @@ -# JDTEXTEDIT - - jdTextEdit is a powerful texteditor with a lot of features. - - SITE: https://sourceforge.net/projects/jdtextedit - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/jellyamp b/apps/jellyamp new file mode 100644 index 000000000..13e446925 --- /dev/null +++ b/apps/jellyamp @@ -0,0 +1,3 @@ +# jellyamp +A stylish, cross-platform desktop client for listening to music from a Jellyfin server. Inspired by Plexamp. +# SITES: https://github.com/m0ngr31/jellyamp \ No newline at end of file diff --git a/apps/jellyamp.md b/apps/jellyamp.md deleted file mode 100644 index ec3f1cdbf..000000000 --- a/apps/jellyamp.md +++ /dev/null @@ -1,8 +0,0 @@ -# JELLYAMP - - A stylish, cross-platform desktop client for listening to music from a Jellyfin server. Inspired by Plexamp. - - SITE: https://github.com/m0ngr31/jellyamp - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/jellyfin b/apps/jellyfin new file mode 100644 index 000000000..def1e3176 --- /dev/null +++ b/apps/jellyfin @@ -0,0 +1,5 @@ +# jellyfin +Jellyfin is the volunteer-built media solution that puts you in control of your media. Stream to any device from your own server, with no strings attached. + + Your media, your server, your way. +# SITES: https://jellyfin.org \ No newline at end of file diff --git a/apps/jellyfin.md b/apps/jellyfin.md deleted file mode 100644 index ea5f13fdd..000000000 --- a/apps/jellyfin.md +++ /dev/null @@ -1,10 +0,0 @@ -# JELLYFIN - - Jellyfin is the volunteer-built media solution that puts you in control of your media. Stream to any device from your own server, with no strings attached. - - Your media, your server, your way. - - SITE: https://jellyfin.org - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/jexiftoolgui b/apps/jexiftoolgui new file mode 100644 index 000000000..0eec2227f --- /dev/null +++ b/apps/jexiftoolgui @@ -0,0 +1,3 @@ +# jexiftoolgui +jExifToolGUI is a multi-platform java/Swing graphical frontend for the excellent command-line ExifTool application by Phil Harvey. +# SITES: https://github.com/hvdwolf/jExifToolGUI \ No newline at end of file diff --git a/apps/jexiftoolgui.md b/apps/jexiftoolgui.md deleted file mode 100644 index 16872becc..000000000 --- a/apps/jexiftoolgui.md +++ /dev/null @@ -1,8 +0,0 @@ -# JEXIFTOOLGUI - - jExifToolGUI is a multi-platform java/Swing graphical frontend for the excellent command-line ExifTool application by Phil Harvey. - - SITE: https://github.com/hvdwolf/jExifToolGUI - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/jfcord b/apps/jfcord new file mode 100644 index 000000000..a37c44a15 --- /dev/null +++ b/apps/jfcord @@ -0,0 +1,3 @@ +# jfcord +An Jellyfin rich presence client for Discord. +# SITES: https://github.com/Chicken/JFCord \ No newline at end of file diff --git a/apps/jfcord.md b/apps/jfcord.md deleted file mode 100644 index dd70cd3fd..000000000 --- a/apps/jfcord.md +++ /dev/null @@ -1,8 +0,0 @@ -# JFCORD - - An Jellyfin rich presence client for Discord. - - SITE: https://github.com/Chicken/JFCord - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/jgenesis b/apps/jgenesis new file mode 100644 index 000000000..07be0b1b3 --- /dev/null +++ b/apps/jgenesis @@ -0,0 +1,3 @@ +# jgenesis +Sega Genesis, Sega CD, SNES, Master System, Game Gear emulator (GUI). +# SITES: https://github.com/jsgroth/jgenesis \ No newline at end of file diff --git a/apps/jgenesis-cli b/apps/jgenesis-cli new file mode 100644 index 000000000..e8a9bc2a7 --- /dev/null +++ b/apps/jgenesis-cli @@ -0,0 +1,3 @@ +# jgenesis-cli +Sega Genesis, Sega CD, SNES, Master System, Game Gear emulator (CLI). +# SITES: https://github.com/jsgroth/jgenesis \ No newline at end of file diff --git a/apps/jgenesis-cli.md b/apps/jgenesis-cli.md deleted file mode 100644 index 835d4d584..000000000 --- a/apps/jgenesis-cli.md +++ /dev/null @@ -1,8 +0,0 @@ -# JGENESIS-CLI - - Sega Genesis, Sega CD, SNES, Master System, Game Gear emulator (CLI). - - SITE: https://github.com/jsgroth/jgenesis - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/jgenesis.md b/apps/jgenesis.md deleted file mode 100644 index 3d5abd84e..000000000 --- a/apps/jgenesis.md +++ /dev/null @@ -1,8 +0,0 @@ -# JGENESIS - - Sega Genesis, Sega CD, SNES, Master System, Game Gear emulator (GUI). - - SITE: https://github.com/jsgroth/jgenesis - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/jgrasp b/apps/jgrasp new file mode 100644 index 000000000..074b22c55 --- /dev/null +++ b/apps/jgrasp @@ -0,0 +1,3 @@ +# jgrasp +An Integrated Development Environment with Visualizations for Improving Software Comprehensibility +# SITES: https://www.jgrasp.org/ \ No newline at end of file diff --git a/apps/jgrasp.md b/apps/jgrasp.md deleted file mode 100644 index 797a5208b..000000000 --- a/apps/jgrasp.md +++ /dev/null @@ -1,8 +0,0 @@ -# JGRASP - - An Integrated Development Environment with Visualizations for Improving Software Comprehensibility - - SITE: https://www.jgrasp.org/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/jimud b/apps/jimud new file mode 100644 index 000000000..c20447e42 --- /dev/null +++ b/apps/jimud @@ -0,0 +1,3 @@ +# jimud +MUD client for ShadowMUD.com, based on webclient. +# SITES: http://www.shadowmud.com/ \ No newline at end of file diff --git a/apps/jimud.md b/apps/jimud.md deleted file mode 100644 index a30b39398..000000000 --- a/apps/jimud.md +++ /dev/null @@ -1,8 +0,0 @@ -# JIMUD - - MUD client for ShadowMUD.com, based on webclient. - - SITE: http://www.shadowmud.com/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/jira-timer b/apps/jira-timer new file mode 100644 index 000000000..799e5fecf --- /dev/null +++ b/apps/jira-timer @@ -0,0 +1,3 @@ +# jira-timer +Menubar app for JIRA time logging built with React and Electron. +# SITES: https://github.com/alexcroox/jira-timer-menubar \ No newline at end of file diff --git a/apps/jira-timer.md b/apps/jira-timer.md deleted file mode 100644 index dbda98f47..000000000 --- a/apps/jira-timer.md +++ /dev/null @@ -1,8 +0,0 @@ -# JIRA-TIMER - - Menubar app for JIRA time logging built with React and Electron. - - SITE: https://github.com/alexcroox/jira-timer-menubar - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/jitsi-meet b/apps/jitsi-meet new file mode 100644 index 000000000..cf4df082f --- /dev/null +++ b/apps/jitsi-meet @@ -0,0 +1,3 @@ +# jitsi-meet +Jitsi Meet Desktop App +# SITES: https://github.com/jitsi/jitsi-meet-electron \ No newline at end of file diff --git a/apps/jitsi-meet.md b/apps/jitsi-meet.md deleted file mode 100644 index 7c4be8667..000000000 --- a/apps/jitsi-meet.md +++ /dev/null @@ -1,8 +0,0 @@ -# JITSI-MEET - - Jitsi Meet Desktop App - - SITE: https://github.com/jitsi/jitsi-meet-electron - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/jklubtv b/apps/jklubtv new file mode 100644 index 000000000..2ee64c826 --- /dev/null +++ b/apps/jklubtv @@ -0,0 +1,3 @@ +# jklubtv +Chess Round Robin Tournament Manager +# SITES: https://github.com/mars7105/Chess-Round-Robin-Manager \ No newline at end of file diff --git a/apps/jklubtv.md b/apps/jklubtv.md deleted file mode 100644 index ced6732f6..000000000 --- a/apps/jklubtv.md +++ /dev/null @@ -1,8 +0,0 @@ -# JKLUBTV - - Chess Round Robin Tournament Manager - - SITE: https://github.com/mars7105/Chess-Round-Robin-Manager - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/jless b/apps/jless new file mode 100644 index 000000000..8d7359a23 --- /dev/null +++ b/apps/jless @@ -0,0 +1,3 @@ +# jless +jless is a command-line JSON viewer designed for reading, exploring, and searching through JSON data. +# SITES: https://github.com/PaulJuliusMartinez/jless \ No newline at end of file diff --git a/apps/jless.md b/apps/jless.md deleted file mode 100644 index 8469856e0..000000000 --- a/apps/jless.md +++ /dev/null @@ -1,8 +0,0 @@ -# JLESS - - jless is a command-line JSON viewer designed for reading, exploring, and searching through JSON data. - - SITE: https://github.com/PaulJuliusMartinez/jless - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/jnv b/apps/jnv new file mode 100644 index 000000000..399f5bb5e --- /dev/null +++ b/apps/jnv @@ -0,0 +1,3 @@ +# jnv +Interactive JSON filter using jq +# SITES: https://github.com/ynqa/jnv \ No newline at end of file diff --git a/apps/jnv.md b/apps/jnv.md deleted file mode 100644 index d0b87d476..000000000 --- a/apps/jnv.md +++ /dev/null @@ -1,8 +0,0 @@ -# JNV - - Interactive JSON filter using jq - - SITE: https://github.com/ynqa/jnv - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/joaldesktop b/apps/joaldesktop new file mode 100644 index 000000000..b9f7e9d4b --- /dev/null +++ b/apps/joaldesktop @@ -0,0 +1,3 @@ +# joaldesktop +Electron application boilerplate based on React, React Router, Webpack. +# SITES: https://github.com/anthonyraymond/joal-desktop \ No newline at end of file diff --git a/apps/joaldesktop.md b/apps/joaldesktop.md deleted file mode 100644 index 819c6f25a..000000000 --- a/apps/joaldesktop.md +++ /dev/null @@ -1,8 +0,0 @@ -# JOALDESKTOP - - Electron application boilerplate based on React, React Router, Webpack. - - SITE: https://github.com/anthonyraymond/joal-desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/join b/apps/join new file mode 100644 index 000000000..ec2d6d1d5 --- /dev/null +++ b/apps/join @@ -0,0 +1,4 @@ +# join + Of two files on a common field. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/join-desktop b/apps/join-desktop new file mode 100644 index 000000000..e995cbb84 --- /dev/null +++ b/apps/join-desktop @@ -0,0 +1,3 @@ +# join-desktop +A companion app for the Join website +# SITES: https://github.com/joaomgcd/JoinDesktop \ No newline at end of file diff --git a/apps/join-desktop.md b/apps/join-desktop.md deleted file mode 100644 index bebe3619f..000000000 --- a/apps/join-desktop.md +++ /dev/null @@ -1,8 +0,0 @@ -# JOIN-DESKTOP - - A companion app for the Join website - - SITE: https://github.com/joaomgcd/JoinDesktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/join.md b/apps/join.md deleted file mode 100644 index 22adf9f31..000000000 --- a/apps/join.md +++ /dev/null @@ -1,8 +0,0 @@ -# JOIN - - Of two files on a common field. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/joplin b/apps/joplin new file mode 100644 index 000000000..cb04c69cd --- /dev/null +++ b/apps/joplin @@ -0,0 +1,3 @@ +# joplin +Joplin - an open source note taking and to-do application with synchronization capabilities for Windows, macOS, Linux, Android and iOS. +# SITES: https://github.com/laurent22/joplin \ No newline at end of file diff --git a/apps/joplin-beta b/apps/joplin-beta new file mode 100644 index 000000000..e9ff5b524 --- /dev/null +++ b/apps/joplin-beta @@ -0,0 +1,3 @@ +# joplin-beta +The latest beta AppImage of Joplin, a cross-platform note taking and to-do app. +# SITES: https://github.com/laurent22/joplin \ No newline at end of file diff --git a/apps/joplin-beta.md b/apps/joplin-beta.md deleted file mode 100644 index b8fa45edd..000000000 --- a/apps/joplin-beta.md +++ /dev/null @@ -1,8 +0,0 @@ -# JOPLIN-BETA - - The latest beta AppImage of Joplin, a cross-platform note taking and to-do app. - - SITE: https://github.com/laurent22/joplin - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/joplin.md b/apps/joplin.md deleted file mode 100644 index 850194a99..000000000 --- a/apps/joplin.md +++ /dev/null @@ -1,8 +0,0 @@ -# JOPLIN - - Joplin - an open source note taking and to-do application with synchronization capabilities for Windows, macOS, Linux, Android and iOS. - - SITE: https://github.com/laurent22/joplin - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/jottem b/apps/jottem new file mode 100644 index 000000000..71bf988c5 --- /dev/null +++ b/apps/jottem @@ -0,0 +1,3 @@ +# jottem +A lean, low friction terminal app for managing markdown notes. +# SITES: https://github.com/dogue/jottem \ No newline at end of file diff --git a/apps/jottem.md b/apps/jottem.md deleted file mode 100644 index 4593e8499..000000000 --- a/apps/jottem.md +++ /dev/null @@ -1,8 +0,0 @@ -# JOTTEM - - A lean, low friction terminal app for managing markdown notes. - - SITE: https://github.com/dogue/jottem - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/journalv b/apps/journalv new file mode 100644 index 000000000..f6fb68b65 --- /dev/null +++ b/apps/journalv @@ -0,0 +1,3 @@ +# journalv +Journaling app for your days and dreams. +# SITES: https://github.com/ahme-dev/journalv \ No newline at end of file diff --git a/apps/journalv.md b/apps/journalv.md deleted file mode 100644 index 514173e07..000000000 --- a/apps/journalv.md +++ /dev/null @@ -1,8 +0,0 @@ -# JOURNALV - - Journaling app for your days and dreams. - - SITE: https://github.com/ahme-dev/journalv - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/joy2droidx b/apps/joy2droidx new file mode 100644 index 000000000..7f7b161cf --- /dev/null +++ b/apps/joy2droidx @@ -0,0 +1,3 @@ +# joy2droidx +Turn your Android phone into virtual Xbox 360 controller or DualShock 4 +# SITES: https://github.com/OzymandiasTheGreat/Joy2DroidX-server \ No newline at end of file diff --git a/apps/joy2droidx.md b/apps/joy2droidx.md deleted file mode 100644 index 3934f2734..000000000 --- a/apps/joy2droidx.md +++ /dev/null @@ -1,8 +0,0 @@ -# JOY2DROIDX - - Turn your Android phone into virtual Xbox 360 controller or DualShock 4 - - SITE: https://github.com/OzymandiasTheGreat/Joy2DroidX-server - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/jpg-glitch-electron b/apps/jpg-glitch-electron new file mode 100644 index 000000000..69f859fda --- /dev/null +++ b/apps/jpg-glitch-electron @@ -0,0 +1,3 @@ +# jpg-glitch-electron +Desktop app for glitching images. +# SITES: https://github.com/snorpey/jpg-glitch-electron \ No newline at end of file diff --git a/apps/jpg-glitch-electron.md b/apps/jpg-glitch-electron.md deleted file mode 100644 index cdd90c125..000000000 --- a/apps/jpg-glitch-electron.md +++ /dev/null @@ -1,8 +0,0 @@ -# JPG-GLITCH-ELECTRON - - Desktop app for glitching images. - - SITE: https://github.com/snorpey/jpg-glitch-electron - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/jq b/apps/jq new file mode 100644 index 000000000..2b378b189 --- /dev/null +++ b/apps/jq @@ -0,0 +1,3 @@ +# jq +Command-line JSON processor. +# SITES: https://github.com/jqlang/jq \ No newline at end of file diff --git a/apps/jq.md b/apps/jq.md deleted file mode 100644 index 01cfe9d68..000000000 --- a/apps/jq.md +++ /dev/null @@ -1,8 +0,0 @@ -# JQ - - Command-line JSON processor. - - SITE: https://github.com/jqlang/jq - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/jqp b/apps/jqp new file mode 100644 index 000000000..dfb2b27b4 --- /dev/null +++ b/apps/jqp @@ -0,0 +1,3 @@ +# jqp +A TUI playground to experiment with jq +# SITES: https://github.com/noahgorstein/jqp \ No newline at end of file diff --git a/apps/jqp.md b/apps/jqp.md deleted file mode 100644 index 43258f6f2..000000000 --- a/apps/jqp.md +++ /dev/null @@ -1,8 +0,0 @@ -# JQP - - A TUI playground to experiment with jq - - SITE: https://github.com/noahgorstein/jqp - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/jreleaser b/apps/jreleaser new file mode 100644 index 000000000..423ad3099 --- /dev/null +++ b/apps/jreleaser @@ -0,0 +1,3 @@ +# jreleaser +The quick and effortless way to release your project! +# SITES: https://github.com/jreleaser/jreleaser-appimage \ No newline at end of file diff --git a/apps/jreleaser.md b/apps/jreleaser.md deleted file mode 100644 index be9143df0..000000000 --- a/apps/jreleaser.md +++ /dev/null @@ -1,8 +0,0 @@ -# JRELEASER - - The quick and effortless way to release your project! - - SITE: https://github.com/jreleaser/jreleaser-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/jscad-desktop b/apps/jscad-desktop new file mode 100644 index 000000000..63fba92b4 --- /dev/null +++ b/apps/jscad-desktop @@ -0,0 +1,3 @@ +# jscad-desktop +jscad desktop application +# SITES: https://github.com/jscad/jscad-desktop \ No newline at end of file diff --git a/apps/jscad-desktop.md b/apps/jscad-desktop.md deleted file mode 100644 index f1c400760..000000000 --- a/apps/jscad-desktop.md +++ /dev/null @@ -1,8 +0,0 @@ -# JSCAD-DESKTOP - - jscad desktop application - - SITE: https://github.com/jscad/jscad-desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/juggernaut b/apps/juggernaut new file mode 100644 index 000000000..e139e03c1 --- /dev/null +++ b/apps/juggernaut @@ -0,0 +1,3 @@ +# juggernaut +Decentralized messaging and payments +# SITES: https://github.com/LN-Juggernaut/juggernaut-desktop \ No newline at end of file diff --git a/apps/juggernaut.md b/apps/juggernaut.md deleted file mode 100644 index 2693a7cf0..000000000 --- a/apps/juggernaut.md +++ /dev/null @@ -1,8 +0,0 @@ -# JUGGERNAUT - - Decentralized messaging and payments - - SITE: https://github.com/LN-Juggernaut/juggernaut-desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/julius b/apps/julius new file mode 100644 index 000000000..08cae77fb --- /dev/null +++ b/apps/julius @@ -0,0 +1,3 @@ +# julius +An open source re-implementation of the game Caesar III +# SITES: https://github.com/bvschaik/julius \ No newline at end of file diff --git a/apps/julius.md b/apps/julius.md deleted file mode 100644 index fd76ea803..000000000 --- a/apps/julius.md +++ /dev/null @@ -1,8 +0,0 @@ -# JULIUS - - An open source re-implementation of the game Caesar III - - SITE: https://github.com/bvschaik/julius - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/jumble b/apps/jumble new file mode 100644 index 000000000..e0ae5a855 --- /dev/null +++ b/apps/jumble @@ -0,0 +1,3 @@ +# jumble +A user-friendly Nostr client for exploring relay feeds. +# SITES: https://github.com/CodyTseng/jumble \ No newline at end of file diff --git a/apps/jumble.md b/apps/jumble.md deleted file mode 100644 index e734fa437..000000000 --- a/apps/jumble.md +++ /dev/null @@ -1,8 +0,0 @@ -# JUMBLE - - A user-friendly Nostr client for exploring relay feeds. - - SITE: https://github.com/CodyTseng/jumble - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/junest b/apps/junest new file mode 100644 index 000000000..149126255 --- /dev/null +++ b/apps/junest @@ -0,0 +1,15 @@ +# junest +JuNest (Jailed User Nest) is a lightweight Arch Linux based distribution that allows the creation of disposable and partially isolated GNU/Linux environments within any generic GNU/Linux host OS and without requiring root privileges to install packages. + + JuNest is built around pacman, the Arch Linux package manager, which allows access to a wide range of packages from the Arch Linux repositories. + + The main advantages of using JuNest include: + + - Install packages without root privileges. + - Create partially isolated environments in which you can install packages without risking mishaps on production systems. + - Access a wider range of packages, particularly on GNU/Linux distros with comparatively limited repositories (such as CentOS and Red Hat). + - Run on a different architecture from the host OS via QEMU. + - Available for x86_64 and arm architectures but you can build your own image from scratch too! + - All Arch Linux lovers can enjoy their favourite distro everywhere! +# SITES: https://github.com/fsquillace/junest +# SOURCES: https://github.com/fsquillace/junest \ No newline at end of file diff --git a/apps/junest.md b/apps/junest.md deleted file mode 100644 index ce98696c7..000000000 --- a/apps/junest.md +++ /dev/null @@ -1,30 +0,0 @@ -# JUNEST - - JuNest (Jailed User Nest) is a lightweight Arch Linux based distribution that allows the creation of disposable and partially isolated GNU/Linux environments within any generic GNU/Linux host OS and without requiring root privileges to install packages. - - JuNest is built around pacman, the Arch Linux package manager, which allows access to a wide range of packages from the Arch Linux repositories. - - The main advantages of using JuNest include: - - - Install packages without root privileges. - - Create partially isolated environments in which you can install packages without risking mishaps on production systems. - - Access a wider range of packages, particularly on GNU/Linux distros with comparatively limited repositories (such as CentOS and Red Hat). - - Run on a different architecture from the host OS via QEMU. - - Available for x86_64 and arm architectures but you can build your own image from scratch too! - - All Arch Linux lovers can enjoy their favourite distro everywhere! - - NOTE: by installing "Junest" using "AM" you're installing it the same way of - the official PKGBUILD "junest-git", available on the Arch User Repository (AUR) so if you want to use the wrappers to run commands installed in JuNest directly from host, you only need to add this line in your ~/.bashrc: - - `export PATH="$PATH:~/.junest/usr/bin_wrappers"` - - No other steps are needed. The installation script already creates the links - for "junest" and "sudoj" in `/usr/local/bin` (or `~/.local/bin` if you install - Junest with AppMan). - - For more info go to the main page of the repository of Junest, on GitHub. - - SITE & SOURCE: https://github.com/fsquillace/junest - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kade b/apps/kade new file mode 100644 index 000000000..f57f95d93 --- /dev/null +++ b/apps/kade @@ -0,0 +1,3 @@ +# kade +A desktop application for Q Methodology +# SITES: https://github.com/shawnbanasick/kade \ No newline at end of file diff --git a/apps/kade.md b/apps/kade.md deleted file mode 100644 index 6ff328ac4..000000000 --- a/apps/kade.md +++ /dev/null @@ -1,8 +0,0 @@ -# KADE - - A desktop application for Q Methodology - - SITE: https://github.com/shawnbanasick/kade - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kadium b/apps/kadium new file mode 100644 index 000000000..79ab87480 --- /dev/null +++ b/apps/kadium @@ -0,0 +1,3 @@ +# kadium +App for staying ontop of YouTube channels' uploads +# SITES: https://github.com/probablykasper/kadium \ No newline at end of file diff --git a/apps/kadium.md b/apps/kadium.md deleted file mode 100644 index 4b3c7016f..000000000 --- a/apps/kadium.md +++ /dev/null @@ -1,8 +0,0 @@ -# KADIUM - - App for staying ontop of YouTube channels' uploads - - SITE: https://github.com/probablykasper/kadium - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kaffeine b/apps/kaffeine new file mode 100644 index 000000000..10bbd8bc1 --- /dev/null +++ b/apps/kaffeine @@ -0,0 +1,3 @@ +# kaffeine +Unofficial, Media player with support for digital television (DVB-C/S/S2/T, ATSC, CI/CAM). +# SITES: https://github.com/pkgforge-dev/kaffeine-AppImage \ No newline at end of file diff --git a/apps/kaffeine.md b/apps/kaffeine.md deleted file mode 100644 index 94c139c81..000000000 --- a/apps/kaffeine.md +++ /dev/null @@ -1,8 +0,0 @@ -# KAFFEINE - - Unofficial, Media player with support for digital television (DVB-C/S/S2/T, ATSC, CI/CAM). - - SITE: https://github.com/pkgforge-dev/kaffeine-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/kage b/apps/kage new file mode 100644 index 000000000..fe176125b --- /dev/null +++ b/apps/kage @@ -0,0 +1,3 @@ +# kage +Kage is Graphical User Interface for Metasploit Meterpreter and Session Handler +# SITES: https://github.com/WayzDev/Kage \ No newline at end of file diff --git a/apps/kage.md b/apps/kage.md deleted file mode 100644 index ff5012f8e..000000000 --- a/apps/kage.md +++ /dev/null @@ -1,8 +0,0 @@ -# KAGE - - Kage is Graphical User Interface for Metasploit Meterpreter and Session Handler - - SITE: https://github.com/WayzDev/Kage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kaidan b/apps/kaidan new file mode 100644 index 000000000..123e23413 --- /dev/null +++ b/apps/kaidan @@ -0,0 +1,4 @@ +# kaidan +A QtQuick Jabber client +# SITES: : https://kaidan.im +# SOURCES: https://github.com/KaidanIM/Kaidan \ No newline at end of file diff --git a/apps/kaidan.md b/apps/kaidan.md deleted file mode 100644 index 1dec8199c..000000000 --- a/apps/kaidan.md +++ /dev/null @@ -1,10 +0,0 @@ -# KAIDAN - - A QtQuick Jabber client - - SITE: : https://kaidan.im - - SOURCE: https://github.com/KaidanIM/Kaidan - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kajongg b/apps/kajongg new file mode 100644 index 000000000..acc01b346 --- /dev/null +++ b/apps/kajongg @@ -0,0 +1,16 @@ +# kajongg +Kajongg is the ancient Chinese board game for 4 players. Kajongg can be used + in two different ways: Scoring a manual game where you play as always and + use Kajongg for the computation of scores and for bookkeeping. Or you can + use Kajongg to play against any combination of other human players or + computer players. + + This game is part of the KDE Games suite. + + USAGE (from the command line): + + kdegames -h (shows the list of games) + kdegames $GAME (launches the selected game) +# SCREENSHOTS: https://cdn.kde.org/screenshots/kajongg/kajongg.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-games-suite-appimage \ No newline at end of file diff --git a/apps/kajongg.md b/apps/kajongg.md deleted file mode 100644 index ff4e07ddb..000000000 --- a/apps/kajongg.md +++ /dev/null @@ -1,23 +0,0 @@ -# KAJONGG - - Kajongg is the ancient Chinese board game for 4 players. Kajongg can be used - in two different ways: Scoring a manual game where you play as always and - use Kajongg for the computation of scores and for bookkeeping. Or you can - use Kajongg to play against any combination of other human players or - computer players. - - This game is part of the KDE Games suite. - - USAGE (from the command line): - - kdegames -h (shows the list of games) - kdegames $GAME (launches the selected game) - - ![Screenshot](https://cdn.kde.org/screenshots/kajongg/kajongg.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-games-suite-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kalba b/apps/kalba new file mode 100644 index 000000000..a6780b03c --- /dev/null +++ b/apps/kalba @@ -0,0 +1,3 @@ +# kalba +Sentence mining tool. +# SITES: https://github.com/BrewingWeasel/Kalba \ No newline at end of file diff --git a/apps/kalba.md b/apps/kalba.md deleted file mode 100644 index b405ca9fa..000000000 --- a/apps/kalba.md +++ /dev/null @@ -1,8 +0,0 @@ -# KALBA - - Sentence mining tool. - - SITE: https://github.com/BrewingWeasel/Kalba - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kalc b/apps/kalc new file mode 100644 index 000000000..f5fc235cd --- /dev/null +++ b/apps/kalc @@ -0,0 +1,3 @@ +# kalc +A complex numbers, 2d/3d graphing, arbitrary precision, vector/matrix, cli calculator with real-time output and support for units +# SITES: https://github.com/bgkillas/kalc \ No newline at end of file diff --git a/apps/kalc.md b/apps/kalc.md deleted file mode 100644 index dfe6f267a..000000000 --- a/apps/kalc.md +++ /dev/null @@ -1,8 +0,0 @@ -# KALC - - A complex numbers, 2d/3d graphing, arbitrary precision, vector/matrix, cli calculator with real-time output and support for units - - SITE: https://github.com/bgkillas/kalc - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kalker b/apps/kalker new file mode 100644 index 000000000..0534412ff --- /dev/null +++ b/apps/kalker @@ -0,0 +1,3 @@ +# kalker +Scientific calculator with math syntax that supports user-defined variables and functions, complex numbers, and estimation of derivatives and integrals. +# SITES: https://github.com/PaddiM8/kalker \ No newline at end of file diff --git a/apps/kalker.md b/apps/kalker.md deleted file mode 100644 index a37afef54..000000000 --- a/apps/kalker.md +++ /dev/null @@ -1,8 +0,0 @@ -# KALKER - - Scientific calculator with math syntax that supports user-defined variables and functions, complex numbers, and estimation of derivatives and integrals. - - SITE: https://github.com/PaddiM8/kalker - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kalm b/apps/kalm new file mode 100644 index 000000000..48a6a4f27 --- /dev/null +++ b/apps/kalm @@ -0,0 +1,7 @@ +# kalm +Kalm can teach you different breathing techniques. + + This tool is part of the KDE Utils Suite. +# SCREENSHOTS: https://cdn.kde.org/screenshots/kalm/general.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-utils-appimage \ No newline at end of file diff --git a/apps/kalm.md b/apps/kalm.md deleted file mode 100644 index dba180e46..000000000 --- a/apps/kalm.md +++ /dev/null @@ -1,14 +0,0 @@ -# KALM - - Kalm can teach you different breathing techniques. - - This tool is part of the KDE Utils Suite. - - ![Screenshot](https://cdn.kde.org/screenshots/kalm/general.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-utils-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kando b/apps/kando new file mode 100644 index 000000000..7d0521cbf --- /dev/null +++ b/apps/kando @@ -0,0 +1,10 @@ +# kando +Kando is a cross-platform pie menu for your desktop. + + It offers an unconventional, fast, highly efficient, and fun way of interacting with your computer! You can use Kando to launch applications, simulate keyboard shortcuts, open files, and much more. + + Kando is designed to be used with mouse, stylus, or touch input. + + If you have both hands at your keyboard most of the time, Kando is maybe not the right tool for you. +# SCREENSHOTS: https://raw.githubusercontent.com/kando-menu/kando/main/docs/img/kando.gif +# SITES: https://github.com/kando-menu/kando \ No newline at end of file diff --git a/apps/kando.md b/apps/kando.md deleted file mode 100644 index ec13e4987..000000000 --- a/apps/kando.md +++ /dev/null @@ -1,16 +0,0 @@ -# KANDO - - Kando is a cross-platform pie menu for your desktop. - - It offers an unconventional, fast, highly efficient, and fun way of interacting with your computer! You can use Kando to launch applications, simulate keyboard shortcuts, open files, and much more. - - Kando is designed to be used with mouse, stylus, or touch input. - - If you have both hands at your keyboard most of the time, Kando is maybe not the right tool for you. - - ![GIF](https://raw.githubusercontent.com/kando-menu/kando/main/docs/img/kando.gif) - - SITE: https://github.com/kando-menu/kando - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kanji-dojo b/apps/kanji-dojo new file mode 100644 index 000000000..57700105e --- /dev/null +++ b/apps/kanji-dojo @@ -0,0 +1,3 @@ +# kanji-dojo +A multi-platform application for memorizing Japanese language. +# SITES: https://github.com/syt0r/Kanji-Dojo \ No newline at end of file diff --git a/apps/kanji-dojo.md b/apps/kanji-dojo.md deleted file mode 100644 index f71e4ef61..000000000 --- a/apps/kanji-dojo.md +++ /dev/null @@ -1,8 +0,0 @@ -# KANJI-DOJO - - A multi-platform application for memorizing Japanese language. - - SITE: https://github.com/syt0r/Kanji-Dojo - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/kanon b/apps/kanon new file mode 100644 index 000000000..f4b708ed7 --- /dev/null +++ b/apps/kanon @@ -0,0 +1,3 @@ +# kanon +Maturita GPJP, designed specifically for use with kanon web app. +# SITES: https://github.com/gpjp-hades/kanon-app \ No newline at end of file diff --git a/apps/kanon.md b/apps/kanon.md deleted file mode 100644 index c66e5193c..000000000 --- a/apps/kanon.md +++ /dev/null @@ -1,8 +0,0 @@ -# KANON - - Maturita GPJP, designed specifically for use with kanon web app. - - SITE: https://github.com/gpjp-hades/kanon-app - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kanri b/apps/kanri new file mode 100644 index 000000000..ff6268e2c --- /dev/null +++ b/apps/kanri @@ -0,0 +1,3 @@ +# kanri +Modern offline Kanban board app for Windows, MacOS and Linux. Built with simplicity and user experience in mind. +# SITES: https://github.com/kanriapp/kanri \ No newline at end of file diff --git a/apps/kanri.md b/apps/kanri.md deleted file mode 100644 index 23e0d7ad5..000000000 --- a/apps/kanri.md +++ /dev/null @@ -1,8 +0,0 @@ -# KANRI - - Modern offline Kanban board app for Windows, MacOS and Linux. Built with simplicity and user experience in mind. - - SITE: https://github.com/kanriapp/kanri - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kapman b/apps/kapman new file mode 100644 index 000000000..ebd4cc031 --- /dev/null +++ b/apps/kapman @@ -0,0 +1,12 @@ +# kapman +Kapman is a clone of the well known game Pac-Man. You must go through the levels escaping ghosts in a maze. You lose a life when a ghost eats you, but you can eat the ghosts for a few seconds when eating an energizer. You win points when eating pills, energizers, and bonus, and you win one life for each 10,000 points. When you have eaten all the pills and energizers of a level, you go to the next level, and the player and ghost speeds increase. + + This game is part of the KDE Games suite. + + USAGE (from the command line): + + kdegames -h (shows the list of games) + kdegames $GAME (launches the selected game) +# SCREENSHOTS: https://cdn.kde.org/screenshots/kapman/kapman.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-games-suite-appimage \ No newline at end of file diff --git a/apps/kapman.md b/apps/kapman.md deleted file mode 100644 index ae877f213..000000000 --- a/apps/kapman.md +++ /dev/null @@ -1,19 +0,0 @@ -# KAPMAN - - Kapman is a clone of the well known game Pac-Man. You must go through the levels escaping ghosts in a maze. You lose a life when a ghost eats you, but you can eat the ghosts for a few seconds when eating an energizer. You win points when eating pills, energizers, and bonus, and you win one life for each 10,000 points. When you have eaten all the pills and energizers of a level, you go to the next level, and the player and ghost speeds increase. - - This game is part of the KDE Games suite. - - USAGE (from the command line): - - kdegames -h (shows the list of games) - kdegames $GAME (launches the selected game) - - ![Screenshot](https://cdn.kde.org/screenshots/kapman/kapman.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-games-suite-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/karbonized b/apps/karbonized new file mode 100644 index 000000000..0c302caef --- /dev/null +++ b/apps/karbonized @@ -0,0 +1,3 @@ +# karbonized +💫 Awesome Image Generator for Code Snippets & Mockups +# SITES: https://github.com/yossTheDev/karbonized \ No newline at end of file diff --git a/apps/karbonized.md b/apps/karbonized.md deleted file mode 100644 index 865a84d04..000000000 --- a/apps/karbonized.md +++ /dev/null @@ -1,8 +0,0 @@ -# KARBONIZED - - 💫 Awesome Image Generator for Code Snippets & Mockups - - SITE: https://github.com/yossTheDev/karbonized - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kardi b/apps/kardi new file mode 100644 index 000000000..4ee063166 --- /dev/null +++ b/apps/kardi @@ -0,0 +1,3 @@ +# kardi +Application for taking notes with capabilities to view all content from any device while keeping all data accessible by you only. +# SITES: https://www.kardi.tech \ No newline at end of file diff --git a/apps/kardi.md b/apps/kardi.md deleted file mode 100644 index 45ff8cd4f..000000000 --- a/apps/kardi.md +++ /dev/null @@ -1,8 +0,0 @@ -# KARDI - - Application for taking notes with capabilities to view all content from any device while keeping all data accessible by you only. - - SITE: https://www.kardi.tech - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kate b/apps/kate new file mode 100644 index 000000000..8a5f4effe --- /dev/null +++ b/apps/kate @@ -0,0 +1,9 @@ +# kate +Kate is a multi-document, multi-view text editor by KDE. + + It features stuff like codefolding, syntaxhighlighting, dynamic word wrap, an embedded console, an extensive plugin interface and some preliminary scripting support. + + This tool is part of the KDE Utils Suite. +# SCREENSHOTS: https://cdn.kde.org/screenshots/kate/kate-windows-dark2.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-utils-appimage \ No newline at end of file diff --git a/apps/kate.md b/apps/kate.md deleted file mode 100644 index 221196587..000000000 --- a/apps/kate.md +++ /dev/null @@ -1,16 +0,0 @@ -# KATE - - Kate is a multi-document, multi-view text editor by KDE. - - It features stuff like codefolding, syntaxhighlighting, dynamic word wrap, an embedded console, an extensive plugin interface and some preliminary scripting support. - - This tool is part of the KDE Utils Suite. - - ![Screenshot](https://cdn.kde.org/screenshots/kate/kate-windows-dark2.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-utils-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/katomic b/apps/katomic new file mode 100644 index 000000000..de3ef649f --- /dev/null +++ b/apps/katomic @@ -0,0 +1,12 @@ +# katomic +An educational and fun game based around molecular geometry. Form the resemblance of a molecule by sliding atoms around. + + This game is part of the KDE Games suite. + + USAGE (from the command line): + + kdegames -h (shows the list of games) + kdegames $GAME (launches the selected game) +# SCREENSHOTS: https://cdn.kde.org/screenshots/katomic/katomic.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-games-suite-appimage \ No newline at end of file diff --git a/apps/katomic.md b/apps/katomic.md deleted file mode 100644 index e9fb16ffb..000000000 --- a/apps/katomic.md +++ /dev/null @@ -1,19 +0,0 @@ -# KATOMIC - - An educational and fun game based around molecular geometry. Form the resemblance of a molecule by sliding atoms around. - - This game is part of the KDE Games suite. - - USAGE (from the command line): - - kdegames -h (shows the list of games) - kdegames $GAME (launches the selected game) - - ![Screenshot](https://cdn.kde.org/screenshots/katomic/katomic.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-games-suite-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/katvan b/apps/katvan new file mode 100644 index 000000000..82b296443 --- /dev/null +++ b/apps/katvan @@ -0,0 +1,3 @@ +# katvan +A bare-bones editor for Typst files, with a bias for Right-to-Left editing +# SITES: https://github.com/IgKh/katvan \ No newline at end of file diff --git a/apps/katvan.md b/apps/katvan.md deleted file mode 100644 index e03cfb1bc..000000000 --- a/apps/katvan.md +++ /dev/null @@ -1,8 +0,0 @@ -# KATVAN - - A bare-bones editor for Typst files, with a bias for Right-to-Left editing - - SITE: https://github.com/IgKh/katvan - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kbackup b/apps/kbackup new file mode 100644 index 000000000..4a361bb7a --- /dev/null +++ b/apps/kbackup @@ -0,0 +1,13 @@ +# kbackup +KBackup is an application which lets you back up your data in a simple, user friendly way. + + Features: + + - Using profile files with definitions for Folders and files to be included or excluded from the backup + - The backup target can be either a locally mounted device like a ZIP drive, USB stick, etc. or any remote URL + - Running automated backups without using a graphical user interface + + This tool is part of the KDE Utils Suite. +# SCREENSHOTS: https://cdn.kde.org/screenshots/kbackup/mainwindow.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-utils-appimage \ No newline at end of file diff --git a/apps/kbackup.md b/apps/kbackup.md deleted file mode 100644 index d43d50ae3..000000000 --- a/apps/kbackup.md +++ /dev/null @@ -1,20 +0,0 @@ -# KBACKUP - - KBackup is an application which lets you back up your data in a simple, user friendly way. - - Features: - - - Using profile files with definitions for Folders and files to be included or excluded from the backup - - The backup target can be either a locally mounted device like a ZIP drive, USB stick, etc. or any remote URL - - Running automated backups without using a graphical user interface - - This tool is part of the KDE Utils Suite. - - ![Screenshot](https://cdn.kde.org/screenshots/kbackup/mainwindow.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-utils-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kblackbox b/apps/kblackbox new file mode 100644 index 000000000..87031feca --- /dev/null +++ b/apps/kblackbox @@ -0,0 +1,12 @@ +# kblackbox +A game of hide and seek. Use lasers and markers to guess the location of hidden atoms in the box. + + This game is part of the KDE Games suite. + + USAGE (from the command line): + + kdegames -h (shows the list of games) + kdegames $GAME (launches the selected game) +# SCREENSHOTS: https://cdn.kde.org/screenshots/kblackbox/kblackbox.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-games-suite-appimage \ No newline at end of file diff --git a/apps/kblackbox.md b/apps/kblackbox.md deleted file mode 100644 index 4e73d32ee..000000000 --- a/apps/kblackbox.md +++ /dev/null @@ -1,19 +0,0 @@ -# KBLACKBOX - - A game of hide and seek. Use lasers and markers to guess the location of hidden atoms in the box. - - This game is part of the KDE Games suite. - - USAGE (from the command line): - - kdegames -h (shows the list of games) - kdegames $GAME (launches the selected game) - - ![Screenshot](https://cdn.kde.org/screenshots/kblackbox/kblackbox.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-games-suite-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kblocks b/apps/kblocks new file mode 100644 index 000000000..76d5b8cf0 --- /dev/null +++ b/apps/kblocks @@ -0,0 +1,12 @@ +# kblocks +KBlocks is the classic falling blocks game. The idea is to stack the falling blocks to create horizontal lines without any gaps. When a line is completed it is removed, and more space is available in the play area. When there is not enough space for blocks to fall, the game is over. + + This game is part of the KDE Games suite. + + USAGE (from the command line): + + kdegames -h (shows the list of games) + kdegames $GAME (launches the selected game) +# SCREENSHOTS: https://cdn.kde.org/screenshots/kblocks/kblocks.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-games-suite-appimage \ No newline at end of file diff --git a/apps/kblocks.md b/apps/kblocks.md deleted file mode 100644 index 1ee067dbc..000000000 --- a/apps/kblocks.md +++ /dev/null @@ -1,19 +0,0 @@ -# KBLOCKS - - KBlocks is the classic falling blocks game. The idea is to stack the falling blocks to create horizontal lines without any gaps. When a line is completed it is removed, and more space is available in the play area. When there is not enough space for blocks to fall, the game is over. - - This game is part of the KDE Games suite. - - USAGE (from the command line): - - kdegames -h (shows the list of games) - kdegames $GAME (launches the selected game) - - ![Screenshot](https://cdn.kde.org/screenshots/kblocks/kblocks.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-games-suite-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kboard b/apps/kboard new file mode 100644 index 000000000..498b79b8a --- /dev/null +++ b/apps/kboard @@ -0,0 +1,3 @@ +# kboard +Terminal game to practice keyboard typing +# SITES: https://github.com/CamiloGarciaLaRotta/kboard \ No newline at end of file diff --git a/apps/kboard.md b/apps/kboard.md deleted file mode 100644 index d2aba7467..000000000 --- a/apps/kboard.md +++ /dev/null @@ -1,8 +0,0 @@ -# KBOARD - - Terminal game to practice keyboard typing - - SITE: https://github.com/CamiloGarciaLaRotta/kboard - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kbounce b/apps/kbounce new file mode 100644 index 000000000..da2afe097 --- /dev/null +++ b/apps/kbounce @@ -0,0 +1,12 @@ +# kbounce +Fill at least 75% of the field to advance to the next level while avoiding bouncing balls. + + This game is part of the KDE Games suite. + + USAGE (from the command line): + + kdegames -h (shows the list of games) + kdegames $GAME (launches the selected game) +# SCREENSHOTS: https://kde.org/images/screenshots/kbounce.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-games-suite-appimage \ No newline at end of file diff --git a/apps/kbounce.md b/apps/kbounce.md deleted file mode 100644 index ca496019d..000000000 --- a/apps/kbounce.md +++ /dev/null @@ -1,19 +0,0 @@ -# KBOUNCE - - Fill at least 75% of the field to advance to the next level while avoiding bouncing balls. - - This game is part of the KDE Games suite. - - USAGE (from the command line): - - kdegames -h (shows the list of games) - kdegames $GAME (launches the selected game) - - ![Screenshot](https://kde.org/images/screenshots/kbounce.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-games-suite-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kbreakout b/apps/kbreakout new file mode 100644 index 000000000..409279248 --- /dev/null +++ b/apps/kbreakout @@ -0,0 +1,12 @@ +# kbreakout +KBreakout destroy as many bricks as possible without losing the ball. + + This game is part of the KDE Games suite. + + USAGE (from the command line): + + kdegames -h (shows the list of games) + kdegames $GAME (launches the selected game) +# SCREENSHOTS: https://kde.org/images/screenshots/kbreakout.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-games-suite-appimage \ No newline at end of file diff --git a/apps/kbreakout.md b/apps/kbreakout.md deleted file mode 100644 index ad3e87878..000000000 --- a/apps/kbreakout.md +++ /dev/null @@ -1,19 +0,0 @@ -# KBREAKOUT - - KBreakout destroy as many bricks as possible without losing the ball. - - This game is part of the KDE Games suite. - - USAGE (from the command line): - - kdegames -h (shows the list of games) - kdegames $GAME (launches the selected game) - - ![Screenshot](https://kde.org/images/screenshots/kbreakout.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-games-suite-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kcalc b/apps/kcalc new file mode 100644 index 000000000..2fc5227f6 --- /dev/null +++ b/apps/kcalc @@ -0,0 +1,14 @@ +# kcalc +KCalc has everything you would expect from a scientific calculator, plus: + + - Trigonometric functions, logic operations and statistical calculations + - A results stack which enables convenient recall of previous calculation results + - Precision is user-definable + - The display allows cut and paste of numbers + - The display colors and font are configurable, aiding usability + - The use of key-bindings make it easy to use without a pointing device + + This tool is part of the KDE Utils Suite. +# SCREENSHOTS: https://cdn.kde.org/screenshots/kcalc/kcalc-standard.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-utils-appimage \ No newline at end of file diff --git a/apps/kcalc.md b/apps/kcalc.md deleted file mode 100644 index 9d94f9e55..000000000 --- a/apps/kcalc.md +++ /dev/null @@ -1,21 +0,0 @@ -# KCALC - - KCalc has everything you would expect from a scientific calculator, plus: - - - Trigonometric functions, logic operations and statistical calculations - - A results stack which enables convenient recall of previous calculation results - - Precision is user-definable - - The display allows cut and paste of numbers - - The display colors and font are configurable, aiding usability - - The use of key-bindings make it easy to use without a pointing device - - This tool is part of the KDE Utils Suite. - - ![](https://cdn.kde.org/screenshots/kcalc/kcalc-standard.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-utils-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kcc b/apps/kcc new file mode 100644 index 000000000..9b8e472ef --- /dev/null +++ b/apps/kcc @@ -0,0 +1,3 @@ +# kcc +KCC (Kindle Comic Converter) is a comic and manga converter for ebook readers. +# SITES: https://github.com/ciromattia/kcc \ No newline at end of file diff --git a/apps/kcc.md b/apps/kcc.md deleted file mode 100644 index 3ba7ee7aa..000000000 --- a/apps/kcc.md +++ /dev/null @@ -1,8 +0,0 @@ -# KCC - - KCC (Kindle Comic Converter) is a comic and manga converter for ebook readers. - - SITE: https://github.com/ciromattia/kcc - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/kcharselect b/apps/kcharselect new file mode 100644 index 000000000..eba2bda28 --- /dev/null +++ b/apps/kcharselect @@ -0,0 +1,7 @@ +# kcharselect +KCharSelect is a utility for finding special characters which are not available on the keyboard. It can search for characters by Unicode number, display characters in any font, and copy characters to the clipboard so they can be pasted into documents. + + This tool is part of the KDE Utils Suite. +# SCREENSHOTS: https://www.kde.org/images/screenshots/kcharselect.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-utils-appimage \ No newline at end of file diff --git a/apps/kcharselect.md b/apps/kcharselect.md deleted file mode 100644 index 9954c9daf..000000000 --- a/apps/kcharselect.md +++ /dev/null @@ -1,14 +0,0 @@ -# KCHARSELECT - - KCharSelect is a utility for finding special characters which are not available on the keyboard. It can search for characters by Unicode number, display characters in any font, and copy characters to the clipboard so they can be pasted into documents. - - This tool is part of the KDE Utils Suite. - - ![Screenshot](https://www.kde.org/images/screenshots/kcharselect.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-utils-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kclock b/apps/kclock new file mode 100644 index 000000000..753837511 --- /dev/null +++ b/apps/kclock @@ -0,0 +1,13 @@ +# kclock +A universal clock application for desktop and mobile. + + Clock includes a stopwatch and a world clock, and allows you to set multiple alarms and timers. + + It contains alarm, timer, stopwatch and timezone functionalities. + + Alarms and timers are able to wake the device from suspend on Plasma. + + This tool is part of the KDE Utils Suite. +# SCREENSHOTS: https://cdn.kde.org/screenshots/kclock/kclock-desktop-timer.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-utils-appimage \ No newline at end of file diff --git a/apps/kclock.md b/apps/kclock.md deleted file mode 100644 index 684edf621..000000000 --- a/apps/kclock.md +++ /dev/null @@ -1,20 +0,0 @@ -# KCLOCK - - A universal clock application for desktop and mobile. - - Clock includes a stopwatch and a world clock, and allows you to set multiple alarms and timers. - - It contains alarm, timer, stopwatch and timezone functionalities. - - Alarms and timers are able to wake the device from suspend on Plasma. - - This tool is part of the KDE Utils Suite. - - ![Screenshot](https://cdn.kde.org/screenshots/kclock/kclock-desktop-timer.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-utils-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kcov b/apps/kcov new file mode 100644 index 000000000..05a43f32c --- /dev/null +++ b/apps/kcov @@ -0,0 +1,3 @@ +# kcov +An AppImage of Kcov code coverage tool. +# SITES: https://github.com/julien-montmartin/kcov-appimage \ No newline at end of file diff --git a/apps/kcov.md b/apps/kcov.md deleted file mode 100644 index 2c48db4d2..000000000 --- a/apps/kcov.md +++ /dev/null @@ -1,8 +0,0 @@ -# KCOV - - An AppImage of Kcov code coverage tool. - - SITE: https://github.com/julien-montmartin/kcov-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kdebugsettings b/apps/kdebugsettings new file mode 100644 index 000000000..c4e528b00 --- /dev/null +++ b/apps/kdebugsettings @@ -0,0 +1,9 @@ +# kdebugsettings +KDebugSettings edits which QLoggingCategory are displayed. + + QLoggingCategory prints messages on the console for applications and you can define which applications display messages for information, warning or critical errors to help debugging Qt applications. + + This tool is part of the KDE Utils Suite. +# SCREENSHOTS: https://cdn.kde.org/screenshots/kdebugsettings/kdebugsettings.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-utils-appimage \ No newline at end of file diff --git a/apps/kdebugsettings.md b/apps/kdebugsettings.md deleted file mode 100644 index 5e56cd488..000000000 --- a/apps/kdebugsettings.md +++ /dev/null @@ -1,16 +0,0 @@ -# KDEBUGSETTINGS - - KDebugSettings edits which QLoggingCategory are displayed. - - QLoggingCategory prints messages on the console for applications and you can define which applications display messages for information, warning or critical errors to help debugging Qt applications. - - This tool is part of the KDE Utils Suite. - - ![Screenshot](https://cdn.kde.org/screenshots/kdebugsettings/kdebugsettings.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-utils-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kdeconnect b/apps/kdeconnect new file mode 100644 index 000000000..be86f4220 --- /dev/null +++ b/apps/kdeconnect @@ -0,0 +1,3 @@ +# kdeconnect +Unofficial AppImage of kdeconnect. A project that enables all your devices to communicate with each other. +# SITES: https://github.com/pkgforge-dev/kdeconnect-AppImage \ No newline at end of file diff --git a/apps/kdeconnect.md b/apps/kdeconnect.md deleted file mode 100644 index 4b82e9ea0..000000000 --- a/apps/kdeconnect.md +++ /dev/null @@ -1,8 +0,0 @@ -# KDECONNECT - - Unofficial AppImage of kdeconnect. A project that enables all your devices to communicate with each other. - - SITE: https://github.com/pkgforge-dev/kdeconnect-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kdegames b/apps/kdegames new file mode 100644 index 000000000..90ef08dbf --- /dev/null +++ b/apps/kdegames @@ -0,0 +1,6 @@ +# kdegames +This is the full and updatable KDE Games suite from JuNest (Jailed User Nest), a lightweight Arch Linux based distribution that allows the creation of disposable and partially isolated GNU/Linux environments within any generic GNU/Linux host OS and without requiring root privileges to install packages. + + This scripts includes icons and launchers for the games supported. +# SITES: https://apps.kde.org +# SOURCES: https://archlinux.org/packages/extra/any/kde-games-meta \ No newline at end of file diff --git a/apps/kdegames.md b/apps/kdegames.md deleted file mode 100644 index afa84d7da..000000000 --- a/apps/kdegames.md +++ /dev/null @@ -1,58 +0,0 @@ -# KDEGAMES - - This is the KDE Games suite into one AppImage. - - Usage: - - - kdegames PROGRAM - - kdegames PROGRAM OPTIONS - - This scripts includes icons and launchers for the following games: - - - bomber : Arcade spaceship game. - - bovo : Five in a row game from. - - granatier : Bomberman clone. - - kajongg : An ancient Chinese board game for 4 players. - - kapman : Pac-Man clone. - - katomic : Edu. game based around molecular geometry. - - kblackbox : A game of hide and seek. - - kblocks : Classic Tetris / falling blocks game. - - kbounce : Fill the field game. - - kbreakout : Destroy bricks without losing the ball. - - kdiamond : Diamond game. - - kfourinline : 4 in row game. - - kgoldrunner : A game with a runner and gold. - - kigo : Go strategic board game for two players. - - killbots : Port of the classic console game Robots. - - kiriki : A dice game. - - kjumpingcube : A game of dices on a board. - - klickety : Color matching like SameGame. - - klines : Inspired by well known game of Color Lines. - - kmahjongg : Mahjongg game. - - kmines : Classic mine game. - - knavalbattle : Battle Ship game. - - knetwalk : Net constructing game. - - knights : Chess interface for the KDE Platform. - - kolf : Mini Golf game. - - kollision : Dodge red balls in the field. - - konquest : Game of planets. - - kpat : Klondike, Spider, Free Cell and other Solitaire. - - kreversi : Reversi game. - - kshisen : A game similar to Mahjongg. - - ksirk : A strategy board game. - - ksnakeduel : A snake race game. - - kspaceduel : Battleship with satellites in the space. - - ksquares : Win with most number of completed squares. - - ksudoku : Sudoku game. - - ktuberling : Simple Mr. Potato game for children. - - kubrick : A logic game based on Rubik's Cube. - - lskat : Fun and engaging card game for two players. - - palapeli : Jigsaw puzzle game. - - picmi : Single player logic-based puzzle game. - - Note, if you don't see one listed, there probably already is a standalone AppImage in this database. There are also packages (for example, "knights") that have their own AppImage, and these can be quite large overall due to the core KDE libraries they include. This metpackage exists precisely to avoid duplicating these libraries. - - SITE: https://github.com/ivan-hc/KDE-games-suite-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kdenlive b/apps/kdenlive new file mode 100644 index 000000000..a3433f32e --- /dev/null +++ b/apps/kdenlive @@ -0,0 +1,4 @@ +# kdenlive +Kdenlive - Video Editors provided for KDE. +# SCREENSHOTS: https://user-images.githubusercontent.com/88724353/235691295-5ee31585-671e-45d4-91f1-a5256ecd5861.jpg +# SITES: https://kdenlive.org \ No newline at end of file diff --git a/apps/kdenlive-daily b/apps/kdenlive-daily new file mode 100644 index 000000000..0f9bf8ba5 --- /dev/null +++ b/apps/kdenlive-daily @@ -0,0 +1,3 @@ +# kdenlive-daily +A powerful Video Editor provided by KDE (daily builds). +# SITES: https://kdenlive.org \ No newline at end of file diff --git a/apps/kdenlive-daily.md b/apps/kdenlive-daily.md deleted file mode 100644 index 88e1166b8..000000000 --- a/apps/kdenlive-daily.md +++ /dev/null @@ -1,8 +0,0 @@ -# KDENLIVE-DAILY - - A powerful Video Editor provided by KDE (daily builds). - - SITE: https://kdenlive.org - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kdenlive-enhanced b/apps/kdenlive-enhanced new file mode 100644 index 000000000..5fd502c63 --- /dev/null +++ b/apps/kdenlive-enhanced @@ -0,0 +1,3 @@ +# kdenlive-enhanced +Unofficial AppImage of Kdenlive Video Editor which is able to work on any linux distro. +# SITES: https://github.com/pkgforge-dev/kdenlive-AppImage-Enhanced \ No newline at end of file diff --git a/apps/kdenlive-enhanced.md b/apps/kdenlive-enhanced.md deleted file mode 100644 index 3412faf21..000000000 --- a/apps/kdenlive-enhanced.md +++ /dev/null @@ -1,8 +0,0 @@ -# KDENLIVE-ENHANCED - - Unofficial AppImage of Kdenlive Video Editor which is able to work on any linux distro. - - SITE: https://github.com/pkgforge-dev/kdenlive-AppImage-Enhanced - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/kdenlive.md b/apps/kdenlive.md deleted file mode 100644 index 6dd8b2d14..000000000 --- a/apps/kdenlive.md +++ /dev/null @@ -1,10 +0,0 @@ -# KDENLIVE - - Kdenlive - Video Editors provided for KDE. - - ![Screenshot](https://user-images.githubusercontent.com/88724353/235691295-5ee31585-671e-45d4-91f1-a5256ecd5861.jpg) - - SITE: https://kdenlive.org - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kdeutils b/apps/kdeutils new file mode 100644 index 000000000..9c1295e27 --- /dev/null +++ b/apps/kdeutils @@ -0,0 +1,32 @@ +# kdeutils +This metapackage includes general-purpose utilities provided with the official release of KDE: + + - ark + - filelight + - francis + - isoimagewriter + - kalm + - kate + - kbackup + - kcalc + - kcharselect + - kclock + - kdebugsettings + - kdf + - kdialog + - keditbookmarks + - keysmith + - kfind + - kgpg + - kongress + - krecorder + - kteatime + - ktimer + - ktrip + - kweather + - kwrite + - skanpage + - sweeper + - telly-skout +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-utils-appimage \ No newline at end of file diff --git a/apps/kdeutils.md b/apps/kdeutils.md deleted file mode 100644 index 4adb3b04b..000000000 --- a/apps/kdeutils.md +++ /dev/null @@ -1,44 +0,0 @@ -# KDEUTILS - - This is the KDE Utils suite into one AppImage. - - Usage: - - - kdeutils PROGRAM - - kdeutils PROGRAM OPTIONS - - This scripts includes icons and launchers for the following programs: - - - ark : Archiving tool for .zip/.tar/.rar and more. - - francis : Pomodoro technique, get more productive. - - isoimagewriter : Write an ISO Image to a USB Disk. - - kalm : Teach you different breathing techniques. - - kate : A multi-document editor part of KDE. - - kbackup : Back up your data. - - kcalc : Scientific Calculator. - - kcharselect : Character Selector. - - kclock : A universal clock application. - - kdebugsettings : Edits displayed QLoggingCategory. - - kdf : view Disk Usage. - - kdialog : a dialog utility. - - keditbookmarks : Bookmarks editor. - - keysmith : Generates tokens for your two-factor logins. - - kfind : A search tool. - - kgpg : A GnuPG frontend. - - kongress : A companion application for conferences. - - krecorder : An audio recording application. - - kteatime : A handy timer for steeping tea. - - ktimer : Countdown Launcher. - - ktrip : KTrip helps you navigate in public transport. - - kweather : A convergent weather application. - - kwrite : KWrite is a text editor by KDE. - - skanpage : A simple scanning application. - - sweeper : System Cleaner. - - telly-skout : A convergent Kirigami TV guide. - - Note, if you don't see one listed (e.g. filelight), there probably already is a standalone AppImage in this database. - - SITE: https://github.com/ivan-hc/KDE-utils-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kdf b/apps/kdf new file mode 100644 index 000000000..7b5182743 --- /dev/null +++ b/apps/kdf @@ -0,0 +1,7 @@ +# kdf +KDiskFree displays information about hard disks and other storage devices, including the amount of free space available. It can also mount and unmount storage devices and view them in the file manager. + + This tool is part of the KDE Utils Suite. +# SCREENSHOTS: https://cdn.kde.org/screenshots/kdf/kdf.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-utils-appimage \ No newline at end of file diff --git a/apps/kdf.md b/apps/kdf.md deleted file mode 100644 index d9ed4da72..000000000 --- a/apps/kdf.md +++ /dev/null @@ -1,14 +0,0 @@ -# KDF - - KDiskFree displays information about hard disks and other storage devices, including the amount of free space available. It can also mount and unmount storage devices and view them in the file manager. - - This tool is part of the KDE Utils Suite. - - ![Screenshot](https://cdn.kde.org/screenshots/kdf/kdf.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-utils-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kdialog b/apps/kdialog new file mode 100644 index 000000000..747eb9ae8 --- /dev/null +++ b/apps/kdialog @@ -0,0 +1,6 @@ +# kdialog +Shell scripting with KDE dialogs. Create simple scripts for your users to use. + + This tool is part of the KDE Utils Suite. +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-utils-appimage \ No newline at end of file diff --git a/apps/kdialog.md b/apps/kdialog.md deleted file mode 100644 index 41a56c846..000000000 --- a/apps/kdialog.md +++ /dev/null @@ -1,21 +0,0 @@ -# KDIALOG - - Shell scripting with KDE dialogs. Create simple scripts for your users to use. - - This tool is part of the KDE Utils Suite. - - USAGE: - ``` - kdeutils kdialog [OPTIONS] [ARGUMENTS] - ``` - - ![Screenshot](https://develop.kde.org/docs/administration/kdialog/password.png) - - SITE: https://apps.kde.org - - DOCUMENTATION: https://develop.kde.org/docs/administration/kdialog - - SOURCE: https://github.com/ivan-hc/KDE-utils-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kdiamond b/apps/kdiamond new file mode 100644 index 000000000..6082401e7 --- /dev/null +++ b/apps/kdiamond @@ -0,0 +1,12 @@ +# kdiamond +Swap two adjacent diamonds to form a line of three similar diamonds to eliminate as much as you can within the time limit. + + This game is part of the KDE Games suite. + + USAGE (from the command line): + + kdegames -h (shows the list of games) + kdegames $GAME (launches the selected game) +# SCREENSHOTS: https://cdn.kde.org/screenshots/kdiamond/kdiamond.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-games-suite-appimage \ No newline at end of file diff --git a/apps/kdiamond.md b/apps/kdiamond.md deleted file mode 100644 index f9afd31d3..000000000 --- a/apps/kdiamond.md +++ /dev/null @@ -1,19 +0,0 @@ -# KDIAMOND - - Swap two adjacent diamonds to form a line of three similar diamonds to eliminate as much as you can within the time limit. - - This game is part of the KDE Games suite. - - USAGE (from the command line): - - kdegames -h (shows the list of games) - kdegames $GAME (launches the selected game) - - ![Screenshot](https://cdn.kde.org/screenshots/kdiamond/kdiamond.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-games-suite-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kdiskmark b/apps/kdiskmark new file mode 100644 index 000000000..ab2fa5059 --- /dev/null +++ b/apps/kdiskmark @@ -0,0 +1,3 @@ +# kdiskmark +A simple open-source disk benchmark tool for Linux distros +# SITES: https://github.com/JonMagon/KDiskMark \ No newline at end of file diff --git a/apps/kdiskmark.md b/apps/kdiskmark.md deleted file mode 100644 index 5d5a8cee4..000000000 --- a/apps/kdiskmark.md +++ /dev/null @@ -1,8 +0,0 @@ -# KDISKMARK - - A simple open-source disk benchmark tool for Linux distros - - SITE: https://github.com/JonMagon/KDiskMark - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/keditbookmarks b/apps/keditbookmarks new file mode 100644 index 000000000..06b297b26 --- /dev/null +++ b/apps/keditbookmarks @@ -0,0 +1,7 @@ +# keditbookmarks +A bookmarks editor + + This tool is part of the KDE Utils Suite. +# SCREENSHOTS: https://docs.kde.org/stable5/en/krusader/krusader/bookmanedit.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-utils-appimage \ No newline at end of file diff --git a/apps/keditbookmarks.md b/apps/keditbookmarks.md deleted file mode 100644 index afd740f44..000000000 --- a/apps/keditbookmarks.md +++ /dev/null @@ -1,16 +0,0 @@ -# KEDITBOOKMARKS - - A bookmarks editor - - This tool is part of the KDE Utils Suite. - - ![Screenshot](https://docs.kde.org/stable5/en/krusader/krusader/bookmanedit.png) - - SITE: https://apps.kde.org - - PROJECT: https://github.com/KDE/keditbookmarks - - SOURCE: https://github.com/ivan-hc/KDE-utils-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/keepassxc b/apps/keepassxc new file mode 100644 index 000000000..d1f6d0f96 --- /dev/null +++ b/apps/keepassxc @@ -0,0 +1,3 @@ +# keepassxc +KeePassXC is a cross-platform community-driven port of the Windows application “Keepass Password Safe”. +# SITES: https://github.com/keepassxreboot/keepassxc \ No newline at end of file diff --git a/apps/keepassxc-devel b/apps/keepassxc-devel new file mode 100644 index 000000000..dd7042e6a --- /dev/null +++ b/apps/keepassxc-devel @@ -0,0 +1,3 @@ +# keepassxc-devel +Let KeePassXC safely store your passwords and auto-fill them into your favorite apps, so you can forget all about them. +# SITES: https://keepassxc.org \ No newline at end of file diff --git a/apps/keepassxc-devel.md b/apps/keepassxc-devel.md deleted file mode 100644 index b62f3a1ed..000000000 --- a/apps/keepassxc-devel.md +++ /dev/null @@ -1,8 +0,0 @@ -# KEEPASSXC-DEVEL - - Let KeePassXC safely store your passwords and auto-fill them into your favorite apps, so you can forget all about them. - - SITE: https://keepassxc.org - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/keepassxc.md b/apps/keepassxc.md deleted file mode 100644 index 66095fc56..000000000 --- a/apps/keepassxc.md +++ /dev/null @@ -1,8 +0,0 @@ -# KEEPASSXC - - KeePassXC is a cross-platform community-driven port of the Windows application “Keepass Password Safe”. - - SITE: https://github.com/keepassxreboot/keepassxc - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/keepkey-desktop b/apps/keepkey-desktop new file mode 100644 index 000000000..acf8b7821 --- /dev/null +++ b/apps/keepkey-desktop @@ -0,0 +1,3 @@ +# keepkey-desktop +An all-in-one suite for using your KeepKey hardware wallet. +# SITES: https://github.com/keepkey/keepkey-desktop \ No newline at end of file diff --git a/apps/keepkey-desktop.md b/apps/keepkey-desktop.md deleted file mode 100644 index 87d35dfea..000000000 --- a/apps/keepkey-desktop.md +++ /dev/null @@ -1,8 +0,0 @@ -# KEEPKEY-DESKTOP - - An all-in-one suite for using your KeepKey hardware wallet. - - SITE: https://github.com/keepkey/keepkey-desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/keeweb b/apps/keeweb new file mode 100644 index 000000000..67d2684ca --- /dev/null +++ b/apps/keeweb @@ -0,0 +1,3 @@ +# keeweb +Free cross-platform password manager compatible with KeePass +# SITES: https://github.com/keeweb/keeweb \ No newline at end of file diff --git a/apps/keeweb.md b/apps/keeweb.md deleted file mode 100644 index 45d5726f8..000000000 --- a/apps/keeweb.md +++ /dev/null @@ -1,8 +0,0 @@ -# KEEWEB - - Free cross-platform password manager compatible with KeePass - - SITE: https://github.com/keeweb/keeweb - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kega-fusion b/apps/kega-fusion new file mode 100644 index 000000000..8c3454786 --- /dev/null +++ b/apps/kega-fusion @@ -0,0 +1,3 @@ +# kega-fusion +Unofficial, an emulator of classic Sega consoles, including SMS/GG, Genesis/Megadrive and add-ons. +# SITES: https://github.com/pkgforge-dev/Kega-Fusion-AppImage \ No newline at end of file diff --git a/apps/kega-fusion.md b/apps/kega-fusion.md deleted file mode 100644 index 3e89bc9c0..000000000 --- a/apps/kega-fusion.md +++ /dev/null @@ -1,8 +0,0 @@ -# KEGA-FUSION - - Unofficial, an emulator of classic Sega consoles, including SMS/GG, Genesis/Megadrive and add-ons. - - SITE: https://github.com/pkgforge-dev/Kega-Fusion-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/keibo-moneytracker-x86-64 b/apps/keibo-moneytracker-x86-64 new file mode 100644 index 000000000..6e4d916a7 --- /dev/null +++ b/apps/keibo-moneytracker-x86-64 @@ -0,0 +1,3 @@ +# keibo-moneytracker-x86-64 +Track your income and expenses easily +# SITES: https://github.com/Carlos-CDM/Keibo-MoneyTracker \ No newline at end of file diff --git a/apps/keibo-moneytracker-x86-64.md b/apps/keibo-moneytracker-x86-64.md deleted file mode 100644 index 272c68537..000000000 --- a/apps/keibo-moneytracker-x86-64.md +++ /dev/null @@ -1,8 +0,0 @@ -# KEIBO-MONEYTRACKER-X86-64 - - Track your income and expenses easily - - SITE: https://github.com/Carlos-CDM/Keibo-MoneyTracker - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kettleclient b/apps/kettleclient new file mode 100644 index 000000000..cf162a0b7 --- /dev/null +++ b/apps/kettleclient @@ -0,0 +1,3 @@ +# kettleclient +Client for Kettle REST service. +# SITES: https://github.com/Arquanite/KettleClient \ No newline at end of file diff --git a/apps/kettleclient.md b/apps/kettleclient.md deleted file mode 100644 index bf7f14c30..000000000 --- a/apps/kettleclient.md +++ /dev/null @@ -1,8 +0,0 @@ -# KETTLECLIENT - - Client for Kettle REST service. - - SITE: https://github.com/Arquanite/KettleClient - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kevedit b/apps/kevedit new file mode 100644 index 000000000..48a736d88 --- /dev/null +++ b/apps/kevedit @@ -0,0 +1,3 @@ +# kevedit +ZZT Editor +# SITES: https://github.com/cknave/kevedit \ No newline at end of file diff --git a/apps/kevedit.md b/apps/kevedit.md deleted file mode 100644 index 475dda5d1..000000000 --- a/apps/kevedit.md +++ /dev/null @@ -1,8 +0,0 @@ -# KEVEDIT - - ZZT Editor - - SITE: https://github.com/cknave/kevedit - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/keyboardclient b/apps/keyboardclient new file mode 100644 index 000000000..6887eb43f --- /dev/null +++ b/apps/keyboardclient @@ -0,0 +1,3 @@ +# keyboardclient +Keyboard Settings Client +# SITES: https://github.com/chrisandreae/keyboard-firmware \ No newline at end of file diff --git a/apps/keyboardclient.md b/apps/keyboardclient.md deleted file mode 100644 index 5e4bca36f..000000000 --- a/apps/keyboardclient.md +++ /dev/null @@ -1,8 +0,0 @@ -# KEYBOARDCLIENT - - Keyboard Settings Client - - SITE: https://github.com/chrisandreae/keyboard-firmware - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/keycombiner b/apps/keycombiner new file mode 100644 index 000000000..440d1d4e3 --- /dev/null +++ b/apps/keycombiner @@ -0,0 +1,5 @@ +# keycombiner +Learn exactly the keyboard shortcuts you need. + + Create your own shortcut collections by importing from a large public database of shortcuts (VSCode, Vim, IntelliJ, Gmail, Notion, Excel, etc.) and master them using interactive practice sessions, advanced statistics, and spaced repetition methods. Need to cheat? KeyCombiner's instant lookup let's you look up shortcuts without leaving your current app. +# SITES: https://keycombiner.com \ No newline at end of file diff --git a/apps/keycombiner.md b/apps/keycombiner.md deleted file mode 100644 index 27387af82..000000000 --- a/apps/keycombiner.md +++ /dev/null @@ -1,10 +0,0 @@ -# KEYCOMBINER - - Learn exactly the keyboard shortcuts you need. - - Create your own shortcut collections by importing from a large public database of shortcuts (VSCode, Vim, IntelliJ, Gmail, Notion, Excel, etc.) and master them using interactive practice sessions, advanced statistics, and spaced repetition methods. Need to cheat? KeyCombiner's instant lookup let's you look up shortcuts without leaving your current app. - - SITE: https://keycombiner.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/keymanager b/apps/keymanager new file mode 100644 index 000000000..033d6cd9a --- /dev/null +++ b/apps/keymanager @@ -0,0 +1,3 @@ +# keymanager +One-stop certificate application and certificate key management +# SITES: https://github.com/keymanager/keymanager \ No newline at end of file diff --git a/apps/keymanager.md b/apps/keymanager.md deleted file mode 100644 index 4cb0a22c1..000000000 --- a/apps/keymanager.md +++ /dev/null @@ -1,8 +0,0 @@ -# KEYMANAGER - - One-stop certificate application and certificate key management - - SITE: https://github.com/keymanager/keymanager - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/keypunch b/apps/keypunch new file mode 100644 index 000000000..85fa31a12 --- /dev/null +++ b/apps/keypunch @@ -0,0 +1,3 @@ +# keypunch +Unofficial, keyboard writing speed test application. +# SITES: https://github.com/pkgforge-dev/Keypunch-AppImage \ No newline at end of file diff --git a/apps/keypunch.md b/apps/keypunch.md deleted file mode 100644 index 81aaf0264..000000000 --- a/apps/keypunch.md +++ /dev/null @@ -1,8 +0,0 @@ -# KEYPUNCH - - Unofficial, keyboard writing speed test application.  - - SITE: https://github.com/pkgforge-dev/Keypunch-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/keyrier-json b/apps/keyrier-json new file mode 100644 index 000000000..1d608a51e --- /dev/null +++ b/apps/keyrier-json @@ -0,0 +1,3 @@ +# keyrier-json +SQL queries on JSON & CSV. +# SITES: https://github.com/magoo-magoo/keyrier-json \ No newline at end of file diff --git a/apps/keyrier-json.md b/apps/keyrier-json.md deleted file mode 100644 index cf16f8d67..000000000 --- a/apps/keyrier-json.md +++ /dev/null @@ -1,8 +0,0 @@ -# KEYRIER-JSON - - SQL queries on JSON & CSV. - - SITE: https://github.com/magoo-magoo/keyrier-json - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/keys b/apps/keys new file mode 100644 index 000000000..37a04fcc2 --- /dev/null +++ b/apps/keys @@ -0,0 +1,3 @@ +# keys +Key management, signing and encryption. +# SITES: https://github.com/keys-pub/app \ No newline at end of file diff --git a/apps/keys.md b/apps/keys.md deleted file mode 100644 index abf338ca0..000000000 --- a/apps/keys.md +++ /dev/null @@ -1,8 +0,0 @@ -# KEYS - - Key management, signing and encryption. - - SITE: https://github.com/keys-pub/app - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/keysmith b/apps/keysmith new file mode 100644 index 000000000..ed1a0bccd --- /dev/null +++ b/apps/keysmith @@ -0,0 +1,7 @@ +# keysmith +Keysmith generates tokens for your two-factor logins (2FA). + + This tool is part of the KDE Utils Suite. +# SCREENSHOTS: https://cdn.kde.org/screenshots/keysmith/keysmith.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-utils-appimage \ No newline at end of file diff --git a/apps/keysmith.md b/apps/keysmith.md deleted file mode 100644 index daa4dedb8..000000000 --- a/apps/keysmith.md +++ /dev/null @@ -1,14 +0,0 @@ -# KEYSMITH - - Keysmith generates tokens for your two-factor logins (2FA). - - This tool is part of the KDE Utils Suite. - - ![Screenshot](https://cdn.kde.org/screenshots/keysmith/keysmith.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-utils-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kfind b/apps/kfind new file mode 100644 index 000000000..a6c25a93c --- /dev/null +++ b/apps/kfind @@ -0,0 +1,7 @@ +# kfind +KFind can be used as a standalone search tool, launched by KRunner or from your menu. It is also integrated into Konqueror as "Find File" in the "Tools" menu. It allows you to find files by name, type or content. + + This tool is part of the KDE Utils Suite. +# SCREENSHOTS: https://kde.org/images/screenshots/kfind.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-utils-appimage \ No newline at end of file diff --git a/apps/kfind.md b/apps/kfind.md deleted file mode 100644 index 3f8d37dbe..000000000 --- a/apps/kfind.md +++ /dev/null @@ -1,14 +0,0 @@ -# KFIND - - KFind can be used as a standalone search tool, launched by KRunner or from your menu. It is also integrated into Konqueror as "Find File" in the "Tools" menu. It allows you to find files by name, type or content. - - This tool is part of the KDE Utils Suite. - - ![Screenshot](https://kde.org/images/screenshots/kfind.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-utils-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kfourinline b/apps/kfourinline new file mode 100644 index 000000000..8cb3a0713 --- /dev/null +++ b/apps/kfourinline @@ -0,0 +1,12 @@ +# kfourinline +Be the first to get four connected pieces of your color into a straight row of any direction. + + This game is part of the KDE Games suite. + + USAGE (from the command line): + + kdegames -h (shows the list of games) + kdegames $GAME (launches the selected game) +# SCREENSHOTS: https://cdn.kde.org/screenshots/kfourinline/kfourinline.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-games-suite-appimage \ No newline at end of file diff --git a/apps/kfourinline.md b/apps/kfourinline.md deleted file mode 100644 index 3438d17f6..000000000 --- a/apps/kfourinline.md +++ /dev/null @@ -1,19 +0,0 @@ -# KFOURINLINE - - Be the first to get four connected pieces of your color into a straight row of any direction. - - This game is part of the KDE Games suite. - - USAGE (from the command line): - - kdegames -h (shows the list of games) - kdegames $GAME (launches the selected game) - - ![Screenshot](https://cdn.kde.org/screenshots/kfourinline/kfourinline.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-games-suite-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kftray b/apps/kftray new file mode 100644 index 000000000..73763bd97 --- /dev/null +++ b/apps/kftray @@ -0,0 +1,3 @@ +# kftray +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. +# SITES: https://github.com/hcavarsan/kftray \ No newline at end of file diff --git a/apps/kftray.md b/apps/kftray.md deleted file mode 100644 index 7a5d7f647..000000000 --- a/apps/kftray.md +++ /dev/null @@ -1,8 +0,0 @@ -# KFTRAY - - 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. - - SITE: https://github.com/hcavarsan/kftray - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/kgoldrunner b/apps/kgoldrunner new file mode 100644 index 000000000..6a27ada11 --- /dev/null +++ b/apps/kgoldrunner @@ -0,0 +1,12 @@ +# kgoldrunner +Collect all the gold while avoiding pursuing enemies. Or dig holes to trap and walk over them. + + This game is part of the KDE Games suite. + + USAGE (from the command line): + + kdegames -h (shows the list of games) + kdegames $GAME (launches the selected game) +# SCREENSHOTS: https://cdn.kde.org/screenshots/kgoldrunner/kgoldrunner.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-games-suite-appimage \ No newline at end of file diff --git a/apps/kgoldrunner.md b/apps/kgoldrunner.md deleted file mode 100644 index 17edbd069..000000000 --- a/apps/kgoldrunner.md +++ /dev/null @@ -1,19 +0,0 @@ -# KGOLDRUNNER - - Collect all the gold while avoiding pursuing enemies. Or dig holes to trap and walk over them. - - This game is part of the KDE Games suite. - - USAGE (from the command line): - - kdegames -h (shows the list of games) - kdegames $GAME (launches the selected game) - - ![Screenshot](https://cdn.kde.org/screenshots/kgoldrunner/kgoldrunner.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-games-suite-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kgpg b/apps/kgpg new file mode 100644 index 000000000..ff6092d6a --- /dev/null +++ b/apps/kgpg @@ -0,0 +1,7 @@ +# kgpg +Kgpg manages cryptographic keys for the GNU Privacy Guard, and can encrypt, decrypt, sign, and verify files. It features a simple editor for applying cryptography to short pieces of text, and can also quickly apply cryptography to the contents of the clipboard. + + This tool is part of the KDE Utils Suite. +# SCREENSHOTS: https://cdn.kde.org/screenshots/kgpg/kgpg.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-utils-appimage \ No newline at end of file diff --git a/apps/kgpg.md b/apps/kgpg.md deleted file mode 100644 index 40a199210..000000000 --- a/apps/kgpg.md +++ /dev/null @@ -1,14 +0,0 @@ -# KGPG - - Kgpg manages cryptographic keys for the GNU Privacy Guard, and can encrypt, decrypt, sign, and verify files. It features a simple editor for applying cryptography to short pieces of text, and can also quickly apply cryptography to the contents of the clipboard. - - This tool is part of the KDE Utils Suite. - - ![Screenshot](https://cdn.kde.org/screenshots/kgpg/kgpg.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-utils-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kibi b/apps/kibi new file mode 100644 index 000000000..e30c8c0ba --- /dev/null +++ b/apps/kibi @@ -0,0 +1,3 @@ +# kibi +A text editor in ≤1024 lines of code, written in Rust +# SITES: https://github.com/ilai-deutel/kibi \ No newline at end of file diff --git a/apps/kibi.md b/apps/kibi.md deleted file mode 100644 index 7d1a30151..000000000 --- a/apps/kibi.md +++ /dev/null @@ -1,8 +0,0 @@ -# KIBI - - A text editor in ≤1024 lines of code, written in Rust - - SITE: https://github.com/ilai-deutel/kibi - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kicad b/apps/kicad new file mode 100644 index 000000000..b0328955d --- /dev/null +++ b/apps/kicad @@ -0,0 +1,3 @@ +# kicad +Electronic Design Automation suite +# SITES: https://github.com/CyberCircuits/kicad-appimage \ No newline at end of file diff --git a/apps/kicad.md b/apps/kicad.md deleted file mode 100644 index 6f2d2c253..000000000 --- a/apps/kicad.md +++ /dev/null @@ -1,10 +0,0 @@ -# KICAD - - KiCad is a free software suite for electronic design automation (EDA). It 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. Tools exist within the package to create bill of materials, artwork, Gerber files, and 3D models of the PCB and its components. - - SITE: https://www.kicad.org - - MIRROR: https://github.com/KiCad/kicad-source-mirror - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kid3 b/apps/kid3 new file mode 100644 index 000000000..8f4ca8ef3 --- /dev/null +++ b/apps/kid3 @@ -0,0 +1,3 @@ +# kid3 +Unofficial, efficient audio tagger that supports a large variety of file formats. +# SITES: https://github.com/pkgforge-dev/Kid3-AppImage \ No newline at end of file diff --git a/apps/kid3.md b/apps/kid3.md deleted file mode 100644 index 2d7ca7023..000000000 --- a/apps/kid3.md +++ /dev/null @@ -1,8 +0,0 @@ -# KID3 - - Unofficial, efficient audio tagger that supports a large variety of file formats. - - SITE: https://github.com/pkgforge-dev/Kid3-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/kigo b/apps/kigo new file mode 100644 index 000000000..2943528c4 --- /dev/null +++ b/apps/kigo @@ -0,0 +1,14 @@ +# kigo +Kigo is an open-source implementation of the popular Go game. Go is a strategic board game for two players. It is also known as igo (Japanese), weiqi or wei ch'i (Chinese) or baduk (Korean). + + Go is noted for being rich in strategic complexity despite its simple rules. The game is played by two players who alternately place black and white stones (playing pieces, now usually made of glass or plastic) on the vacant intersections of a grid of 19x19 lines (9x9 or 13x13 for easier games). + + This game is part of the KDE Games suite. + + USAGE (from the command line): + + kdegames -h (shows the list of games) + kdegames $GAME (launches the selected game) +# SCREENSHOTS: https://kde.org/images/screenshots/kigo.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-games-suite-appimage \ No newline at end of file diff --git a/apps/kigo.md b/apps/kigo.md deleted file mode 100644 index df4a830ae..000000000 --- a/apps/kigo.md +++ /dev/null @@ -1,21 +0,0 @@ -# KIGO - - Kigo is an open-source implementation of the popular Go game. Go is a strategic board game for two players. It is also known as igo (Japanese), weiqi or wei ch'i (Chinese) or baduk (Korean). - - Go is noted for being rich in strategic complexity despite its simple rules. The game is played by two players who alternately place black and white stones (playing pieces, now usually made of glass or plastic) on the vacant intersections of a grid of 19x19 lines (9x9 or 13x13 for easier games). - - This game is part of the KDE Games suite. - - USAGE (from the command line): - - kdegames -h (shows the list of games) - kdegames $GAME (launches the selected game) - - ![Screenshot](https://kde.org/images/screenshots/kigo.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-games-suite-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kiibohd-configurator b/apps/kiibohd-configurator new file mode 100644 index 000000000..0efd82b0d --- /dev/null +++ b/apps/kiibohd-configurator @@ -0,0 +1,3 @@ +# kiibohd-configurator +Configuration utility for Input Club keyboards +# SITES: https://github.com/kiibohd/configurator \ No newline at end of file diff --git a/apps/kiibohd-configurator.md b/apps/kiibohd-configurator.md deleted file mode 100644 index 88f4ea4e4..000000000 --- a/apps/kiibohd-configurator.md +++ /dev/null @@ -1,8 +0,0 @@ -# KIIBOHD-CONFIGURATOR - - Configuration utility for Input Club keyboards - - SITE: https://github.com/kiibohd/configurator - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kiku b/apps/kiku new file mode 100644 index 000000000..b07472e18 --- /dev/null +++ b/apps/kiku @@ -0,0 +1,3 @@ +# kiku +An electron application for playing music from youtube on desktop. The application supports using local api, invidious and piped as source. +# SITES: https://github.com/angus6b23/kiku \ No newline at end of file diff --git a/apps/kiku.md b/apps/kiku.md deleted file mode 100644 index a892418c8..000000000 --- a/apps/kiku.md +++ /dev/null @@ -1,8 +0,0 @@ -# KIKU - - An electron application for playing music from youtube on desktop. The application supports using local api, invidious and piped as source. - - SITE: https://github.com/angus6b23/kiku - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kill b/apps/kill new file mode 100644 index 000000000..582cb5b0d --- /dev/null +++ b/apps/kill @@ -0,0 +1,3 @@ +# kill +Terminate a process. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/kill.md b/apps/kill.md deleted file mode 100644 index 2a628569f..000000000 --- a/apps/kill.md +++ /dev/null @@ -1,8 +0,0 @@ -# KILL - - Terminate a process. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/killall b/apps/killall new file mode 100644 index 000000000..8245571e4 --- /dev/null +++ b/apps/killall @@ -0,0 +1,3 @@ +# killall +Kill processes by name. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/killall.md b/apps/killall.md deleted file mode 100644 index 206d08c5a..000000000 --- a/apps/killall.md +++ /dev/null @@ -1,8 +0,0 @@ -# KILLALL - - Kill processes by name. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/killbots b/apps/killbots new file mode 100644 index 000000000..b23e7c7a1 --- /dev/null +++ b/apps/killbots @@ -0,0 +1,12 @@ +# killbots +killbots is a simple game of evading killer robots. The robots are numerous and their sole objective is to destroy you. Fortunately for you, their creator has focused on quantity rather than quality and as a result the robots are severely lacking in intelligence. Your superior wit and a fancy teleportation device are your only weapons against the never-ending stream of mindless automatons. + + This game is part of the KDE Games suite. + + USAGE (from the command line): + + kdegames -h (shows the list of games) + kdegames $GAME (launches the selected game) +# SCREENSHOTS: https://cdn.kde.org/screenshots/killbots/killbots.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-games-suite-appimage \ No newline at end of file diff --git a/apps/killbots.md b/apps/killbots.md deleted file mode 100644 index cb2b03d7b..000000000 --- a/apps/killbots.md +++ /dev/null @@ -1,19 +0,0 @@ -# KILLBOTS - - killbots is a simple game of evading killer robots. The robots are numerous and their sole objective is to destroy you. Fortunately for you, their creator has focused on quantity rather than quality and as a result the robots are severely lacking in intelligence. Your superior wit and a fancy teleportation device are your only weapons against the never-ending stream of mindless automatons. - - This game is part of the KDE Games suite. - - USAGE (from the command line): - - kdegames -h (shows the list of games) - kdegames $GAME (launches the selected game) - - ![Screenshot](https://cdn.kde.org/screenshots/killbots/killbots.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-games-suite-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kimitzu-client b/apps/kimitzu-client new file mode 100644 index 000000000..cf85b0262 --- /dev/null +++ b/apps/kimitzu-client @@ -0,0 +1,3 @@ +# kimitzu-client +Kimitzu Client +# SITES: https://github.com/kimitzu/kimitzu-client \ No newline at end of file diff --git a/apps/kimitzu-client.md b/apps/kimitzu-client.md deleted file mode 100644 index 74d8d6641..000000000 --- a/apps/kimitzu-client.md +++ /dev/null @@ -1,8 +0,0 @@ -# KIMITZU-CLIENT - - Kimitzu Client - - SITE: https://github.com/kimitzu/kimitzu-client - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kindling-cli b/apps/kindling-cli new file mode 100644 index 000000000..4d31118ef --- /dev/null +++ b/apps/kindling-cli @@ -0,0 +1,3 @@ +# kindling-cli +Kindle toolkit for dictionaries, books, comics. +# SITES: https://github.com/ciscoriordan/kindling \ No newline at end of file diff --git a/apps/kindling-cli.md b/apps/kindling-cli.md deleted file mode 100644 index 556f8698a..000000000 --- a/apps/kindling-cli.md +++ /dev/null @@ -1,8 +0,0 @@ -# KINDLING-CLI - - Kindle toolkit for dictionaries, books, comics. - - SITE: https://github.com/ciscoriordan/kindling - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/kinopio b/apps/kinopio new file mode 100644 index 000000000..3f7933998 --- /dev/null +++ b/apps/kinopio @@ -0,0 +1,3 @@ +# kinopio +Thinking canvas for new ideas and hard problems. +# SITES: https://kinopio.club \ No newline at end of file diff --git a/apps/kinopio.md b/apps/kinopio.md deleted file mode 100644 index aec2c4713..000000000 --- a/apps/kinopio.md +++ /dev/null @@ -1,8 +0,0 @@ -# KINOPIO - - Thinking canvas for new ideas and hard problems. - - SITE: https://kinopio.club - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kiri-moto b/apps/kiri-moto new file mode 100644 index 000000000..052ec7897 --- /dev/null +++ b/apps/kiri-moto @@ -0,0 +1,3 @@ +# kiri-moto +Browser-based Slicer for 3D Printing, CAM, Laser and mesh editor. +# SITES: https://github.com/GridSpace/grid-apps \ No newline at end of file diff --git a/apps/kiri-moto.md b/apps/kiri-moto.md deleted file mode 100644 index 3ba4794ef..000000000 --- a/apps/kiri-moto.md +++ /dev/null @@ -1,8 +0,0 @@ -# KIRI-MOTO - - Browser-based Slicer for 3D Printing, CAM, Laser and mesh editor. - - SITE: https://github.com/GridSpace/grid-apps - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/kiriki b/apps/kiriki new file mode 100644 index 000000000..20a80adb7 --- /dev/null +++ b/apps/kiriki @@ -0,0 +1,12 @@ +# kiriki +Earn the most score points by rolling 5 dice up to three times in a single turn. + + This game is part of the KDE Games suite. + + USAGE (from the command line): + + kdegames -h (shows the list of games) + kdegames $GAME (launches the selected game) +# SCREENSHOTS: https://kde.org/images/screenshots/kiriki.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-games-suite-appimage \ No newline at end of file diff --git a/apps/kiriki.md b/apps/kiriki.md deleted file mode 100644 index 765fc2aac..000000000 --- a/apps/kiriki.md +++ /dev/null @@ -1,19 +0,0 @@ -# KIRIKI - - Earn the most score points by rolling 5 dice up to three times in a single turn. - - This game is part of the KDE Games suite. - - USAGE (from the command line): - - kdegames -h (shows the list of games) - kdegames $GAME (launches the selected game) - - ![Screenshot](https://kde.org/images/screenshots/kiriki.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-games-suite-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kitsas b/apps/kitsas new file mode 100644 index 000000000..cee871de7 --- /dev/null +++ b/apps/kitsas @@ -0,0 +1,3 @@ +# kitsas +Finnish bookkeeping software for small organizations. +# SITES: https://github.com/artoh/kitupiikki \ No newline at end of file diff --git a/apps/kitsas.md b/apps/kitsas.md deleted file mode 100644 index 96f6ec542..000000000 --- a/apps/kitsas.md +++ /dev/null @@ -1,8 +0,0 @@ -# KITSAS - - Finnish bookkeeping software for small organizations. - - SITE: https://github.com/artoh/kitupiikki - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/kitshn b/apps/kitshn new file mode 100644 index 000000000..44b6d4da0 --- /dev/null +++ b/apps/kitshn @@ -0,0 +1,4 @@ +# kitshn + An unofficial client for the self-hosted Tandoor recipe management software. +# SITES: https://github.com/aimok04/kitshn +# SOURCES: https://github.com/aimok04/kitshn \ No newline at end of file diff --git a/apps/kitshn.md b/apps/kitshn.md deleted file mode 100644 index 0619f9afa..000000000 --- a/apps/kitshn.md +++ /dev/null @@ -1,8 +0,0 @@ -# KITSHN - - An unofficial client for the self-hosted Tandoor recipe management software. - - SITE: https://github.com/aimok04/kitshn - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/kitty b/apps/kitty new file mode 100644 index 000000000..d34fb5b5b --- /dev/null +++ b/apps/kitty @@ -0,0 +1,3 @@ +# kitty +Cross-platform, fast, feature-rich, GPU based terminal +# SITES: https://github.com/kovidgoyal/kitty \ No newline at end of file diff --git a/apps/kitty.md b/apps/kitty.md deleted file mode 100644 index cfaeb1acc..000000000 --- a/apps/kitty.md +++ /dev/null @@ -1,8 +0,0 @@ -# KITTY - - Cross-platform, fast, feature-rich, GPU based terminal - - SITE: https://github.com/kovidgoyal/kitty - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kitupiikki b/apps/kitupiikki new file mode 100644 index 000000000..7dea3df8e --- /dev/null +++ b/apps/kitupiikki @@ -0,0 +1,3 @@ +# kitupiikki +Bookkeeping software for small organizations +# SITES: https://github.com/artoh/kitupiikki \ No newline at end of file diff --git a/apps/kitupiikki.md b/apps/kitupiikki.md deleted file mode 100644 index 17fa85361..000000000 --- a/apps/kitupiikki.md +++ /dev/null @@ -1,8 +0,0 @@ -# KITUPIIKKI - - Bookkeeping software for small organizations - - SITE: https://github.com/artoh/kitupiikki - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kiwix b/apps/kiwix new file mode 100644 index 000000000..b28ca5712 --- /dev/null +++ b/apps/kiwix @@ -0,0 +1,3 @@ +# kiwix +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. +# SITES: https://kiwix.org \ No newline at end of file diff --git a/apps/kiwix.md b/apps/kiwix.md deleted file mode 100644 index 77ccb0198..000000000 --- a/apps/kiwix.md +++ /dev/null @@ -1,8 +0,0 @@ -# KIWIX - - 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. - - SITE: https://kiwix.org - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/kjumpingcube b/apps/kjumpingcube new file mode 100644 index 000000000..3a8cfa479 --- /dev/null +++ b/apps/kjumpingcube @@ -0,0 +1,12 @@ +# kjumpingcube +Conquer all squares on a board either by occupying an empty square or conquering your opponent's. A maxed out square will distribute its points around it, causing empty squares to be occupied. Watch out for chain reactions! + + This game is part of the KDE Games suite. + + USAGE (from the command line): + + kdegames -h (shows the list of games) + kdegames $GAME (launches the selected game) +# SCREENSHOTS: https://www.kde.org/images/screenshots/kjumpingcube.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-games-suite-appimage \ No newline at end of file diff --git a/apps/kjumpingcube.md b/apps/kjumpingcube.md deleted file mode 100644 index 9289b2949..000000000 --- a/apps/kjumpingcube.md +++ /dev/null @@ -1,19 +0,0 @@ -# KJUMPINGCUBE - - Conquer all squares on a board either by occupying an empty square or conquering your opponent's. A maxed out square will distribute its points around it, causing empty squares to be occupied. Watch out for chain reactions! - - This game is part of the KDE Games suite. - - USAGE (from the command line): - - kdegames -h (shows the list of games) - kdegames $GAME (launches the selected game) - - ![Screenshot](https://www.kde.org/images/screenshots/kjumpingcube.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-games-suite-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/klickety b/apps/klickety new file mode 100644 index 000000000..11ff0c6a8 --- /dev/null +++ b/apps/klickety @@ -0,0 +1,12 @@ +# klickety +Klickety is a simple, yet challenging color matching game modeled after once famous game of SameGame. The idea behind Klickety is to completely clear the game board filled with the multicolored marbles. Klickety also offers a SameGame mode called KSame. + + This game is part of the KDE Games suite. + + USAGE (from the command line): + + kdegames -h (shows the list of games) + kdegames $GAME (launches the selected game) +# SCREENSHOTS: https://cdn.kde.org/screenshots/klickety/klickety.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-games-suite-appimage \ No newline at end of file diff --git a/apps/klickety.md b/apps/klickety.md deleted file mode 100644 index 12c41b174..000000000 --- a/apps/klickety.md +++ /dev/null @@ -1,19 +0,0 @@ -# KLICKETY - - Klickety is a simple, yet challenging color matching game modeled after once famous game of SameGame. The idea behind Klickety is to completely clear the game board filled with the multicolored marbles. Klickety also offers a SameGame mode called KSame. - - This game is part of the KDE Games suite. - - USAGE (from the command line): - - kdegames -h (shows the list of games) - kdegames $GAME (launches the selected game) - - ![Screenshot](https://cdn.kde.org/screenshots/klickety/klickety.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-games-suite-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/klines b/apps/klines new file mode 100644 index 000000000..360ae2ee6 --- /dev/null +++ b/apps/klines @@ -0,0 +1,11 @@ +# klines +KLines is a simple but highly addictive, one player game for KDE. KLines has been inspired by well known game of Color Lines, written by Olga Demina, Igor Ivkin and Gennady Denisov back in 1992. You can also play an online demo version of this game. + + This game is part of the KDE Games suite. + + USAGE (from the command line): + + kdegames -h (shows the list of games) + kdegames $GAME (launches the selected game) +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-games-suite-appimage \ No newline at end of file diff --git a/apps/klines.md b/apps/klines.md deleted file mode 100644 index 8c614ea08..000000000 --- a/apps/klines.md +++ /dev/null @@ -1,17 +0,0 @@ -# KLINES - - KLines is a simple but highly addictive, one player game for KDE. KLines has been inspired by well known game of Color Lines, written by Olga Demina, Igor Ivkin and Gennady Denisov back in 1992. You can also play an online demo version of this game. - - This game is part of the KDE Games suite. - - USAGE (from the command line): - - kdegames -h (shows the list of games) - kdegames $GAME (launches the selected game) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-games-suite-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/klogg b/apps/klogg new file mode 100644 index 000000000..ab7d02d12 --- /dev/null +++ b/apps/klogg @@ -0,0 +1,3 @@ +# klogg +A smart interactive log explorer. +# SITES: https://github.com/variar/klogg \ No newline at end of file diff --git a/apps/klogg.md b/apps/klogg.md deleted file mode 100644 index 1c921e2e9..000000000 --- a/apps/klogg.md +++ /dev/null @@ -1,8 +0,0 @@ -# KLOGG - - A smart interactive log explorer. - - SITE: https://github.com/variar/klogg - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/km-recplayer b/apps/km-recplayer new file mode 100644 index 000000000..80503513a --- /dev/null +++ b/apps/km-recplayer @@ -0,0 +1,3 @@ +# km-recplayer +Recorder and player of keyboard and mouse input (HID) +# SITES: https://github.com/volatilflerovium/keyboard_and_mouse_input_recorder_and_player \ No newline at end of file diff --git a/apps/km-recplayer.md b/apps/km-recplayer.md deleted file mode 100644 index 18568d794..000000000 --- a/apps/km-recplayer.md +++ /dev/null @@ -1,8 +0,0 @@ -# KM-RECPLAYER - - Recorder and player of keyboard and mouse input (HID) - - SITE: https://github.com/volatilflerovium/keyboard_and_mouse_input_recorder_and_player - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kmahjongg b/apps/kmahjongg new file mode 100644 index 000000000..6e6b8265c --- /dev/null +++ b/apps/kmahjongg @@ -0,0 +1,12 @@ +# kmahjongg +Remove all the stacked tiles from the board by finding each tile's pair as fast as possible. + + This game is part of the KDE Games suite. + + USAGE (from the command line): + + kdegames -h (shows the list of games) + kdegames $GAME (launches the selected game) +# SCREENSHOTS: https://cdn.kde.org/screenshots/kmahjongg/kmahjongg.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-games-suite-appimage \ No newline at end of file diff --git a/apps/kmahjongg.md b/apps/kmahjongg.md deleted file mode 100644 index ca44fa445..000000000 --- a/apps/kmahjongg.md +++ /dev/null @@ -1,19 +0,0 @@ -# KMAHJONGG - - Remove all the stacked tiles from the board by finding each tile's pair as fast as possible. - - This game is part of the KDE Games suite. - - USAGE (from the command line): - - kdegames -h (shows the list of games) - kdegames $GAME (launches the selected game) - - ![Screenshot](https://cdn.kde.org/screenshots/kmahjongg/kmahjongg.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-games-suite-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kmines b/apps/kmines new file mode 100644 index 000000000..12f385ff9 --- /dev/null +++ b/apps/kmines @@ -0,0 +1,12 @@ +# kmines +Uncover all the squares without triggering a mine. A classic Minesweeper game. + + This game is part of the KDE Games suite. + + USAGE (from the command line): + + kdegames -h (shows the list of games) + kdegames $GAME (launches the selected game) +# SCREENSHOTS: https://cdn.kde.org/screenshots/kmines/kmines.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-games-suite-appimage \ No newline at end of file diff --git a/apps/kmines.md b/apps/kmines.md deleted file mode 100644 index bbd1d24c8..000000000 --- a/apps/kmines.md +++ /dev/null @@ -1,19 +0,0 @@ -# KMINES - - Uncover all the squares without triggering a mine. A classic Minesweeper game. - - This game is part of the KDE Games suite. - - USAGE (from the command line): - - kdegames -h (shows the list of games) - kdegames $GAME (launches the selected game) - - ![Screenshot](https://cdn.kde.org/screenshots/kmines/kmines.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-games-suite-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kmon b/apps/kmon new file mode 100644 index 000000000..0277ebadc --- /dev/null +++ b/apps/kmon @@ -0,0 +1,3 @@ +# kmon +Linux Kernel Manager and Activity Monitor 🐧💻 +# SITES: https://github.com/orhun/kmon \ No newline at end of file diff --git a/apps/kmon.md b/apps/kmon.md deleted file mode 100644 index 61634253e..000000000 --- a/apps/kmon.md +++ /dev/null @@ -1,8 +0,0 @@ -# KMON - - Linux Kernel Manager and Activity Monitor 🐧💻 - - SITE: https://github.com/orhun/kmon - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kmonad b/apps/kmonad new file mode 100644 index 000000000..abde00be0 --- /dev/null +++ b/apps/kmonad @@ -0,0 +1,3 @@ +# kmonad +An advanced keyboard manager +# SITES: https://github.com/kmonad/kmonad \ No newline at end of file diff --git a/apps/kmonad.md b/apps/kmonad.md deleted file mode 100644 index 6b75814f0..000000000 --- a/apps/kmonad.md +++ /dev/null @@ -1,8 +0,0 @@ -# KMONAD - - An advanced keyboard manager - - SITE: https://github.com/kmonad/kmonad - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kmymoney b/apps/kmymoney new file mode 100644 index 000000000..7334a9273 --- /dev/null +++ b/apps/kmymoney @@ -0,0 +1,3 @@ +# kmymoney +KMyMoney is a cross-platform personal finance manager build on KDE frameworks technologies for your desktop and notebook environment. +# SITES: https://kmymoney.org \ No newline at end of file diff --git a/apps/kmymoney.md b/apps/kmymoney.md deleted file mode 100644 index 7ca7a677b..000000000 --- a/apps/kmymoney.md +++ /dev/null @@ -1,8 +0,0 @@ -# KMYMONEY - - KMyMoney is a cross-platform personal finance manager build on KDE frameworks technologies for your desktop and notebook environment. - - SITE: https://kmymoney.org - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/knavalbattle b/apps/knavalbattle new file mode 100644 index 000000000..78d54e23f --- /dev/null +++ b/apps/knavalbattle @@ -0,0 +1,12 @@ +# knavalbattle +Battle Ship game for KDE workspaces. Players try to sink each other's ships without knowing where they are. + + This game is part of the KDE Games suite. + + USAGE (from the command line): + + kdegames -h (shows the list of games) + kdegames $GAME (launches the selected game) +# SCREENSHOTS: https://cdn.kde.org/screenshots/knavalbattle/knavalbattle.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-games-suite-appimage \ No newline at end of file diff --git a/apps/knavalbattle.md b/apps/knavalbattle.md deleted file mode 100644 index fa85ff39a..000000000 --- a/apps/knavalbattle.md +++ /dev/null @@ -1,19 +0,0 @@ -# KNAVALBATTLE - - Battle Ship game for KDE workspaces. Players try to sink each other's ships without knowing where they are. - - This game is part of the KDE Games suite. - - USAGE (from the command line): - - kdegames -h (shows the list of games) - kdegames $GAME (launches the selected game) - - ![Screenshot](https://cdn.kde.org/screenshots/knavalbattle/knavalbattle.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-games-suite-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/knetwalk b/apps/knetwalk new file mode 100644 index 000000000..84bfe1f9d --- /dev/null +++ b/apps/knetwalk @@ -0,0 +1,12 @@ +# knetwalk +Construct a network by connecting all terminals to the server with wires by rotating these elements around. Use as few rotations as possible. + + This game is part of the KDE Games suite. + + USAGE (from the command line): + + kdegames -h (shows the list of games) + kdegames $GAME (launches the selected game) +# SCREENSHOTS: https://cdn.kde.org/screenshots/knetwalk/knetwalk.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-games-suite-appimage \ No newline at end of file diff --git a/apps/knetwalk.md b/apps/knetwalk.md deleted file mode 100644 index e90213ef2..000000000 --- a/apps/knetwalk.md +++ /dev/null @@ -1,19 +0,0 @@ -# KNETWALK - - Construct a network by connecting all terminals to the server with wires by rotating these elements around. Use as few rotations as possible. - - This game is part of the KDE Games suite. - - USAGE (from the command line): - - kdegames -h (shows the list of games) - kdegames $GAME (launches the selected game) - - ![Screenshot](https://cdn.kde.org/screenshots/knetwalk/knetwalk.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-games-suite-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/knights b/apps/knights new file mode 100644 index 000000000..5a146526c --- /dev/null +++ b/apps/knights @@ -0,0 +1,12 @@ +# knights +Knights aims to be the ultimate chess resource on your computer. It's designed to be both friendly to new chess players and functional for Grand Masters. At the moment you can play either against other human or against the machine using an engine like gnuchess. + + This game is part of the KDE Games suite. + + USAGE (from the command line): + + kdegames -h (shows the list of games) + kdegames $GAME (launches the selected game) +# SCREENSHOTS: https://cdn.kde.org/screenshots/knights/knights.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-games-suite-appimage \ No newline at end of file diff --git a/apps/knights.md b/apps/knights.md deleted file mode 100644 index 8d0252273..000000000 --- a/apps/knights.md +++ /dev/null @@ -1,10 +0,0 @@ -# KNIGHTS - - Knights aims to be the ultimate chess resource on your computer. It's designed to be both friendly to new chess players and functional for Grand Masters. At the moment you can play either against other human or against the machine using an engine like gnuchess. - - ![Screenshot](https://cdn.kde.org/screenshots/knights/knights.png) - - SITE: https://github.com/pkgforge-dev/Knights-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/knowte b/apps/knowte new file mode 100644 index 000000000..ca18bf9dd --- /dev/null +++ b/apps/knowte @@ -0,0 +1,3 @@ +# knowte +Note taking +# SITES: https://github.com/digimezzo/knowte \ No newline at end of file diff --git a/apps/knowte.md b/apps/knowte.md deleted file mode 100644 index 118d30e8f..000000000 --- a/apps/knowte.md +++ /dev/null @@ -1,8 +0,0 @@ -# KNOWTE - - Note taking - - SITE: https://github.com/digimezzo/knowte - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/koboldcpp b/apps/koboldcpp new file mode 100644 index 000000000..c95672447 --- /dev/null +++ b/apps/koboldcpp @@ -0,0 +1,3 @@ +# koboldcpp +A simple one-file way to run various GGML and GGUF models with KoboldAI's UI. +# SITES: https://github.com/LostRuins/koboldcpp \ No newline at end of file diff --git a/apps/koboldcpp.md b/apps/koboldcpp.md deleted file mode 100644 index 9dd915af7..000000000 --- a/apps/koboldcpp.md +++ /dev/null @@ -1,8 +0,0 @@ -# KOBOLDCPP - - A simple one-file way to run various GGML and GGUF models with KoboldAI's UI. - - SITE: https://github.com/LostRuins/koboldcpp - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/koishi-desktop b/apps/koishi-desktop new file mode 100644 index 000000000..285dacdaf --- /dev/null +++ b/apps/koishi-desktop @@ -0,0 +1,3 @@ +# koishi-desktop +Launch Koishi from your desktop. +# SITES: https://koishi.chat/manual/starter/ \ No newline at end of file diff --git a/apps/koishi-desktop.md b/apps/koishi-desktop.md deleted file mode 100644 index beedde0ce..000000000 --- a/apps/koishi-desktop.md +++ /dev/null @@ -1,8 +0,0 @@ -# KOISHI-DESKTOP - - Launch Koishi from your desktop. - - SITE: https://koishi.chat/manual/starter/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kolf b/apps/kolf new file mode 100644 index 000000000..bd4fa5496 --- /dev/null +++ b/apps/kolf @@ -0,0 +1,12 @@ +# kolf +A top-down 2D miniature golf game that can accommodate up to 10 players. + + This game is part of the KDE Games suite. + + USAGE (from the command line): + + kdegames -h (shows the list of games) + kdegames $GAME (launches the selected game) +# SCREENSHOTS: https://cdn.kde.org/screenshots/kolf/kolf.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-games-suite-appimage \ No newline at end of file diff --git a/apps/kolf.md b/apps/kolf.md deleted file mode 100644 index 4e5cdd2e2..000000000 --- a/apps/kolf.md +++ /dev/null @@ -1,19 +0,0 @@ -# KOLF - - A top-down 2D miniature golf game that can accommodate up to 10 players. - - This game is part of the KDE Games suite. - - USAGE (from the command line): - - kdegames -h (shows the list of games) - kdegames $GAME (launches the selected game) - - ![Screenshot](https://cdn.kde.org/screenshots/kolf/kolf.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-games-suite-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kollision b/apps/kollision new file mode 100644 index 000000000..748a57585 --- /dev/null +++ b/apps/kollision @@ -0,0 +1,12 @@ +# kollision +Use your mouse to dodge red balls in the field. Be careful as the ball increase in number and vary in speeds. + + This game is part of the KDE Games suite. + + USAGE (from the command line): + + kdegames -h (shows the list of games) + kdegames $GAME (launches the selected game) +# SCREENSHOTS: https://cdn.kde.org/screenshots/kollision/kollision.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-games-suite-appimage \ No newline at end of file diff --git a/apps/kollision.md b/apps/kollision.md deleted file mode 100644 index 06be82e0f..000000000 --- a/apps/kollision.md +++ /dev/null @@ -1,19 +0,0 @@ -# KOLLISION - - Use your mouse to dodge red balls in the field. Be careful as the ball increase in number and vary in speeds. - - This game is part of the KDE Games suite. - - USAGE (from the command line): - - kdegames -h (shows the list of games) - kdegames $GAME (launches the selected game) - - ![Screenshot](https://cdn.kde.org/screenshots/kollision/kollision.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-games-suite-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kolourpaint b/apps/kolourpaint new file mode 100644 index 000000000..5073dec1f --- /dev/null +++ b/apps/kolourpaint @@ -0,0 +1,4 @@ +# kolourpaint + Unofficial AppImage of KolourPaint. +# SITES: https://github.com/pkgforge-dev/kolourpaint-appimage +# SOURCES: https://github.com/pkgforge-dev/kolourpaint-appimage \ No newline at end of file diff --git a/apps/kolourpaint.md b/apps/kolourpaint.md deleted file mode 100644 index 0ec4f6eff..000000000 --- a/apps/kolourpaint.md +++ /dev/null @@ -1,8 +0,0 @@ -# KOLOURPAINT - - Unofficial AppImage of KolourPaint. - - SITE: https://github.com/pkgforge-dev/kolourpaint-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/kondo b/apps/kondo new file mode 100644 index 000000000..4f6e0ecf6 --- /dev/null +++ b/apps/kondo @@ -0,0 +1,3 @@ +# kondo +Cleans dependencies and build artifacts from your projects. +# SITES: https://github.com/tbillington/kondo \ No newline at end of file diff --git a/apps/kondo.md b/apps/kondo.md deleted file mode 100644 index e5699c8d8..000000000 --- a/apps/kondo.md +++ /dev/null @@ -1,8 +0,0 @@ -# KONDO - - Cleans dependencies and build artifacts from your projects. - - SITE: https://github.com/tbillington/kondo - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kongress b/apps/kongress new file mode 100644 index 000000000..da44ab278 --- /dev/null +++ b/apps/kongress @@ -0,0 +1,7 @@ +# kongress +Kongress is a companion application for conferences made by KDE. + + This tool is part of the KDE Utils Suite. +# SCREENSHOTS: https://cdn.kde.org/screenshots/kongress/desktop.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-utils-appimage \ No newline at end of file diff --git a/apps/kongress.md b/apps/kongress.md deleted file mode 100644 index 7f571e475..000000000 --- a/apps/kongress.md +++ /dev/null @@ -1,14 +0,0 @@ -# KONGRESS - - Kongress is a companion application for conferences made by KDE. - - This tool is part of the KDE Utils Suite. - - ![Screenshot](https://cdn.kde.org/screenshots/kongress/desktop.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-utils-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/konquest b/apps/konquest new file mode 100644 index 000000000..f14cae6be --- /dev/null +++ b/apps/konquest @@ -0,0 +1,12 @@ +# konquest +Build an interstellar empire by sending ships to conquer other planets, including your opponent's planets. + + This game is part of the KDE Games suite. + + USAGE (from the command line): + + kdegames -h (shows the list of games) + kdegames $GAME (launches the selected game) +# SCREENSHOTS: https://kde.org/images/screenshots/konquest.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-games-suite-appimage \ No newline at end of file diff --git a/apps/konquest.md b/apps/konquest.md deleted file mode 100644 index 453b50841..000000000 --- a/apps/konquest.md +++ /dev/null @@ -1,19 +0,0 @@ -# KONQUEST - - Build an interstellar empire by sending ships to conquer other planets, including your opponent's planets. - - This game is part of the KDE Games suite. - - USAGE (from the command line): - - kdegames -h (shows the list of games) - kdegames $GAME (launches the selected game) - - ![Screenshot](https://kde.org/images/screenshots/konquest.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-games-suite-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/koodo-reader b/apps/koodo-reader new file mode 100644 index 000000000..8c4da27f6 --- /dev/null +++ b/apps/koodo-reader @@ -0,0 +1,3 @@ +# koodo-reader +A modern ebook manager and reader with sync and backup capacities for Windows, macOS, Linux and Web. +# SITES: https://github.com/troyeguo/koodo-reader \ No newline at end of file diff --git a/apps/koodo-reader.md b/apps/koodo-reader.md deleted file mode 100644 index a6cbca4c8..000000000 --- a/apps/koodo-reader.md +++ /dev/null @@ -1,8 +0,0 @@ -# KOODO-READER - - A modern ebook manager and reader with sync and backup capacities for Windows, macOS, Linux and Web. - - SITE: https://github.com/troyeguo/koodo-reader - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kopia b/apps/kopia new file mode 100644 index 000000000..f39d2fd60 --- /dev/null +++ b/apps/kopia @@ -0,0 +1,3 @@ +# kopia +Cross-platform backup tool for Windows, macOS & Linux with fast, incremental backups, client-side end-to-end encryption, compression and data deduplication. CLI and GUI included. +# SITES: https://github.com/kopia/kopia \ No newline at end of file diff --git a/apps/kopia.md b/apps/kopia.md deleted file mode 100644 index 8e37f5f17..000000000 --- a/apps/kopia.md +++ /dev/null @@ -1,8 +0,0 @@ -# KOPIA - - Cross-platform backup tool for Windows, macOS & Linux with fast, incremental backups, client-side end-to-end encryption, compression and data deduplication. CLI and GUI included. - - SITE: https://github.com/kopia/kopia - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/koreader b/apps/koreader new file mode 100644 index 000000000..495cd7737 --- /dev/null +++ b/apps/koreader @@ -0,0 +1,8 @@ +# koreader +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. + + + + +# SCREENSHOTS: https://github.com/koreader/koreader-artwork/raw/master/koreader-menu-thumbnail.png https://github.com/koreader/koreader-artwork/raw/master/koreader-footnotes-thumbnail.png https://github.com/koreader/koreader-artwork/raw/master/koreader-dictionary-thumbnail.png +# SITES: http://koreader.rocks \ No newline at end of file diff --git a/apps/koreader-nightly b/apps/koreader-nightly new file mode 100644 index 000000000..1edf8fb56 --- /dev/null +++ b/apps/koreader-nightly @@ -0,0 +1,3 @@ +# koreader-nightly +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. +# SITES: http://koreader.rocks \ No newline at end of file diff --git a/apps/koreader-nightly.md b/apps/koreader-nightly.md deleted file mode 100644 index 3cb22cf9f..000000000 --- a/apps/koreader-nightly.md +++ /dev/null @@ -1,8 +0,0 @@ -# KOREADER-NIGHTLY - - 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. - - SITE: http://koreader.rocks - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/koreader.md b/apps/koreader.md deleted file mode 100644 index 181b7cab3..000000000 --- a/apps/koreader.md +++ /dev/null @@ -1,14 +0,0 @@ -# KOREADER - - 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. - - - - - - SITE: http://koreader.rocks - - REPOSITORY: https://github.com/koreader/koreader - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kpat b/apps/kpat new file mode 100644 index 000000000..d15cafb33 --- /dev/null +++ b/apps/kpat @@ -0,0 +1,12 @@ +# kpat +A relaxing solitaire game. Arrange the cards in a certain order, either by the same color or alternating colors, in the shortest time possible. + + This game is part of the KDE Games suite. + + USAGE (from the command line): + + kdegames -h (shows the list of games) + kdegames $GAME (launches the selected game) +# SCREENSHOTS: https://cdn.kde.org/screenshots/kpatience/kpatience.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-games-suite-appimage \ No newline at end of file diff --git a/apps/kpat.md b/apps/kpat.md deleted file mode 100644 index 1855cc831..000000000 --- a/apps/kpat.md +++ /dev/null @@ -1,19 +0,0 @@ -# KPAT - - A relaxing solitaire game. Arrange the cards in a certain order, either by the same color or alternating colors, in the shortest time possible. - - This game is part of the KDE Games suite. - - USAGE (from the command line): - - kdegames -h (shows the list of games) - kdegames $GAME (launches the selected game) - - ![Screenshot](https://cdn.kde.org/screenshots/kpatience/kpatience.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-games-suite-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/krecorder b/apps/krecorder new file mode 100644 index 000000000..b24c46fe3 --- /dev/null +++ b/apps/krecorder @@ -0,0 +1,7 @@ +# krecorder +Recorder is a simple, cross-platform audio recording application. + + This tool is part of the KDE Utils Suite. +# SCREENSHOTS: https://plasma-mobile.org/2022/11/30/plasma-mobile-gear-22-11/krecorder-3.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-utils-appimage \ No newline at end of file diff --git a/apps/krecorder.md b/apps/krecorder.md deleted file mode 100644 index 1d503f168..000000000 --- a/apps/krecorder.md +++ /dev/null @@ -1,14 +0,0 @@ -# KRECORDER - - Recorder is a simple, cross-platform audio recording application. - - This tool is part of the KDE Utils Suite. - - ![Screenshot](https://plasma-mobile.org/2022/11/30/plasma-mobile-gear-22-11/krecorder-3.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-utils-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kreversi b/apps/kreversi new file mode 100644 index 000000000..1dba63877 --- /dev/null +++ b/apps/kreversi @@ -0,0 +1,12 @@ +# kreversi +Capture your opponents pieces and turn them over to your color. Get control over majority of the board to win. + + This game is part of the KDE Games suite. + + USAGE (from the command line): + + kdegames -h (shows the list of games) + kdegames $GAME (launches the selected game) +# SCREENSHOTS: https://cdn.kde.org/screenshots/kreversi/kreversi.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-games-suite-appimage \ No newline at end of file diff --git a/apps/kreversi.md b/apps/kreversi.md deleted file mode 100644 index 945088ecd..000000000 --- a/apps/kreversi.md +++ /dev/null @@ -1,19 +0,0 @@ -# KREVERSI - - Capture your opponents pieces and turn them over to your color. Get control over majority of the board to win. - - This game is part of the KDE Games suite. - - USAGE (from the command line): - - kdegames -h (shows the list of games) - kdegames $GAME (launches the selected game) - - ![Screenshot](https://cdn.kde.org/screenshots/kreversi/kreversi.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-games-suite-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/krita b/apps/krita new file mode 100644 index 000000000..1d510a94e --- /dev/null +++ b/apps/krita @@ -0,0 +1,8 @@ +# krita +Krita is a professional FREE and open source painting program. It is made by artists that want to see affordable art tools for everyone. + + - concept art + - texture and matte painters + - illustrations and comics +# SCREENSHOTS: https://cdn.kde.org/screenshots/krita/filters.png +# SITES: https://krita.org \ No newline at end of file diff --git a/apps/krita-devel b/apps/krita-devel new file mode 100644 index 000000000..4b9276639 --- /dev/null +++ b/apps/krita-devel @@ -0,0 +1,11 @@ +# krita-devel +Krita is a professional FREE and open source painting program. It is made by artists that want to see affordable art tools for everyone. + + - concept art + - texture and matte painters + - illustrations and comics + + This is the development edition. +# SCREENSHOTS: https://cdn.kde.org/screenshots/krita/filters.png +# SITES: https://krita.org +# SOURCES: https://cdn.kde.org/ci-builds/graphics/krita/master/linux \ No newline at end of file diff --git a/apps/krita-devel.md b/apps/krita-devel.md deleted file mode 100644 index c1b82e0e8..000000000 --- a/apps/krita-devel.md +++ /dev/null @@ -1,18 +0,0 @@ -# KRITA-DEVEL - - Krita is a professional FREE and open source painting program. It is made by artists that want to see affordable art tools for everyone. - - - concept art - - texture and matte painters - - illustrations and comics - - This is the development edition. - - ![Screenshot](https://cdn.kde.org/screenshots/krita/filters.png) - - SITE: https://krita.org - - SOURCE: https://cdn.kde.org/ci-builds/graphics/krita/master/linux - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/krita.md b/apps/krita.md deleted file mode 100644 index 47f19b713..000000000 --- a/apps/krita.md +++ /dev/null @@ -1,14 +0,0 @@ -# KRITA - - Krita is a professional FREE and open source painting program. It is made by artists that want to see affordable art tools for everyone. - - - concept art - - texture and matte painters - - illustrations and comics - - ![Screenshot](https://cdn.kde.org/screenshots/krita/filters.png) - - SITE: https://krita.org - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/krokiet b/apps/krokiet new file mode 100644 index 000000000..e8e2462ff --- /dev/null +++ b/apps/krokiet @@ -0,0 +1,4 @@ +# krokiet + App to find duplicates, empty folders, similar images etc. The successor of czkawka. +# SITES: https://github.com/qarmin/czkawka +# SOURCES: https://github.com/qarmin/czkawka \ No newline at end of file diff --git a/apps/krokiet.md b/apps/krokiet.md deleted file mode 100644 index fe416d8c9..000000000 --- a/apps/krokiet.md +++ /dev/null @@ -1,8 +0,0 @@ -# KROKIET - - App to find duplicates, empty folders, similar images etc. The successor of czkawka. - - SITE: https://github.com/qarmin/czkawka - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/kronos b/apps/kronos new file mode 100644 index 000000000..7aa89b9b1 --- /dev/null +++ b/apps/kronos @@ -0,0 +1,3 @@ +# kronos +Unofficial, Sega Saturn emulator. +# SITES: https://github.com/pkgforge-dev/Kronos-AppImage \ No newline at end of file diff --git a/apps/kronos.md b/apps/kronos.md deleted file mode 100644 index cf4db2d98..000000000 --- a/apps/kronos.md +++ /dev/null @@ -1,8 +0,0 @@ -# KRONOS - - Unofficial, Sega Saturn emulator. - - SITE: https://github.com/pkgforge-dev/Kronos-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/krunker b/apps/krunker new file mode 100644 index 000000000..e36476417 --- /dev/null +++ b/apps/krunker @@ -0,0 +1,3 @@ +# krunker +Krunker (.io) is a fast-paced first-person shooter game with pixel graphics. +# SITES: https://krunker.io \ No newline at end of file diff --git a/apps/krunker.md b/apps/krunker.md deleted file mode 100644 index 5a26c9144..000000000 --- a/apps/krunker.md +++ /dev/null @@ -1,8 +0,0 @@ -# KRUNKER - - Krunker (.io) is a fast-paced first-person shooter game with pixel graphics. - - SITE: https://krunker.io - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kshisen b/apps/kshisen new file mode 100644 index 000000000..aec121d29 --- /dev/null +++ b/apps/kshisen @@ -0,0 +1,12 @@ +# kshisen +Similar to Mahjongg, except the tiles are not stacked on top of one another. Find a tile's pair to remove them from the board. + + This game is part of the KDE Games suite. + + USAGE (from the command line): + + kdegames -h (shows the list of games) + kdegames $GAME (launches the selected game) +# SCREENSHOTS: https://cdn.kde.org/screenshots/kshisen/kshisen.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-games-suite-appimage \ No newline at end of file diff --git a/apps/kshisen.md b/apps/kshisen.md deleted file mode 100644 index 208cdc9b1..000000000 --- a/apps/kshisen.md +++ /dev/null @@ -1,19 +0,0 @@ -# KSHISEN - - Similar to Mahjongg, except the tiles are not stacked on top of one another. Find a tile's pair to remove them from the board. - - This game is part of the KDE Games suite. - - USAGE (from the command line): - - kdegames -h (shows the list of games) - kdegames $GAME (launches the selected game) - - ![Screenshot](https://cdn.kde.org/screenshots/kshisen/kshisen.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-games-suite-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ksirk b/apps/ksirk new file mode 100644 index 000000000..2d6ed662c --- /dev/null +++ b/apps/ksirk @@ -0,0 +1,12 @@ +# ksirk +KsirK is a computerized version of a well known strategy board game. KsirK is a multi-player network-playable game with an AI. The goal of the game is simply to conquer the World… It is done by attacking your neighbours with your armies. + + This game is part of the KDE Games suite. + + USAGE (from the command line): + + kdegames -h (shows the list of games) + kdegames $GAME (launches the selected game) +# SCREENSHOTS: https://kde.org/images/screenshots/ksirk.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-games-suite-appimage \ No newline at end of file diff --git a/apps/ksirk.md b/apps/ksirk.md deleted file mode 100644 index 02d8f2304..000000000 --- a/apps/ksirk.md +++ /dev/null @@ -1,19 +0,0 @@ -# KSIRK - - KsirK is a computerized version of a well known strategy board game. KsirK is a multi-player network-playable game with an AI. The goal of the game is simply to conquer the World… It is done by attacking your neighbours with your armies. - - This game is part of the KDE Games suite. - - USAGE (from the command line): - - kdegames -h (shows the list of games) - kdegames $GAME (launches the selected game) - - ![Screenshot](https://kde.org/images/screenshots/ksirk.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-games-suite-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ksnakeduel b/apps/ksnakeduel new file mode 100644 index 000000000..048f0291c --- /dev/null +++ b/apps/ksnakeduel @@ -0,0 +1,14 @@ +# ksnakeduel +Snake race game. The object of the game is to avoid running into walls, your own tail, and that of your opponent, while at the same time you have to try to get your opponent to run into them. + + It also includes kdesnake, a special mode of the game where you can play the classical snake action game. In snake you steer a snake which has to eat food. While eating, the snake grows. But once a player collides with the other snake or the wall, the game is lost. This becomes, of course, more and more difficult the longer the snakes grow. + + This game is part of the KDE Games suite. + + USAGE (from the command line): + + kdegames -h (shows the list of games) + kdegames $GAME (launches the selected game) +# SCREENSHOTS: https://kde.org/images/screenshots/ksnakeduel.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-games-suite-appimage \ No newline at end of file diff --git a/apps/ksnakeduel.md b/apps/ksnakeduel.md deleted file mode 100644 index 51e3fe3e1..000000000 --- a/apps/ksnakeduel.md +++ /dev/null @@ -1,21 +0,0 @@ -# KSNAKEDUEL - - Snake race game. The object of the game is to avoid running into walls, your own tail, and that of your opponent, while at the same time you have to try to get your opponent to run into them. - - It also includes kdesnake, a special mode of the game where you can play the classical snake action game. In snake you steer a snake which has to eat food. While eating, the snake grows. But once a player collides with the other snake or the wall, the game is lost. This becomes, of course, more and more difficult the longer the snakes grow. - - This game is part of the KDE Games suite. - - USAGE (from the command line): - - kdegames -h (shows the list of games) - kdegames $GAME (launches the selected game) - - ![Screenshot](https://kde.org/images/screenshots/ksnakeduel.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-games-suite-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ksnip b/apps/ksnip new file mode 100644 index 000000000..e8d2c9363 --- /dev/null +++ b/apps/ksnip @@ -0,0 +1,3 @@ +# ksnip +ksnip, the cross-platform screenshot and annotation tool. +# SITES: https://github.com/DamirPorobic/ksnip \ No newline at end of file diff --git a/apps/ksnip.md b/apps/ksnip.md deleted file mode 100644 index 0befe370f..000000000 --- a/apps/ksnip.md +++ /dev/null @@ -1,8 +0,0 @@ -# KSNIP - - ksnip, the cross-platform screenshot and annotation tool. - - SITE: https://github.com/DamirPorobic/ksnip - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kspaceduel b/apps/kspaceduel new file mode 100644 index 000000000..ad9d3b949 --- /dev/null +++ b/apps/kspaceduel @@ -0,0 +1,12 @@ +# kspaceduel +Eliminate your opponents satellite while controlling your own satellite revolving around a sun. Don't get too close or your will burn up. + + This game is part of the KDE Games suite. + + USAGE (from the command line): + + kdegames -h (shows the list of games) + kdegames $GAME (launches the selected game) +# SCREENSHOTS: https://cdn.kde.org/screenshots/kspaceduel/kspaceduel.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-games-suite-appimage \ No newline at end of file diff --git a/apps/kspaceduel.md b/apps/kspaceduel.md deleted file mode 100644 index 1fc23372d..000000000 --- a/apps/kspaceduel.md +++ /dev/null @@ -1,19 +0,0 @@ -# KSPACEDUEL - - Eliminate your opponents satellite while controlling your own satellite revolving around a sun. Don't get too close or your will burn up. - - This game is part of the KDE Games suite. - - USAGE (from the command line): - - kdegames -h (shows the list of games) - kdegames $GAME (launches the selected game) - - ![Screenshot](https://cdn.kde.org/screenshots/kspaceduel/kspaceduel.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-games-suite-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ksquares b/apps/ksquares new file mode 100644 index 000000000..2d0c4062a --- /dev/null +++ b/apps/ksquares @@ -0,0 +1,12 @@ +# ksquares +Players take turn in connecting two adjacent dots to form a square. The player with the most number of completed squares win. + + This game is part of the KDE Games suite. + + USAGE (from the command line): + + kdegames -h (shows the list of games) + kdegames $GAME (launches the selected game) +# SCREENSHOTS: https://cdn.kde.org/screenshots/ksquares/ksquares-standard.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-games-suite-appimage \ No newline at end of file diff --git a/apps/ksquares.md b/apps/ksquares.md deleted file mode 100644 index 95862f8ef..000000000 --- a/apps/ksquares.md +++ /dev/null @@ -1,19 +0,0 @@ -# KSQUARES - - Players take turn in connecting two adjacent dots to form a square. The player with the most number of completed squares win. - - This game is part of the KDE Games suite. - - USAGE (from the command line): - - kdegames -h (shows the list of games) - kdegames $GAME (launches the selected game) - - ![Screenshot](https://cdn.kde.org/screenshots/ksquares/ksquares-standard.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-games-suite-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kstars b/apps/kstars new file mode 100644 index 000000000..8f0750311 --- /dev/null +++ b/apps/kstars @@ -0,0 +1,4 @@ +# kstars + Unofficial AppImage of KStars. +# SITES: https://github.com/pkgforge-dev/kstars-appimage +# SOURCES: https://github.com/pkgforge-dev/kstars-appimage \ No newline at end of file diff --git a/apps/kstars.md b/apps/kstars.md deleted file mode 100644 index bcf027175..000000000 --- a/apps/kstars.md +++ /dev/null @@ -1,8 +0,0 @@ -# KSTARS - - Unofficial AppImage of KStars. - - SITE: https://github.com/pkgforge-dev/kstars-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/ksudoku b/apps/ksudoku new file mode 100644 index 000000000..a3d2efe94 --- /dev/null +++ b/apps/ksudoku @@ -0,0 +1,12 @@ +# ksudoku +Fill the grid so that each column, row as well as each square sector on the game field contains only one instance of each symbol. + + This game is part of the KDE Games suite. + + USAGE (from the command line): + + kdegames -h (shows the list of games) + kdegames $GAME (launches the selected game) +# SCREENSHOTS: https://cdn.kde.org/screenshots/ksudoku/ksudoku.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-games-suite-appimage \ No newline at end of file diff --git a/apps/ksudoku.md b/apps/ksudoku.md deleted file mode 100644 index ddcced2f0..000000000 --- a/apps/ksudoku.md +++ /dev/null @@ -1,19 +0,0 @@ -# KSUDOKU - - Fill the grid so that each column, row as well as each square sector on the game field contains only one instance of each symbol. - - This game is part of the KDE Games suite. - - USAGE (from the command line): - - kdegames -h (shows the list of games) - kdegames $GAME (launches the selected game) - - ![Screenshot](https://cdn.kde.org/screenshots/ksudoku/ksudoku.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-games-suite-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kteatime b/apps/kteatime new file mode 100644 index 000000000..2c6e37d8b --- /dev/null +++ b/apps/kteatime @@ -0,0 +1,7 @@ +# kteatime +KTeaTime is a handy timer for steeping tea. No longer will you have to guess at how long it takes for your tea to be ready. Simply select the type of tea you have, and it will alert you when the tea is ready to drink. + + This tool is part of the KDE Utils Suite. +# SCREENSHOTS: https://cdn.kde.org/screenshots/kteatime/kteatime.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-utils-appimage \ No newline at end of file diff --git a/apps/kteatime.md b/apps/kteatime.md deleted file mode 100644 index 32e6ffc50..000000000 --- a/apps/kteatime.md +++ /dev/null @@ -1,14 +0,0 @@ -# KTEATIME - - KTeaTime is a handy timer for steeping tea. No longer will you have to guess at how long it takes for your tea to be ready. Simply select the type of tea you have, and it will alert you when the tea is ready to drink. - - This tool is part of the KDE Utils Suite. - - ![Screenshot](https://cdn.kde.org/screenshots/kteatime/kteatime.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-utils-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ktimer b/apps/ktimer new file mode 100644 index 000000000..d5bd6560c --- /dev/null +++ b/apps/ktimer @@ -0,0 +1,7 @@ +# ktimer +KTimer is a countdown timer for running commands after a delay. The countdown can be paused or set to loop continuously. + + This tool is part of the KDE Utils Suite. +# SCREENSHOTS: https://www.kde.org/images/screenshots/ktimer.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-utils-appimage \ No newline at end of file diff --git a/apps/ktimer.md b/apps/ktimer.md deleted file mode 100644 index 89ae58722..000000000 --- a/apps/ktimer.md +++ /dev/null @@ -1,14 +0,0 @@ -# KTIMER - - KTimer is a countdown timer for running commands after a delay. The countdown can be paused or set to loop continuously. - - This tool is part of the KDE Utils Suite. - - ![Screenshot](https://www.kde.org/images/screenshots/ktimer.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-utils-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ktorrent b/apps/ktorrent new file mode 100644 index 000000000..3762e454e --- /dev/null +++ b/apps/ktorrent @@ -0,0 +1,4 @@ +# ktorrent + Unofficial AppImage of KTorrent. +# SITES: https://github.com/pkgforge-dev/ktorrent-appimage +# SOURCES: https://github.com/pkgforge-dev/ktorrent-appimage \ No newline at end of file diff --git a/apps/ktorrent.md b/apps/ktorrent.md deleted file mode 100644 index 58ce832ed..000000000 --- a/apps/ktorrent.md +++ /dev/null @@ -1,8 +0,0 @@ -# KTORRENT - - Unofficial AppImage of KTorrent. - - SITE: https://github.com/pkgforge-dev/ktorrent-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/ktrip b/apps/ktrip new file mode 100644 index 000000000..5b84d0b89 --- /dev/null +++ b/apps/ktrip @@ -0,0 +1,7 @@ +# ktrip +KTrip helps you navigate in public transport. It allows you to find journeys between specified locations, departures for a specific station and shows real-time delay and disruption information. + + This tool is part of the KDE Utils Suite. +# SCREENSHOTS: https://cdn.kde.org/screenshots/ktrip/ktrip.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-utils-appimage \ No newline at end of file diff --git a/apps/ktrip.md b/apps/ktrip.md deleted file mode 100644 index dbc4b7981..000000000 --- a/apps/ktrip.md +++ /dev/null @@ -1,14 +0,0 @@ -# KTRIP - - KTrip helps you navigate in public transport. It allows you to find journeys between specified locations, departures for a specific station and shows real-time delay and disruption information. - - This tool is part of the KDE Utils Suite. - - ![Screenshot](https://cdn.kde.org/screenshots/ktrip/ktrip.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-utils-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ktuberling b/apps/ktuberling new file mode 100644 index 000000000..14cda270a --- /dev/null +++ b/apps/ktuberling @@ -0,0 +1,13 @@ +# ktuberling +KTuberling a simple constructor game suitable for children and adults alike. + The idea of the game is based around a once popular doll making concept. + + This game is part of the KDE Games suite. + + USAGE (from the command line): + + kdegames -h (shows the list of games) + kdegames $GAME (launches the selected game) +# SCREENSHOTS: https://cdn.kde.org/screenshots/ktuberling/ktuberling.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-games-suite-appimage \ No newline at end of file diff --git a/apps/ktuberling.md b/apps/ktuberling.md deleted file mode 100644 index b097ee9a9..000000000 --- a/apps/ktuberling.md +++ /dev/null @@ -1,20 +0,0 @@ -# KTUBERLING - - KTuberling a simple constructor game suitable for children and adults alike. - The idea of the game is based around a once popular doll making concept. - - This game is part of the KDE Games suite. - - USAGE (from the command line): - - kdegames -h (shows the list of games) - kdegames $GAME (launches the selected game) - - ![Screenshot](https://cdn.kde.org/screenshots/ktuberling/ktuberling.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-games-suite-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kubeman b/apps/kubeman new file mode 100644 index 000000000..82b37ec90 --- /dev/null +++ b/apps/kubeman @@ -0,0 +1,3 @@ +# kubeman +The Hero that Kubernetes deserves (kubernetes management GUI) +# SITES: https://github.com/walmartlabs/kubeman \ No newline at end of file diff --git a/apps/kubeman.md b/apps/kubeman.md deleted file mode 100644 index 5913c1850..000000000 --- a/apps/kubeman.md +++ /dev/null @@ -1,8 +0,0 @@ -# KUBEMAN - - The Hero that Kubernetes deserves (kubernetes management GUI) - - SITE: https://github.com/walmartlabs/kubeman - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kubenav b/apps/kubenav new file mode 100644 index 000000000..273a28333 --- /dev/null +++ b/apps/kubenav @@ -0,0 +1,3 @@ +# kubenav +The navigator for your Kubernetes clusters right in your pocket. +# SITES: https://kubenav.io/ \ No newline at end of file diff --git a/apps/kubenav.md b/apps/kubenav.md deleted file mode 100644 index e8232b855..000000000 --- a/apps/kubenav.md +++ /dev/null @@ -1,8 +0,0 @@ -# KUBENAV - - The navigator for your Kubernetes clusters right in your pocket. - - SITE: https://kubenav.io/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kubrick b/apps/kubrick new file mode 100644 index 000000000..1e9acb925 --- /dev/null +++ b/apps/kubrick @@ -0,0 +1,14 @@ +# kubrick +Kubrick is a game based on Rubik's Cube and using OpenGL 3-D graphics libraries. Kubrick handles cubes, "bricks" and "mats" from 2x2x1 up to 6x6x6. It has several built-in puzzles of graded difficulty, as well as demos of solving moves and pretty patterns. + + The game has unlimited undo, redo, save and reload capabilities. + + This game is part of the KDE Games suite. + + USAGE (from the command line): + + kdegames -h (shows the list of games) + kdegames $GAME (launches the selected game) +# SCREENSHOTS: https://kde.org/images/screenshots/kubrick.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-games-suite-appimage \ No newline at end of file diff --git a/apps/kubrick.md b/apps/kubrick.md deleted file mode 100644 index acf07a5f1..000000000 --- a/apps/kubrick.md +++ /dev/null @@ -1,21 +0,0 @@ -# KUBRICK - - Kubrick is a game based on Rubik's Cube and using OpenGL 3-D graphics libraries. Kubrick handles cubes, "bricks" and "mats" from 2x2x1 up to 6x6x6. It has several built-in puzzles of graded difficulty, as well as demos of solving moves and pretty patterns. - - The game has unlimited undo, redo, save and reload capabilities. - - This game is part of the KDE Games suite. - - USAGE (from the command line): - - kdegames -h (shows the list of games) - kdegames $GAME (launches the selected game) - - ![Screenshot](https://kde.org/images/screenshots/kubrick.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-games-suite-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kunkun b/apps/kunkun new file mode 100644 index 000000000..30c9559e9 --- /dev/null +++ b/apps/kunkun @@ -0,0 +1,3 @@ +# kunkun +An open source, cross-platform, extensible app launcher. +# SITES: https://github.com/kunkunsh/kunkun \ No newline at end of file diff --git a/apps/kunkun.md b/apps/kunkun.md deleted file mode 100644 index 40fbdbb2c..000000000 --- a/apps/kunkun.md +++ /dev/null @@ -1,8 +0,0 @@ -# KUNKUN - - An open source, cross-platform, extensible app launcher. - - SITE: https://github.com/kunkunsh/kunkun - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kure b/apps/kure new file mode 100644 index 000000000..02e01a3a0 --- /dev/null +++ b/apps/kure @@ -0,0 +1,3 @@ +# kure +CLI password manager with sessions +# SITES: https://github.com/GGP1/kure \ No newline at end of file diff --git a/apps/kure.md b/apps/kure.md deleted file mode 100644 index 0caa0cb1d..000000000 --- a/apps/kure.md +++ /dev/null @@ -1,8 +0,0 @@ -# KURE - - CLI password manager with sessions - - SITE: https://github.com/GGP1/kure - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kuro b/apps/kuro new file mode 100644 index 000000000..c1098dcad --- /dev/null +++ b/apps/kuro @@ -0,0 +1,3 @@ +# kuro +An elegant Microsoft ToDo desktop client for Linux +# SITES: https://github.com/davidsmorais/kuro \ No newline at end of file diff --git a/apps/kuro.md b/apps/kuro.md deleted file mode 100644 index f1edce315..000000000 --- a/apps/kuro.md +++ /dev/null @@ -1,8 +0,0 @@ -# KURO - - An elegant Microsoft ToDo desktop client for Linux - - SITE: https://github.com/davidsmorais/kuro - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kwave b/apps/kwave new file mode 100644 index 000000000..596e5305a --- /dev/null +++ b/apps/kwave @@ -0,0 +1,7 @@ +# kwave +Kwave is a sound editor designed for the KDE Desktop Environment. With Kwave you can record, play back, import and edit many sorts of audio files including multi-channel files. Kwave includes some plugins to transform audio files in several ways and presents a graphical view with a complete zoom- and scroll capability. + + This is the unofficial AppImage. +# SCREENSHOTS: https://cdn.kde.org/screenshots/kwave/kwave.png +# SITES: https://apps.kde.org/kwave +# SOURCES: https://github.com/ivan-hc/kwave-appimage \ No newline at end of file diff --git a/apps/kwave.md b/apps/kwave.md deleted file mode 100644 index f9f4feaa6..000000000 --- a/apps/kwave.md +++ /dev/null @@ -1,14 +0,0 @@ -# KWAVE - - Kwave is a sound editor designed for the KDE Desktop Environment. With Kwave you can record, play back, import and edit many sorts of audio files including multi-channel files. Kwave includes some plugins to transform audio files in several ways and presents a graphical view with a complete zoom- and scroll capability. - - This is the unofficial AppImage. - - ![Screenshot](https://cdn.kde.org/screenshots/kwave/kwave.png) - - SITE: https://apps.kde.org/kwave - - SOURCE: https://github.com/ivan-hc/kwave-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kweather b/apps/kweather new file mode 100644 index 000000000..b1b02a3ae --- /dev/null +++ b/apps/kweather @@ -0,0 +1,7 @@ +# kweather +A convergent weather application for Plasma. Has flat and dynamic/animated views for showing forecasts and other information. + + This tool is part of the KDE Utils Suite. +# SCREENSHOTS: https://cdn.kde.org/screenshots/kweather/kweather-mobile-flat.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-utils-appimage \ No newline at end of file diff --git a/apps/kweather.md b/apps/kweather.md deleted file mode 100644 index bdcd95c30..000000000 --- a/apps/kweather.md +++ /dev/null @@ -1,14 +0,0 @@ -# KWEATHER - - A convergent weather application for Plasma. Has flat and dynamic/animated views for showing forecasts and other information. - - This tool is part of the KDE Utils Suite. - - ![Screenshot](https://cdn.kde.org/screenshots/kweather/kweather-mobile-flat.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-utils-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/kwrite b/apps/kwrite new file mode 100644 index 000000000..2edea1d72 --- /dev/null +++ b/apps/kwrite @@ -0,0 +1,7 @@ +# kwrite +KWrite is a text editor by KDE, based on the Kate's editor component. + + This tool is part of the KDE Utils Suite. +# SCREENSHOTS: https://cdn.kde.org/screenshots/kwrite/kwrite.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-utils-appimage \ No newline at end of file diff --git a/apps/kwrite.md b/apps/kwrite.md deleted file mode 100644 index 240bcd276..000000000 --- a/apps/kwrite.md +++ /dev/null @@ -1,14 +0,0 @@ -# KWRITE - - KWrite is a text editor by KDE, based on the Kate's editor component. - - This tool is part of the KDE Utils Suite. - - ![Screenshot](https://cdn.kde.org/screenshots/kwrite/kwrite.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-utils-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/labplot b/apps/labplot new file mode 100644 index 000000000..a6a05c3ca --- /dev/null +++ b/apps/labplot @@ -0,0 +1,3 @@ +# labplot +FREE, open source and cross-platform Data Visualization and Analysis software accessible to everyone and trusted by professionals. +# SITES: https://labplot.kde.org \ No newline at end of file diff --git a/apps/labplot.md b/apps/labplot.md deleted file mode 100644 index f166568fc..000000000 --- a/apps/labplot.md +++ /dev/null @@ -1,8 +0,0 @@ -# LABPLOT - - FREE, open source and cross-platform Data Visualization and Analysis software accessible to everyone and trusted by professionals. - - SITE: https://labplot.kde.org - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ladybird b/apps/ladybird new file mode 100644 index 000000000..c2cc9d005 --- /dev/null +++ b/apps/ladybird @@ -0,0 +1,3 @@ +# ladybird +A truly independent web browser, using a novel engine based on web standards. +# SITES: https://github.com/pkgforge-dev/ladybird-appimage \ No newline at end of file diff --git a/apps/ladybird.md b/apps/ladybird.md deleted file mode 100644 index 28a2354f9..000000000 --- a/apps/ladybird.md +++ /dev/null @@ -1,8 +0,0 @@ -# LADYBIRD - - A truly independent web browser, using a novel engine based on web standards. - - SITE: https://github.com/pkgforge-dev/ladybird-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/lagrange b/apps/lagrange new file mode 100644 index 000000000..846229424 --- /dev/null +++ b/apps/lagrange @@ -0,0 +1,3 @@ +# lagrange +A Beautiful Gemini Client +# SITES: https://github.com/skyjake/lagrange \ No newline at end of file diff --git a/apps/lagrange.md b/apps/lagrange.md deleted file mode 100644 index a7b23fe97..000000000 --- a/apps/lagrange.md +++ /dev/null @@ -1,8 +0,0 @@ -# LAGRANGE - - A Beautiful Gemini Client - - SITE: https://github.com/skyjake/lagrange - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/laidout b/apps/laidout new file mode 100644 index 000000000..de1101c79 --- /dev/null +++ b/apps/laidout @@ -0,0 +1,3 @@ +# laidout +Laidout, desktop publishing software +# SITES: https://github.com/Laidout/laidout \ No newline at end of file diff --git a/apps/laidout.md b/apps/laidout.md deleted file mode 100644 index e681af346..000000000 --- a/apps/laidout.md +++ /dev/null @@ -1,8 +0,0 @@ -# LAIDOUT - - Laidout, desktop publishing software - - SITE: https://github.com/Laidout/laidout - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/laigter b/apps/laigter new file mode 100644 index 000000000..4f5ac8635 --- /dev/null +++ b/apps/laigter @@ -0,0 +1,3 @@ +# laigter +Tool to generate normal, specular, occlussion and parallax maps for 2D +# SITES: https://github.com/azagaya/laigter \ No newline at end of file diff --git a/apps/laigter.md b/apps/laigter.md deleted file mode 100644 index 9b07a2413..000000000 --- a/apps/laigter.md +++ /dev/null @@ -1,8 +0,0 @@ -# LAIGTER - - Tool to generate normal, specular, occlussion and parallax maps for 2D - - SITE: https://github.com/azagaya/laigter - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/lambda-lantern b/apps/lambda-lantern new file mode 100644 index 000000000..86fd7f69c --- /dev/null +++ b/apps/lambda-lantern @@ -0,0 +1,4 @@ +# lambda-lantern +A 3D game about functional programming patterns. Uses PureScript Native, C++, and Panda3D. +# SCREENSHOTS: https://img.itch.zone/aW1nLzE2NzcwNjYuZ2lm/original/WMdP2V.gif +# SITES: https://github.com/lettier/lambda-lantern \ No newline at end of file diff --git a/apps/lambda-lantern.md b/apps/lambda-lantern.md deleted file mode 100644 index b197108d8..000000000 --- a/apps/lambda-lantern.md +++ /dev/null @@ -1,10 +0,0 @@ -# LAMBDA-LANTERN - - A 3D game about functional programming patterns. Uses PureScript Native, C++, and Panda3D. - - ![GIF](https://img.itch.zone/aW1nLzE2NzcwNjYuZ2lm/original/WMdP2V.gif) - - SITE: https://github.com/lettier/lambda-lantern - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/lan-mouse b/apps/lan-mouse new file mode 100644 index 000000000..4bbe17018 --- /dev/null +++ b/apps/lan-mouse @@ -0,0 +1,3 @@ +# lan-mouse +Mouse & keyboard sharing via LAN. +# SITES: https://github.com/feschber/lan-mouse \ No newline at end of file diff --git a/apps/lan-mouse.md b/apps/lan-mouse.md deleted file mode 100644 index 55df901b8..000000000 --- a/apps/lan-mouse.md +++ /dev/null @@ -1,8 +0,0 @@ -# LAN-MOUSE - - Mouse & keyboard sharing via LAN. - - SITE: https://github.com/feschber/lan-mouse - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/landrop b/apps/landrop new file mode 100644 index 000000000..365c55c15 --- /dev/null +++ b/apps/landrop @@ -0,0 +1,3 @@ +# landrop +LANDrop is a cross-platform tool that you can use to conveniently transfer photos, videos, and other types of files to other devices on the same local network. +# SITES: https://landrop.app \ No newline at end of file diff --git a/apps/landrop.md b/apps/landrop.md deleted file mode 100644 index 1b0e34794..000000000 --- a/apps/landrop.md +++ /dev/null @@ -1,8 +0,0 @@ -# LANDROP - - LANDrop is a cross-platform tool that you can use to conveniently transfer photos, videos, and other types of files to other devices on the same local network. - - SITE: https://landrop.app - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/lanshare b/apps/lanshare new file mode 100644 index 000000000..d2ac0bd2c --- /dev/null +++ b/apps/lanshare @@ -0,0 +1,3 @@ +# lanshare +LAN Share is a cross platform local area network file transfer application, built using Qt GUI framework. It can be used to transfer a whole folder,one or more files, large or small immediatelly without any additional configuration. +# SITES: https://github.com/abdularis/LAN-Share \ No newline at end of file diff --git a/apps/lanshare.md b/apps/lanshare.md deleted file mode 100644 index 7e9d8614c..000000000 --- a/apps/lanshare.md +++ /dev/null @@ -1,8 +0,0 @@ -# LANSHARE - - LAN Share is a cross platform local area network file transfer application, built using Qt GUI framework. It can be used to transfer a whole folder,one or more files, large or small immediatelly without any additional configuration. - - SITE: https://github.com/abdularis/LAN-Share - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/lapce b/apps/lapce new file mode 100644 index 000000000..1899e2f02 --- /dev/null +++ b/apps/lapce @@ -0,0 +1,6 @@ +# lapce +Lightning-fast and Powerful Code Editor written in Rust. + + This is the portable official version converted to an AppImage by our team, "Portable Linux Apps" , no additional changes have been made. +# SITES: https://github.com/lapce/lapce +# SOURCES: https://github.com/Portable-Linux-Apps/lapce-AppImage \ No newline at end of file diff --git a/apps/lapce.md b/apps/lapce.md deleted file mode 100644 index 9db05c203..000000000 --- a/apps/lapce.md +++ /dev/null @@ -1,12 +0,0 @@ -# LAPCE - - Lightning-fast and Powerful Code Editor written in Rust. - - This is the portable official version converted to an AppImage by our team, "Portable Linux Apps" , no additional changes have been made. - - SITE: https://github.com/lapce/lapce - - APPIMAGE: https://github.com/Portable-Linux-Apps/lapce-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/laravel-kit b/apps/laravel-kit new file mode 100644 index 000000000..472d4bf6a --- /dev/null +++ b/apps/laravel-kit @@ -0,0 +1,3 @@ +# laravel-kit +Easy Laravel application management +# SITES: https://github.com/tarequemdhanif/laravel-kit \ No newline at end of file diff --git a/apps/laravel-kit.md b/apps/laravel-kit.md deleted file mode 100644 index 49f010bb7..000000000 --- a/apps/laravel-kit.md +++ /dev/null @@ -1,8 +0,0 @@ -# LARAVEL-KIT - - Easy Laravel application management - - SITE: https://github.com/tarequemdhanif/laravel-kit - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/launcher b/apps/launcher new file mode 100644 index 000000000..1610ed987 --- /dev/null +++ b/apps/launcher @@ -0,0 +1,3 @@ +# launcher +Generic aplicaciones launcher +# SITES: https://github.com/martinribelotta/launcher \ No newline at end of file diff --git a/apps/launcher.md b/apps/launcher.md deleted file mode 100644 index 42b21a78f..000000000 --- a/apps/launcher.md +++ /dev/null @@ -1,8 +0,0 @@ -# LAUNCHER - - Generic aplicaciones launcher - - SITE: https://github.com/martinribelotta/launcher - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/lazpaint b/apps/lazpaint new file mode 100644 index 000000000..15cbe6ba1 --- /dev/null +++ b/apps/lazpaint @@ -0,0 +1,3 @@ +# lazpaint +Cross-platform image editor with raster and vector layers similar to Paint.Net written in Lazarus (Free Pascal). +# SITES: https://github.com/bgrabitmap/lazpaint \ No newline at end of file diff --git a/apps/lazpaint.md b/apps/lazpaint.md deleted file mode 100644 index 78734b671..000000000 --- a/apps/lazpaint.md +++ /dev/null @@ -1,8 +0,0 @@ -# LAZPAINT - - Cross-platform image editor with raster and vector layers similar to Paint.Net written in Lazarus (Free Pascal). - - SITE: https://github.com/bgrabitmap/lazpaint - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/lazygit b/apps/lazygit new file mode 100644 index 000000000..9b5de76ba --- /dev/null +++ b/apps/lazygit @@ -0,0 +1,3 @@ +# lazygit +Simple terminal UI for git commands +# SITES: https://github.com/jesseduffield/lazygit \ No newline at end of file diff --git a/apps/lazygit.md b/apps/lazygit.md deleted file mode 100644 index ac692437b..000000000 --- a/apps/lazygit.md +++ /dev/null @@ -1,8 +0,0 @@ -# LAZYGIT - - Simple terminal UI for git commands - - SITE: https://github.com/jesseduffield/lazygit - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/lazytyper b/apps/lazytyper new file mode 100644 index 000000000..5728e78df --- /dev/null +++ b/apps/lazytyper @@ -0,0 +1,3 @@ +# lazytyper +LazyTyper desktop client (repackaged from the official AppImage, including built-in dependencies). +# SITES: https://github.com/oldcai/LazyTyper-releases \ No newline at end of file diff --git a/apps/lazytyper.md b/apps/lazytyper.md deleted file mode 100644 index b57d90d66..000000000 --- a/apps/lazytyper.md +++ /dev/null @@ -1,8 +0,0 @@ -# LAZYTYPER - - LazyTyper desktop client (repackaged from the official AppImage, including built-in dependencies). - - SITE: https://github.com/oldcai/LazyTyper-releases - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/lba2-classic-community b/apps/lba2-classic-community new file mode 100644 index 000000000..0a785208a --- /dev/null +++ b/apps/lba2-classic-community @@ -0,0 +1,3 @@ +# lba2-classic-community +Unofficial, a community fork for evolving and modernizing LBA2 source port. +# SITES: https://github.com/pkgforge-dev/lba2-classic-community-AppImage \ No newline at end of file diff --git a/apps/lba2-classic-community.md b/apps/lba2-classic-community.md deleted file mode 100644 index 71edc4c40..000000000 --- a/apps/lba2-classic-community.md +++ /dev/null @@ -1,8 +0,0 @@ -# LBA2-CLASSIC-COMMUNITY - - Unofficial, a community fork for evolving and modernizing LBA2 source port. - - SITE: https://github.com/pkgforge-dev/lba2-classic-community-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/lbry-desktop b/apps/lbry-desktop new file mode 100644 index 000000000..80851e46b --- /dev/null +++ b/apps/lbry-desktop @@ -0,0 +1,4 @@ +# lbry-desktop +A browser and wallet for LBRY, the decentralized, user-controlled content marketplace. +# SITES: https://lbry.com/ +# SOURCES: https://github.com/lbryio/lbry-desktop \ No newline at end of file diff --git a/apps/lbry-desktop.md b/apps/lbry-desktop.md deleted file mode 100644 index b9ae03db8..000000000 --- a/apps/lbry-desktop.md +++ /dev/null @@ -1,10 +0,0 @@ -# LBRY-DESKTOP - - A browser and wallet for LBRY, the decentralized, user-controlled content marketplace. - - SITE: https://lbry.com/ - - SOURCE: https://github.com/lbryio/lbry-desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/lcedit b/apps/lcedit new file mode 100644 index 000000000..4639d142b --- /dev/null +++ b/apps/lcedit @@ -0,0 +1,3 @@ +# lcedit +Editor - unknown. +# SITES: https://github.com/Fulgen301/LCEdit \ No newline at end of file diff --git a/apps/lcedit.md b/apps/lcedit.md deleted file mode 100644 index 9de7a6058..000000000 --- a/apps/lcedit.md +++ /dev/null @@ -1,8 +0,0 @@ -# LCEDIT - - Editor - unknown. - - SITE: https://github.com/Fulgen301/LCEdit - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ld b/apps/ld new file mode 100644 index 000000000..a1b91cec1 --- /dev/null +++ b/apps/ld @@ -0,0 +1,4 @@ +# ld + Standalone Linker Compiler. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/ld.bfd b/apps/ld.bfd new file mode 100644 index 000000000..78900883c --- /dev/null +++ b/apps/ld.bfd @@ -0,0 +1,4 @@ +# ld.bfd + The GNU linker with BFD libraries. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/ld.bfd.md b/apps/ld.bfd.md deleted file mode 100644 index 15963da4b..000000000 --- a/apps/ld.bfd.md +++ /dev/null @@ -1,8 +0,0 @@ -# LD.BFD - - The GNU linker with BFD libraries. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/ld.md b/apps/ld.md deleted file mode 100644 index 343254e3f..000000000 --- a/apps/ld.md +++ /dev/null @@ -1,8 +0,0 @@ -# LD - - Standalone Linker Compiler. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/ldtk b/apps/ldtk new file mode 100644 index 000000000..a71769b7d --- /dev/null +++ b/apps/ldtk @@ -0,0 +1,3 @@ +# ldtk +Modern and efficient 2D level editor with a strong focus on user-friendliness +# SITES: https://ldtk.io/ \ No newline at end of file diff --git a/apps/ldtk.md b/apps/ldtk.md deleted file mode 100644 index 37869c67b..000000000 --- a/apps/ldtk.md +++ /dev/null @@ -1,8 +0,0 @@ -# LDTK - - Modern and efficient 2D level editor with a strong focus on user-friendliness - - SITE: https://ldtk.io/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/leaflet b/apps/leaflet new file mode 100644 index 000000000..eba161581 --- /dev/null +++ b/apps/leaflet @@ -0,0 +1,3 @@ +# leaflet +POSP official notes application, written in flutter, beautiful, fast and secure. +# SITES: https://github.com/PotatoProject/Leaflet \ No newline at end of file diff --git a/apps/leaflet.md b/apps/leaflet.md deleted file mode 100644 index 1ee67a1f0..000000000 --- a/apps/leaflet.md +++ /dev/null @@ -1,8 +0,0 @@ -# LEAFLET - - POSP official notes application, written in flutter, beautiful, fast and secure. - - SITE: https://github.com/PotatoProject/Leaflet - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/leapp b/apps/leapp new file mode 100644 index 000000000..1592cf127 --- /dev/null +++ b/apps/leapp @@ -0,0 +1,3 @@ +# leapp +The DevTool to access your cloud. +# SITES: https://www.leapp.cloud \ No newline at end of file diff --git a/apps/leapp.md b/apps/leapp.md deleted file mode 100644 index aac2fc47c..000000000 --- a/apps/leapp.md +++ /dev/null @@ -1,8 +0,0 @@ -# LEAPP - - The DevTool to access your cloud. - - SITE: https://www.leapp.cloud - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/led.custom.palette b/apps/led.custom.palette new file mode 100644 index 000000000..fc1710c59 --- /dev/null +++ b/apps/led.custom.palette @@ -0,0 +1,3 @@ +# led.custom.palette +LED Custom Palette – design the lights on your Model01 with an ease +# SITES: https://github.com/jukben/keyboardio-led-custom-palette \ No newline at end of file diff --git a/apps/led.custom.palette.md b/apps/led.custom.palette.md deleted file mode 100644 index 9f682f6ec..000000000 --- a/apps/led.custom.palette.md +++ /dev/null @@ -1,8 +0,0 @@ -# LED.CUSTOM.PALETTE - - LED Custom Palette – design the lights on your Model01 with an ease - - SITE: https://github.com/jukben/keyboardio-led-custom-palette - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ledger-live-desktop b/apps/ledger-live-desktop new file mode 100644 index 000000000..b722b9e09 --- /dev/null +++ b/apps/ledger-live-desktop @@ -0,0 +1,3 @@ +# ledger-live-desktop +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. +# SITES: https://www.ledger.com \ No newline at end of file diff --git a/apps/ledger-live-desktop.md b/apps/ledger-live-desktop.md deleted file mode 100644 index f6370e13c..000000000 --- a/apps/ledger-live-desktop.md +++ /dev/null @@ -1,8 +0,0 @@ -# LEDGER-LIVE-DESKTOP - - 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. - - SITE: https://www.ledger.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/legcord b/apps/legcord new file mode 100644 index 000000000..aad7af580 --- /dev/null +++ b/apps/legcord @@ -0,0 +1,3 @@ +# legcord +Legcord is a custom client designed to enhance your Discord experience while keeping everything lightweight. +# SITES: https://github.com/Legcord/Legcord \ No newline at end of file diff --git a/apps/legcord.md b/apps/legcord.md deleted file mode 100644 index bd9fdc971..000000000 --- a/apps/legcord.md +++ /dev/null @@ -1,8 +0,0 @@ -# LEGCORD - - Legcord is a custom client designed to enhance your Discord experience while keeping everything lightweight. - - SITE: https://github.com/Legcord/Legcord - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/legendary-kingdoms b/apps/legendary-kingdoms new file mode 100644 index 000000000..12d9baf0e --- /dev/null +++ b/apps/legendary-kingdoms @@ -0,0 +1,3 @@ +# legendary-kingdoms +An Implementation of Legendary Kingdoms Gamebooks in C++ and SDL. +# SITES: https://github.com/daelsepara/legendary-kingdoms \ No newline at end of file diff --git a/apps/legendary-kingdoms.md b/apps/legendary-kingdoms.md deleted file mode 100644 index 910290b34..000000000 --- a/apps/legendary-kingdoms.md +++ /dev/null @@ -1,8 +0,0 @@ -# LEGENDARY-KINGDOMS - - An Implementation of Legendary Kingdoms Gamebooks in C++ and SDL. - - SITE: https://github.com/daelsepara/legendary-kingdoms - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/lemon b/apps/lemon new file mode 100644 index 000000000..1319a4f10 --- /dev/null +++ b/apps/lemon @@ -0,0 +1,3 @@ +# lemon +A tiny judging environment for OI contest based on Project_LemonPlus +# SITES: https://github.com/iotang/Project_LemonLime \ No newline at end of file diff --git a/apps/lemon.md b/apps/lemon.md deleted file mode 100644 index bb2d56187..000000000 --- a/apps/lemon.md +++ /dev/null @@ -1,8 +0,0 @@ -# LEMON - - A tiny judging environment for OI contest based on Project_LemonPlus - - SITE: https://github.com/iotang/Project_LemonLime - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/lens b/apps/lens new file mode 100644 index 000000000..52a3b23a5 --- /dev/null +++ b/apps/lens @@ -0,0 +1,3 @@ +# lens +App you need to take control of your Kubernetes clusters. +# SITES: https://k8slens.dev \ No newline at end of file diff --git a/apps/lens.md b/apps/lens.md deleted file mode 100644 index f1b556fc9..000000000 --- a/apps/lens.md +++ /dev/null @@ -1,8 +0,0 @@ -# LENS - - App you need to take control of your Kubernetes clusters. - - SITE: https://k8slens.dev - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/leocad b/apps/leocad new file mode 100644 index 000000000..033e7d179 --- /dev/null +++ b/apps/leocad @@ -0,0 +1,3 @@ +# leocad +Create virtual LEGO models +# SITES: https://github.com/leozide/leocad \ No newline at end of file diff --git a/apps/leocad.md b/apps/leocad.md deleted file mode 100644 index e9f9e6a47..000000000 --- a/apps/leocad.md +++ /dev/null @@ -1,8 +0,0 @@ -# LEOCAD - - Create virtual LEGO models - - SITE: https://github.com/leozide/leocad - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/leonflix b/apps/leonflix new file mode 100644 index 000000000..c5020920f --- /dev/null +++ b/apps/leonflix @@ -0,0 +1,3 @@ +# leonflix +A multi-platform desktop application for watching movies and TV shows. +# SITES: https://leonflix.net/ \ No newline at end of file diff --git a/apps/leonflix.md b/apps/leonflix.md deleted file mode 100644 index d7bd83186..000000000 --- a/apps/leonflix.md +++ /dev/null @@ -1,8 +0,0 @@ -# LEONFLIX - - A multi-platform desktop application for watching movies and TV shows. - - SITE: https://leonflix.net/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/lepton b/apps/lepton new file mode 100644 index 000000000..9ba84d352 --- /dev/null +++ b/apps/lepton @@ -0,0 +1,3 @@ +# lepton +Democratizing Code Snippets Management (macOS/Win/Linux) +# SITES: https://github.com/hackjutsu/Lepton \ No newline at end of file diff --git a/apps/lepton.md b/apps/lepton.md deleted file mode 100644 index cea78dce4..000000000 --- a/apps/lepton.md +++ /dev/null @@ -1,8 +0,0 @@ -# LEPTON - - Democratizing Code Snippets Management (macOS/Win/Linux) - - SITE: https://github.com/hackjutsu/Lepton - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/lescovex b/apps/lescovex new file mode 100644 index 000000000..0014daf51 --- /dev/null +++ b/apps/lescovex @@ -0,0 +1,3 @@ +# lescovex +Lescovex decentralized exchange, wallet and contract issuer +# SITES: https://github.com/Lescovex/LSCX \ No newline at end of file diff --git a/apps/lescovex.md b/apps/lescovex.md deleted file mode 100644 index 14812cd0d..000000000 --- a/apps/lescovex.md +++ /dev/null @@ -1,8 +0,0 @@ -# LESCOVEX - - Lescovex decentralized exchange, wallet and contract issuer - - SITE: https://github.com/Lescovex/LSCX - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/leshade b/apps/leshade new file mode 100644 index 000000000..15047c85d --- /dev/null +++ b/apps/leshade @@ -0,0 +1,3 @@ +# leshade +An unofficial Reshade Installer for Linux. +# SITES: https://github.com/Ishidawg/LeShade \ No newline at end of file diff --git a/apps/leshade.md b/apps/leshade.md deleted file mode 100644 index 38f9e2e9f..000000000 --- a/apps/leshade.md +++ /dev/null @@ -1,8 +0,0 @@ -# LESHADE - - An unofficial Reshade Installer for Linux. - - SITE: https://github.com/Ishidawg/LeShade - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/less b/apps/less new file mode 100644 index 000000000..a037184a6 --- /dev/null +++ b/apps/less @@ -0,0 +1,3 @@ +# less +A terminal based program for viewing text files. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/less.md b/apps/less.md deleted file mode 100644 index 7fbf65f29..000000000 --- a/apps/less.md +++ /dev/null @@ -1,8 +0,0 @@ -# LESS - - A terminal based program for viewing text files. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/lets-bend b/apps/lets-bend new file mode 100644 index 000000000..2d7249fa8 --- /dev/null +++ b/apps/lets-bend @@ -0,0 +1,3 @@ +# lets-bend +Harmonica tuner for learning bending techniques with real-time visual feedback. +# SITES: https://github.com/egdels/bluesharpbendingapp \ No newline at end of file diff --git a/apps/lets-bend.md b/apps/lets-bend.md deleted file mode 100644 index 12b5bac23..000000000 --- a/apps/lets-bend.md +++ /dev/null @@ -1,8 +0,0 @@ -# LETS-BEND - - Harmonica tuner for learning bending techniques with real-time visual feedback. - - SITE: https://github.com/egdels/bluesharpbendingapp - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/levior b/apps/levior new file mode 100644 index 000000000..86d230818 --- /dev/null +++ b/apps/levior @@ -0,0 +1,7 @@ +# levior +levior (latin word meaning lighter) is a web (HTTP/HTTPs) to Gemini proxy. + + It converts web pages on-the-fly to the gemtext format, allowing you to browse regular web pages with any Gemini browser without having to suffer the heavyness associated with certain technologies of the modern web. + + levior can either run as a gemini server with special "endpoints" that will render the requested web page as gemtext and rewrite gemini URLs to be routed through the levior service (this mode will work with all gemini browsers), or as a transparent http proxy that renders the web pages as gemtext without rewriting URLs (in this mode you will need to use a Gemini browser that supports using proxies). +# SITES: https://gitlab.com/cipres/levior \ No newline at end of file diff --git a/apps/levior.md b/apps/levior.md deleted file mode 100644 index 32f388bbe..000000000 --- a/apps/levior.md +++ /dev/null @@ -1,12 +0,0 @@ -# LEVIOR - - levior (latin word meaning lighter) is a web (HTTP/HTTPs) to Gemini proxy. - - It converts web pages on-the-fly to the gemtext format, allowing you to browse regular web pages with any Gemini browser without having to suffer the heavyness associated with certain technologies of the modern web. - - levior can either run as a gemini server with special "endpoints" that will render the requested web page as gemtext and rewrite gemini URLs to be routed through the levior service (this mode will work with all gemini browsers), or as a transparent http proxy that renders the web pages as gemtext without rewriting URLs (in this mode you will need to use a Gemini browser that supports using proxies). - - SITE: https://gitlab.com/cipres/levior - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/lexido b/apps/lexido new file mode 100644 index 000000000..52317645a --- /dev/null +++ b/apps/lexido @@ -0,0 +1,3 @@ +# lexido +A terminal assistant, powered by Generative AI. +# SITES: https://github.com/micr0-dev/lexido \ No newline at end of file diff --git a/apps/lexido.md b/apps/lexido.md deleted file mode 100644 index ddc6c9cee..000000000 --- a/apps/lexido.md +++ /dev/null @@ -1,8 +0,0 @@ -# LEXIDO - - A terminal assistant, powered by Generative AI. - - SITE: https://github.com/micr0-dev/lexido - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/lf b/apps/lf new file mode 100644 index 000000000..07f28c076 --- /dev/null +++ b/apps/lf @@ -0,0 +1,3 @@ +# lf +Terminal file manager. +# SITES: https://github.com/gokcehan/lf \ No newline at end of file diff --git a/apps/lf.md b/apps/lf.md deleted file mode 100644 index b1f95392a..000000000 --- a/apps/lf.md +++ /dev/null @@ -1,8 +0,0 @@ -# LF - - Terminal file manager. - - SITE: https://github.com/gokcehan/lf - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/libassist b/apps/libassist new file mode 100644 index 000000000..f9830c31f --- /dev/null +++ b/apps/libassist @@ -0,0 +1,3 @@ +# libassist +Library Assistant +# SITES: https://github.com/Supermegadex/libassist-client \ No newline at end of file diff --git a/apps/libassist.md b/apps/libassist.md deleted file mode 100644 index c63574918..000000000 --- a/apps/libassist.md +++ /dev/null @@ -1,8 +0,0 @@ -# LIBASSIST - - Library Assistant - - SITE: https://github.com/Supermegadex/libassist-client - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/libation b/apps/libation new file mode 100644 index 000000000..0eb989dd8 --- /dev/null +++ b/apps/libation @@ -0,0 +1,3 @@ +# libation +Unofficial, application for downloading and managing your Audible audiobooks. +# SITES: https://github.com/pkgforge-dev/Libation-AppImage \ No newline at end of file diff --git a/apps/libation.md b/apps/libation.md deleted file mode 100644 index eb020386d..000000000 --- a/apps/libation.md +++ /dev/null @@ -1,8 +0,0 @@ -# LIBATION - - Unofficial, application for downloading and managing your Audible audiobooks. - - SITE: https://github.com/pkgforge-dev/Libation-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/libertem b/apps/libertem new file mode 100644 index 000000000..5d3335edc --- /dev/null +++ b/apps/libertem @@ -0,0 +1,3 @@ +# libertem +Open software platform for pixelated scanning transmission electron microscopy +# SITES: https://github.com/LiberTEM/LiberTEM \ No newline at end of file diff --git a/apps/libertem.md b/apps/libertem.md deleted file mode 100644 index 2f029ccb9..000000000 --- a/apps/libertem.md +++ /dev/null @@ -1,8 +0,0 @@ -# LIBERTEM - - Open software platform for pixelated scanning transmission electron microscopy - - SITE: https://github.com/LiberTEM/LiberTEM - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/librecad b/apps/librecad new file mode 100644 index 000000000..ae0b41fa6 --- /dev/null +++ b/apps/librecad @@ -0,0 +1,3 @@ +# librecad +LibreCAD is a cross-platform 2D CAD program written in C++11 using the Qt framework. It can read DXF and DWG files and can write DXF, PDF and SVG files. The user interface is highly customizable, and has dozens of translations. +# SITES: https://github.com/LibreCAD/LibreCAD \ No newline at end of file diff --git a/apps/librecad.md b/apps/librecad.md deleted file mode 100644 index ecc55357c..000000000 --- a/apps/librecad.md +++ /dev/null @@ -1,8 +0,0 @@ -# LIBRECAD - - LibreCAD is a cross-platform 2D CAD program written in C++11 using the Qt framework. It can read DXF and DWG files and can write DXF, PDF and SVG files. The user interface is highly customizable, and has dozens of translations. - - SITE: https://github.com/LibreCAD/LibreCAD - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/libreoffice b/apps/libreoffice new file mode 100644 index 000000000..a5f8267c1 --- /dev/null +++ b/apps/libreoffice @@ -0,0 +1,9 @@ +# libreoffice +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. + + This is the UNOFFICIAL enhanced AppImage built from scratch using the official deb packages, free from the libfuse2 dependency and with full support for delta updates according to the AppImageUpdate specification. + + This script allows you to choose between multiple variants and languages, the classic AppImage and an alternative custom version (Archimage) that also works on musl systems. +# SCREENSHOTS: https://upload.wikimedia.org/wikipedia/commons/4/42/LibreOffice_7.2.4.1_start_centre_screenshot.png +# SITES: +# SOURCES: https://github.com/Portable-Linux-Apps/LibreOffice-appimage \ No newline at end of file diff --git a/apps/libreoffice.md b/apps/libreoffice.md deleted file mode 100644 index 9279b7be0..000000000 --- a/apps/libreoffice.md +++ /dev/null @@ -1,16 +0,0 @@ -# LIBREOFFICE - - 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. - - This is the UNOFFICIAL enhanced AppImage built from scratch using the official deb packages, free from the libfuse2 dependency and with full support for delta updates according to the AppImageUpdate specification. - - This script allows you to choose between multiple variants and languages, the classic AppImage and an alternative custom version (Archimage) that also works on musl systems. - - ![Screenshot](https://upload.wikimedia.org/wikipedia/commons/4/42/LibreOffice_7.2.4.1_start_centre_screenshot.png) - - UNOFFICIAL APPIMAGE: https://github.com/Portable-Linux-Apps/LibreOffice-appimage - - UNOFFICIAL ARCHIMAGE: https://github.com/ivan-hc/LibreOffice-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/librepcb b/apps/librepcb new file mode 100644 index 000000000..c6817ec38 --- /dev/null +++ b/apps/librepcb @@ -0,0 +1,3 @@ +# librepcb +Design Schematics and PCBs +# SITES: https://librepcb.org \ No newline at end of file diff --git a/apps/librepcb.md b/apps/librepcb.md deleted file mode 100644 index 24eb5ebde..000000000 --- a/apps/librepcb.md +++ /dev/null @@ -1,8 +0,0 @@ -# LIBREPCB - - Design Schematics and PCBs - - SITE: https://librepcb.org - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/librescore b/apps/librescore new file mode 100644 index 000000000..284a2da06 --- /dev/null +++ b/apps/librescore @@ -0,0 +1,3 @@ +# librescore +The open source (GPLv3), serverless (IPFS-based), offline-first, and totally free alternative to musescore.com +# SITES: https://github.com/LibreScore/app-librescore \ No newline at end of file diff --git a/apps/librescore.md b/apps/librescore.md deleted file mode 100644 index c3883e019..000000000 --- a/apps/librescore.md +++ /dev/null @@ -1,8 +0,0 @@ -# LIBRESCORE - - The open source (GPLv3), serverless (IPFS-based), offline-first, and totally free alternative to musescore.com - - SITE: https://github.com/LibreScore/app-librescore - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/libresprite b/apps/libresprite new file mode 100644 index 000000000..1f3fcb832 --- /dev/null +++ b/apps/libresprite @@ -0,0 +1,3 @@ +# libresprite +Animated sprite editor & pixel art tool -- Fork of the last GPLv2 commit of Aseprite +# SITES: https://github.com/LibreSprite/LibreSprite \ No newline at end of file diff --git a/apps/libresprite.md b/apps/libresprite.md deleted file mode 100644 index 00aacb2b1..000000000 --- a/apps/libresprite.md +++ /dev/null @@ -1,8 +0,0 @@ -# LIBRESPRITE - - Animated sprite editor & pixel art tool -- Fork of the last GPLv2 commit of Aseprite - - SITE: https://github.com/LibreSprite/LibreSprite - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/librewolf b/apps/librewolf new file mode 100644 index 000000000..f14c09e9b --- /dev/null +++ b/apps/librewolf @@ -0,0 +1,3 @@ +# librewolf +LibreWolf Web Browser is a fork of Firefox, focused on privacy, security and freedom. +# SITES: https://librewolf.net \ No newline at end of file diff --git a/apps/librewolf.md b/apps/librewolf.md deleted file mode 100644 index 271b34771..000000000 --- a/apps/librewolf.md +++ /dev/null @@ -1,8 +0,0 @@ -# LIBREWOLF - - LibreWolf Web Browser is a fork of Firefox, focused on privacy, security and freedom. - - SITE: https://librewolf.net - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/lichtblick b/apps/lichtblick new file mode 100644 index 000000000..5c5916908 --- /dev/null +++ b/apps/lichtblick @@ -0,0 +1,3 @@ +# lichtblick +Lichtblick is an integrated visualization and diagnosis tool for robotics, available in your browser or as a desktop app on Linux, Windows, and macOS. +# SITES: https://github.com/lichtblick-suite/lichtblick \ No newline at end of file diff --git a/apps/lichtblick.md b/apps/lichtblick.md deleted file mode 100644 index 41132f552..000000000 --- a/apps/lichtblick.md +++ /dev/null @@ -1,8 +0,0 @@ -# LICHTBLICK - - Lichtblick is an integrated visualization and diagnosis tool for robotics, available in your browser or as a desktop app on Linux, Windows, and macOS. - - SITE: https://github.com/lichtblick-suite/lichtblick - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/lightning b/apps/lightning new file mode 100644 index 000000000..42a721017 --- /dev/null +++ b/apps/lightning @@ -0,0 +1,3 @@ +# lightning +Lightning Wallet Application +# SITES: https://github.com/lightninglabs/lightning-app \ No newline at end of file diff --git a/apps/lightning-peach-wallet b/apps/lightning-peach-wallet new file mode 100644 index 000000000..6cacf716b --- /dev/null +++ b/apps/lightning-peach-wallet @@ -0,0 +1,3 @@ +# lightning-peach-wallet +LightningPeach wallet +# SITES: https://github.com/LightningPeach/lightning-peach-wallet \ No newline at end of file diff --git a/apps/lightning-peach-wallet.md b/apps/lightning-peach-wallet.md deleted file mode 100644 index e0802a567..000000000 --- a/apps/lightning-peach-wallet.md +++ /dev/null @@ -1,8 +0,0 @@ -# LIGHTNING-PEACH-WALLET - - LightningPeach wallet - - SITE: https://github.com/LightningPeach/lightning-peach-wallet - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/lightning.md b/apps/lightning.md deleted file mode 100644 index c2c899074..000000000 --- a/apps/lightning.md +++ /dev/null @@ -1,8 +0,0 @@ -# LIGHTNING - - Lightning Wallet Application - - SITE: https://github.com/lightninglabs/lightning-app - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/lightzone b/apps/lightzone new file mode 100644 index 000000000..1821de990 --- /dev/null +++ b/apps/lightzone @@ -0,0 +1,4 @@ +# lightzone + Unofficial AppImage of LighZone. +# SITES: https://github.com/pkgforge-dev/lightzone-appimage +# SOURCES: https://github.com/pkgforge-dev/lightzone-appimage \ No newline at end of file diff --git a/apps/lightzone.md b/apps/lightzone.md deleted file mode 100644 index 0f125a90f..000000000 --- a/apps/lightzone.md +++ /dev/null @@ -1,8 +0,0 @@ -# LIGHTZONE - - Unofficial AppImage of LighZone. - - SITE: https://github.com/pkgforge-dev/lightzone-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/liground b/apps/liground new file mode 100644 index 000000000..a00148fe5 --- /dev/null +++ b/apps/liground @@ -0,0 +1,3 @@ +# liground +A mordern Chess Variant Analysis GUI for the 21st century +# SITES: https://github.com/ml-research/liground \ No newline at end of file diff --git a/apps/liground.md b/apps/liground.md deleted file mode 100644 index 29ece9e96..000000000 --- a/apps/liground.md +++ /dev/null @@ -1,8 +0,0 @@ -# LIGROUND - - A mordern Chess Variant Analysis GUI for the 21st century - - SITE: https://github.com/ml-research/liground - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/liketaskmanager b/apps/liketaskmanager new file mode 100644 index 000000000..32032b2d3 --- /dev/null +++ b/apps/liketaskmanager @@ -0,0 +1,3 @@ +# liketaskmanager +LikeTaskManager is a Qt based, self-contained (AppImage) process monitor that mimics the feel and functionality of Windows 10 Task Manager's performance and process tab under Linux. It enables to oversee sytemwide CPU, RAM, Disk I/O and Network untilisation per device and per process. +# SITES: https://github.com/rejuce/LikeTaskManager \ No newline at end of file diff --git a/apps/liketaskmanager.md b/apps/liketaskmanager.md deleted file mode 100644 index bc322ddc9..000000000 --- a/apps/liketaskmanager.md +++ /dev/null @@ -1,8 +0,0 @@ -# LIKETASKMANAGER - - LikeTaskManager is a Qt based, self-contained (AppImage) process monitor that mimics the feel and functionality of Windows 10 Task Manager's performance and process tab under Linux. It enables to oversee sytemwide CPU, RAM, Disk I/O and Network untilisation per device and per process. - - SITE: https://github.com/rejuce/LikeTaskManager - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/linedancer b/apps/linedancer new file mode 100644 index 000000000..e5db64aa1 --- /dev/null +++ b/apps/linedancer @@ -0,0 +1,3 @@ +# linedancer +Arcade game and my entry for Ludum Dare 35. +# SITES: https://github.com/karjonas/Linedancer \ No newline at end of file diff --git a/apps/linedancer.md b/apps/linedancer.md deleted file mode 100644 index 779613d0f..000000000 --- a/apps/linedancer.md +++ /dev/null @@ -1,8 +0,0 @@ -# LINEDANCER - - Arcade game and my entry for Ludum Dare 35. - - SITE: https://github.com/karjonas/Linedancer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/lingueez b/apps/lingueez new file mode 100644 index 000000000..0149c8bfe --- /dev/null +++ b/apps/lingueez @@ -0,0 +1,4 @@ +# lingueez + Vocabulary trainer. +# SITES: https://github.com/lysak-yurii/lingueez +# SOURCES: https://github.com/lysak-yurii/lingueez \ No newline at end of file diff --git a/apps/lingueez.md b/apps/lingueez.md deleted file mode 100644 index e25bf9e82..000000000 --- a/apps/lingueez.md +++ /dev/null @@ -1,8 +0,0 @@ -# LINGUEEZ - - Vocabulary trainer. - - SITE: https://github.com/lysak-yurii/lingueez - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/link b/apps/link new file mode 100644 index 000000000..748f515a3 --- /dev/null +++ b/apps/link @@ -0,0 +1,4 @@ +# link + Call the link function to create a link to a file. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/link.md b/apps/link.md deleted file mode 100644 index ab5152152..000000000 --- a/apps/link.md +++ /dev/null @@ -1,8 +0,0 @@ -# LINK - - Call the link function to create a link to a file. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/linked b/apps/linked new file mode 100644 index 000000000..0fa7304c0 --- /dev/null +++ b/apps/linked @@ -0,0 +1,3 @@ +# linked +Daily journaling without distraction. An easy, distraction-free way to record your thoughts, declutter your mind and keep the things you want to remember. +# SITES: https://uselinked.com/ \ No newline at end of file diff --git a/apps/linked.md b/apps/linked.md deleted file mode 100644 index 04be7df33..000000000 --- a/apps/linked.md +++ /dev/null @@ -1,8 +0,0 @@ -# LINKED - - Daily journaling without distraction. An easy, distraction-free way to record your thoughts, declutter your mind and keep the things you want to remember. - - SITE: https://uselinked.com/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/linkora b/apps/linkora new file mode 100644 index 000000000..cc5ccb439 --- /dev/null +++ b/apps/linkora @@ -0,0 +1,3 @@ +# linkora +Link organizer for Android and desktop with self-hosted sync. +# SITES: https://github.com/LinkoraApp/Linkora \ No newline at end of file diff --git a/apps/linkora.md b/apps/linkora.md deleted file mode 100644 index 44eee48b8..000000000 --- a/apps/linkora.md +++ /dev/null @@ -1,8 +0,0 @@ -# LINKORA - - Link organizer for Android and desktop with self-hosted sync. - - SITE: https://github.com/LinkoraApp/Linkora - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/linphone b/apps/linphone new file mode 100644 index 000000000..ddb738ad9 --- /dev/null +++ b/apps/linphone @@ -0,0 +1,3 @@ +# linphone +A libre SIP client +# SITES: https://www.linphone.org/ \ No newline at end of file diff --git a/apps/linphone.md b/apps/linphone.md deleted file mode 100644 index 61d089a88..000000000 --- a/apps/linphone.md +++ /dev/null @@ -1,8 +0,0 @@ -# LINPHONE - - A libre SIP client - - SITE: https://www.linphone.org/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/linux-intel-undervolt-gui b/apps/linux-intel-undervolt-gui new file mode 100644 index 000000000..8adc9b0a9 --- /dev/null +++ b/apps/linux-intel-undervolt-gui @@ -0,0 +1,3 @@ +# linux-intel-undervolt-gui +Undervolting GUI for Intel Linux Systems +# SITES: https://github.com/lukechadwick/linux-intel-undervolt-gui \ No newline at end of file diff --git a/apps/linux-intel-undervolt-gui.md b/apps/linux-intel-undervolt-gui.md deleted file mode 100644 index c8d35a4d7..000000000 --- a/apps/linux-intel-undervolt-gui.md +++ /dev/null @@ -1,8 +0,0 @@ -# LINUX-INTEL-UNDERVOLT-GUI - - Undervolting GUI for Intel Linux Systems - - SITE: https://github.com/lukechadwick/linux-intel-undervolt-gui - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/linuxaircombat b/apps/linuxaircombat new file mode 100644 index 000000000..acb5d2d70 --- /dev/null +++ b/apps/linuxaircombat @@ -0,0 +1,3 @@ +# linuxaircombat +Free open source combat flight simulator. +# SITES: https://sourceforge.net/p/linuxaircombat \ No newline at end of file diff --git a/apps/linuxaircombat.md b/apps/linuxaircombat.md deleted file mode 100644 index 8bb3cc3ef..000000000 --- a/apps/linuxaircombat.md +++ /dev/null @@ -1,8 +0,0 @@ -# LINUXAIRCOMBAT - - Free open source combat flight simulator. - - SITE: https://sourceforge.net/p/linuxaircombat - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/linuxdeploy b/apps/linuxdeploy new file mode 100644 index 000000000..fe465c6f2 --- /dev/null +++ b/apps/linuxdeploy @@ -0,0 +1,3 @@ +# linuxdeploy +AppDir creation and maintenance tool. Featuring flexible plugin system. +# SITES: https://github.com/linuxdeploy/linuxdeploy \ No newline at end of file diff --git a/apps/linuxdeploy.md b/apps/linuxdeploy.md deleted file mode 100644 index 39e05da0e..000000000 --- a/apps/linuxdeploy.md +++ /dev/null @@ -1,8 +0,0 @@ -# LINUXDEPLOY - - AppDir creation and maintenance tool. Featuring flexible plugin system. - - SITE: https://github.com/linuxdeploy/linuxdeploy - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/linuxdeployqt b/apps/linuxdeployqt new file mode 100644 index 000000000..cc4376f91 --- /dev/null +++ b/apps/linuxdeployqt @@ -0,0 +1,3 @@ +# linuxdeployqt +Linux Deployment Tool takes an application as input and makes it self-contained. It copy resources used by the app (libraries, graphics, plugins...) into a bundle. The resulting bundle can be distributed as an AppDir or as an AppImage. +# SITES: https://github.com/probonopd/linuxdeployqt \ No newline at end of file diff --git a/apps/linuxdeployqt.md b/apps/linuxdeployqt.md deleted file mode 100644 index fee1ae541..000000000 --- a/apps/linuxdeployqt.md +++ /dev/null @@ -1,8 +0,0 @@ -# LINUXDEPLOYQT - - Linux Deployment Tool takes an application as input and makes it self-contained. It copy resources used by the app (libraries, graphics, plugins...) into a bundle. The resulting bundle can be distributed as an AppDir or as an AppImage. - - SITE: https://github.com/probonopd/linuxdeployqt - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/linuxqq b/apps/linuxqq new file mode 100644 index 000000000..64ab1329e --- /dev/null +++ b/apps/linuxqq @@ -0,0 +1,3 @@ +# linuxqq +New Linux QQ based on Electron. +# SITES: https://im.qq.com/linuxqq/ \ No newline at end of file diff --git a/apps/linuxqq.md b/apps/linuxqq.md deleted file mode 100644 index cf2dd9120..000000000 --- a/apps/linuxqq.md +++ /dev/null @@ -1,8 +0,0 @@ -# LINUXQQ - - New Linux QQ based on Electron. - - SITE: https://im.qq.com/linuxqq/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/linuxtoys b/apps/linuxtoys new file mode 100644 index 000000000..f98951c00 --- /dev/null +++ b/apps/linuxtoys @@ -0,0 +1,3 @@ +# linuxtoys +Unofficial, a user-friendly collection of tools to make your life on Linux easier than ever. Useful scripts for gamers, developers and enthusiasts. +# SITES: https://github.com/pkgforge-dev/linuxtoys-appimage \ No newline at end of file diff --git a/apps/linuxtoys.md b/apps/linuxtoys.md deleted file mode 100644 index 5c8a643b2..000000000 --- a/apps/linuxtoys.md +++ /dev/null @@ -1,8 +0,0 @@ -# LINUXTOYS - - Unofficial, a user-friendly collection of tools to make your life on Linux easier than ever. Useful scripts for gamers, developers and enthusiasts. - - SITE: https://github.com/pkgforge-dev/linuxtoys-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/linuxwallpaper b/apps/linuxwallpaper new file mode 100644 index 000000000..232abdb8c --- /dev/null +++ b/apps/linuxwallpaper @@ -0,0 +1,3 @@ +# linuxwallpaper +Bing wallpaper of the day. +# SITES: https://github.com/backspec3/LinuxBingWallpaper \ No newline at end of file diff --git a/apps/linuxwallpaper.md b/apps/linuxwallpaper.md deleted file mode 100644 index 2222885f9..000000000 --- a/apps/linuxwallpaper.md +++ /dev/null @@ -1,8 +0,0 @@ -# LINUXWALLPAPER - - Bing wallpaper of the day. - - SITE: https://github.com/backspec3/LinuxBingWallpaper - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/linwood-butterfly b/apps/linwood-butterfly new file mode 100644 index 000000000..110a8a259 --- /dev/null +++ b/apps/linwood-butterfly @@ -0,0 +1,3 @@ +# linwood-butterfly +Powerful, minimalistic, cross-platform, opensource note-taking app +# SITES: https://github.com/LinwoodDev/Butterfly \ No newline at end of file diff --git a/apps/linwood-butterfly.md b/apps/linwood-butterfly.md deleted file mode 100644 index 72e6d0994..000000000 --- a/apps/linwood-butterfly.md +++ /dev/null @@ -1,8 +0,0 @@ -# LINWOOD-BUTTERFLY - - Powerful, minimalistic, cross-platform, opensource note-taking app - - SITE: https://github.com/LinwoodDev/Butterfly - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/liquidlauncher b/apps/liquidlauncher new file mode 100644 index 000000000..5b8db83d0 --- /dev/null +++ b/apps/liquidlauncher @@ -0,0 +1,3 @@ +# liquidlauncher +The official Minecraft launcher for LiquidBounce. +# SITES: https://github.com/CCBlueX/LiquidLauncher \ No newline at end of file diff --git a/apps/liquidlauncher.md b/apps/liquidlauncher.md deleted file mode 100644 index 427267b20..000000000 --- a/apps/liquidlauncher.md +++ /dev/null @@ -1,8 +0,0 @@ -# LIQUIDLAUNCHER - - The official Minecraft launcher for LiquidBounce. - - SITE: https://github.com/CCBlueX/LiquidLauncher - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/lisk-desktop b/apps/lisk-desktop new file mode 100644 index 000000000..3a76c2437 --- /dev/null +++ b/apps/lisk-desktop @@ -0,0 +1,3 @@ +# lisk-desktop +Lisk graphical user interface for desktop. +# SITES: https://lisk.com/wallet \ No newline at end of file diff --git a/apps/lisk-desktop.md b/apps/lisk-desktop.md deleted file mode 100644 index e08a630fc..000000000 --- a/apps/lisk-desktop.md +++ /dev/null @@ -1,8 +0,0 @@ -# LISK-DESKTOP - - Lisk graphical user interface for desktop. - - SITE: https://lisk.com/wallet - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/listen.moe b/apps/listen.moe new file mode 100644 index 000000000..32c88633e --- /dev/null +++ b/apps/listen.moe @@ -0,0 +1,3 @@ +# listen.moe +Official LISTEN.moe Desktop Client. +# SITES: https://github.com/LISTEN-moe/desktop-app \ No newline at end of file diff --git a/apps/listen.moe.md b/apps/listen.moe.md deleted file mode 100644 index 7e4fd504a..000000000 --- a/apps/listen.moe.md +++ /dev/null @@ -1,8 +0,0 @@ -# LISTEN.MOE - - Official LISTEN.moe Desktop Client. - - SITE: https://github.com/LISTEN-moe/desktop-app - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/listen1-desktop b/apps/listen1-desktop new file mode 100644 index 000000000..ee09da676 --- /dev/null +++ b/apps/listen1-desktop @@ -0,0 +1,3 @@ +# listen1-desktop +One for all free music in China +# SITES: https://listen1.github.io/listen1 \ No newline at end of file diff --git a/apps/listen1-desktop.md b/apps/listen1-desktop.md deleted file mode 100644 index 27cff170d..000000000 --- a/apps/listen1-desktop.md +++ /dev/null @@ -1,8 +0,0 @@ -# LISTEN1-DESKTOP - - One for all free music in China - - SITE: https://listen1.github.io/listen1 - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/lite-xl b/apps/lite-xl new file mode 100644 index 000000000..2877c8552 --- /dev/null +++ b/apps/lite-xl @@ -0,0 +1,4 @@ +# lite-xl +A lightweight text editor written in Lua. +# SCREENSHOTS: https://user-images.githubusercontent.com/433545/111063905-66943980-84b1-11eb-9040-3876f1133b20.png +# SITES: https://github.com/lite-xl/lite-xl \ No newline at end of file diff --git a/apps/lite-xl.md b/apps/lite-xl.md deleted file mode 100644 index bb2c8cc46..000000000 --- a/apps/lite-xl.md +++ /dev/null @@ -1,10 +0,0 @@ -# LITE-XL - - A lightweight text editor written in Lua. - - ![Screenshot](https://user-images.githubusercontent.com/433545/111063905-66943980-84b1-11eb-9040-3876f1133b20.png) - - SITE: https://github.com/lite-xl/lite-xl - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/liteide b/apps/liteide new file mode 100644 index 000000000..8b856046a --- /dev/null +++ b/apps/liteide @@ -0,0 +1,3 @@ +# liteide +LiteIDE is a simple, open source, cross-platform Go IDE. +# SITES: https://github.com/visualfc/liteide \ No newline at end of file diff --git a/apps/liteide.md b/apps/liteide.md deleted file mode 100644 index 030320088..000000000 --- a/apps/liteide.md +++ /dev/null @@ -1,8 +0,0 @@ -# LITEIDE - - LiteIDE is a simple, open source, cross-platform Go IDE. - - SITE: https://github.com/visualfc/liteide - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/litime b/apps/litime new file mode 100644 index 000000000..aa31a4a4c --- /dev/null +++ b/apps/litime @@ -0,0 +1,3 @@ +# litime +A terminal literature clock - Telling time with quotes from literature +# SITES: https://github.com/ikornaselur/litime \ No newline at end of file diff --git a/apps/litime.md b/apps/litime.md deleted file mode 100644 index 98fd16489..000000000 --- a/apps/litime.md +++ /dev/null @@ -1,8 +0,0 @@ -# LITIME - - A terminal literature clock - Telling time with quotes from literature - - SITE: https://github.com/ikornaselur/litime - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/liveme-pro-tools b/apps/liveme-pro-tools new file mode 100644 index 000000000..967528143 --- /dev/null +++ b/apps/liveme-pro-tools @@ -0,0 +1,3 @@ +# liveme-pro-tools +Browse, search and manage accounts, replays and more +# SITES: https://github.com/thecoder75/liveme-pro-tools \ No newline at end of file diff --git a/apps/liveme-pro-tools.md b/apps/liveme-pro-tools.md deleted file mode 100644 index 2a826a121..000000000 --- a/apps/liveme-pro-tools.md +++ /dev/null @@ -1,8 +0,0 @@ -# LIVEME-PRO-TOOLS - - Browse, search and manage accounts, replays and more - - SITE: https://github.com/thecoder75/liveme-pro-tools - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/lmms b/apps/lmms new file mode 100644 index 000000000..d93ae9d05 --- /dev/null +++ b/apps/lmms @@ -0,0 +1,4 @@ +# lmms +LMMS is a free cross-platform alternative to commercial programs like FL Studio®, which allow you to produce music with your computer. This includes the creation of melodies and beats, the synthesis and mixing of sounds, and arranging of samples. You can have fun with your MIDI- keyboard and much more... all in a user-friendly and modern interface. +# SITES: https://lmms.io +# SOURCES: https://github.com/LMMS/lmms \ No newline at end of file diff --git a/apps/lmms.md b/apps/lmms.md deleted file mode 100644 index 2d1d3859b..000000000 --- a/apps/lmms.md +++ /dev/null @@ -1,10 +0,0 @@ -# LMMS - - LMMS is a free cross-platform alternative to commercial programs like FL Studio®, which allow you to produce music with your computer. This includes the creation of melodies and beats, the synthesis and mixing of sounds, and arranging of samples. You can have fun with your MIDI- keyboard and much more... all in a user-friendly and modern interface. - - SITE: https://lmms.io - - SOURCE: https://github.com/LMMS/lmms - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/lmstudio b/apps/lmstudio new file mode 100644 index 000000000..d3cc0f820 --- /dev/null +++ b/apps/lmstudio @@ -0,0 +1,3 @@ +# lmstudio +An easy to use desktop app for experimenting with local and open-source Large Language Models (LLMs). +# SITES: https://lmstudio.ai \ No newline at end of file diff --git a/apps/lmstudio.md b/apps/lmstudio.md deleted file mode 100644 index 17dff5939..000000000 --- a/apps/lmstudio.md +++ /dev/null @@ -1,8 +0,0 @@ -# LMSTUDIO - - An easy to use desktop app for experimenting with local and open-source Large Language Models (LLMs). - - SITE: https://lmstudio.ai - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ln b/apps/ln new file mode 100644 index 000000000..aa2ad1261 --- /dev/null +++ b/apps/ln @@ -0,0 +1,3 @@ +# ln +Make links between files. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/ln.md b/apps/ln.md deleted file mode 100644 index 5642314f2..000000000 --- a/apps/ln.md +++ /dev/null @@ -1,8 +0,0 @@ -# LN - - Make links between files. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/lobe-chat b/apps/lobe-chat new file mode 100644 index 000000000..45622ad08 --- /dev/null +++ b/apps/lobe-chat @@ -0,0 +1,3 @@ +# lobe-chat +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. +# SITES: https://github.com/lobehub/lobe-chat \ No newline at end of file diff --git a/apps/lobe-chat.md b/apps/lobe-chat.md deleted file mode 100644 index 2ae56efd5..000000000 --- a/apps/lobe-chat.md +++ /dev/null @@ -1,8 +0,0 @@ -# LOBE-CHAT - - 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. - - SITE: https://github.com/lobehub/lobe-chat - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/local-browser b/apps/local-browser new file mode 100644 index 000000000..4382b2289 --- /dev/null +++ b/apps/local-browser @@ -0,0 +1,3 @@ +# local-browser +Share your localhost in a unique way +# SITES: https://github.com/Chhekur/local-browser \ No newline at end of file diff --git a/apps/local-browser.md b/apps/local-browser.md deleted file mode 100644 index 03e8fe2ef..000000000 --- a/apps/local-browser.md +++ /dev/null @@ -1,8 +0,0 @@ -# LOCAL-BROWSER - - Share your localhost in a unique way - - SITE: https://github.com/Chhekur/local-browser - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/localsend b/apps/localsend new file mode 100644 index 000000000..bde64eb7a --- /dev/null +++ b/apps/localsend @@ -0,0 +1,3 @@ +# localsend +An open source cross-platform alternative to AirDrop +# SITES: https://github.com/localsend/localsend \ No newline at end of file diff --git a/apps/localsend.md b/apps/localsend.md deleted file mode 100644 index d64e4b07b..000000000 --- a/apps/localsend.md +++ /dev/null @@ -1,8 +0,0 @@ -# LOCALSEND - - An open source cross-platform alternative to AirDrop - - SITE: https://github.com/localsend/localsend - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/lockbook-cli b/apps/lockbook-cli new file mode 100644 index 000000000..7dcaf9bef --- /dev/null +++ b/apps/lockbook-cli @@ -0,0 +1,3 @@ +# lockbook-cli +The private, polished note-taking platform. +# SITES: https://github.com/lockbook/lockbook \ No newline at end of file diff --git a/apps/lockbook-cli.md b/apps/lockbook-cli.md deleted file mode 100644 index 0a6796a09..000000000 --- a/apps/lockbook-cli.md +++ /dev/null @@ -1,8 +0,0 @@ -# LOCKBOOK-CLI - - The private, polished note-taking platform. - - SITE: https://github.com/lockbook/lockbook - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/lockbook-desktop b/apps/lockbook-desktop new file mode 100644 index 000000000..ddd8051ab --- /dev/null +++ b/apps/lockbook-desktop @@ -0,0 +1,3 @@ +# lockbook-desktop +The private, polished note-taking platform. +# SITES: https://github.com/lockbook/lockbook \ No newline at end of file diff --git a/apps/lockbook-desktop.md b/apps/lockbook-desktop.md deleted file mode 100644 index 385138f3b..000000000 --- a/apps/lockbook-desktop.md +++ /dev/null @@ -1,8 +0,0 @@ -# LOCKBOOK-DESKTOP - - The private, polished note-taking platform. - - SITE: https://github.com/lockbook/lockbook - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/lofi b/apps/lofi new file mode 100644 index 000000000..57bbb859e --- /dev/null +++ b/apps/lofi @@ -0,0 +1,3 @@ +# lofi +🎵🔉 A mini Spotify player with WebGL visualizations. +# SITES: https://github.com/dvx/lofi \ No newline at end of file diff --git a/apps/lofi.md b/apps/lofi.md deleted file mode 100644 index 3a5287554..000000000 --- a/apps/lofi.md +++ /dev/null @@ -1,8 +0,0 @@ -# LOFI - - 🎵🔉 A mini Spotify player with WebGL visualizations. - - SITE: https://github.com/dvx/lofi - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/loginized b/apps/loginized new file mode 100644 index 000000000..b226fcc00 --- /dev/null +++ b/apps/loginized @@ -0,0 +1,3 @@ +# loginized +Loginized Gnome GDM Login Theme Manager +# SITES: https://github.com/juhaku/loginized \ No newline at end of file diff --git a/apps/loginized.md b/apps/loginized.md deleted file mode 100644 index fd863e8a2..000000000 --- a/apps/loginized.md +++ /dev/null @@ -1,8 +0,0 @@ -# LOGINIZED - - Loginized Gnome GDM Login Theme Manager - - SITE: https://github.com/juhaku/loginized - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/logname b/apps/logname new file mode 100644 index 000000000..a29d7b19b --- /dev/null +++ b/apps/logname @@ -0,0 +1,4 @@ +# logname + Print user's login name. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/logname.md b/apps/logname.md deleted file mode 100644 index af7f49779..000000000 --- a/apps/logname.md +++ /dev/null @@ -1,8 +0,0 @@ -# LOGNAME - - Print user's login name. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/logseq b/apps/logseq new file mode 100644 index 000000000..68942f3b4 --- /dev/null +++ b/apps/logseq @@ -0,0 +1,3 @@ +# logseq +A privacy-first, open-source platform for knowledge management and collaboration. +# SITES: https://github.com/logseq/logseq \ No newline at end of file diff --git a/apps/logseq.md b/apps/logseq.md deleted file mode 100644 index 913a7d148..000000000 --- a/apps/logseq.md +++ /dev/null @@ -1,8 +0,0 @@ -# LOGSEQ - - A privacy-first, open-source platform for knowledge management and collaboration. - - SITE: https://github.com/logseq/logseq - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/look b/apps/look new file mode 100644 index 000000000..eeffa6144 --- /dev/null +++ b/apps/look @@ -0,0 +1,4 @@ +# look + Beginning with a given string. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/look.md b/apps/look.md deleted file mode 100644 index bc1b5188d..000000000 --- a/apps/look.md +++ /dev/null @@ -1,8 +0,0 @@ -# LOOK - - Beginning with a given string. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/looofix b/apps/looofix new file mode 100644 index 000000000..e5e44a7f5 --- /dev/null +++ b/apps/looofix @@ -0,0 +1,3 @@ +# looofix +Minimalist Desktop Lofi Player To Relax and Enjoy. +# SITES: https://github.com/DoginUwU/LooofiX \ No newline at end of file diff --git a/apps/looofix.md b/apps/looofix.md deleted file mode 100644 index 72bb430f6..000000000 --- a/apps/looofix.md +++ /dev/null @@ -1,8 +0,0 @@ -# LOOOFIX - - Minimalist Desktop Lofi Player To Relax and Enjoy. - - SITE: https://github.com/DoginUwU/LooofiX - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/loopauditioneer b/apps/loopauditioneer new file mode 100644 index 000000000..fb781766e --- /dev/null +++ b/apps/loopauditioneer @@ -0,0 +1,3 @@ +# loopauditioneer +Software for loop and cue handling in .wav files. +# SITES: https://sourceforge.net/projects/loopauditioneer/ \ No newline at end of file diff --git a/apps/loopauditioneer.md b/apps/loopauditioneer.md deleted file mode 100644 index 71b98c733..000000000 --- a/apps/loopauditioneer.md +++ /dev/null @@ -1,8 +0,0 @@ -# LOOPAUDITIONEER - - Software for loop and cue handling in .wav files. - - SITE: https://sourceforge.net/projects/loopauditioneer/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/lore-forge b/apps/lore-forge new file mode 100644 index 000000000..4835e7edc --- /dev/null +++ b/apps/lore-forge @@ -0,0 +1,3 @@ +# lore-forge +The app for writers & worldbuilders. +# SITES: https://loreforge.com \ No newline at end of file diff --git a/apps/lore-forge.md b/apps/lore-forge.md deleted file mode 100644 index f152de913..000000000 --- a/apps/lore-forge.md +++ /dev/null @@ -1,8 +0,0 @@ -# LORE-FORGE - - The app for writers & worldbuilders. - - SITE: https://loreforge.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/lorien b/apps/lorien new file mode 100644 index 000000000..30e324f07 --- /dev/null +++ b/apps/lorien @@ -0,0 +1,6 @@ +# lorien +Infinite canvas drawing/whiteboarding app for Windows, Linux and macOS. Made with Godot. + + This is the portable official version converted to an AppImage by our team, "Portable Linux Apps" , no additional changes have been made. +# SITES: https://github.com/mbrlabs/Lorien +# SOURCES: https://github.com/Portable-Linux-Apps/Lorien-AppImage \ No newline at end of file diff --git a/apps/lorien.md b/apps/lorien.md deleted file mode 100644 index 597a96f70..000000000 --- a/apps/lorien.md +++ /dev/null @@ -1,12 +0,0 @@ -# LORIEN - - Infinite canvas drawing/whiteboarding app for Windows, Linux and macOS. Made with Godot. - - This is the portable official version converted to an AppImage by our team, "Portable Linux Apps" , no additional changes have been made. - - SITE: https://github.com/mbrlabs/Lorien - - APPIMAGE: https://github.com/Portable-Linux-Apps/Lorien-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/losslesscut b/apps/losslesscut new file mode 100644 index 000000000..3a63552d8 --- /dev/null +++ b/apps/losslesscut @@ -0,0 +1,3 @@ +# losslesscut +The swiss army knife of lossless video/audio editing +# SITES: https://github.com/mifi/lossless-cut \ No newline at end of file diff --git a/apps/losslesscut.md b/apps/losslesscut.md deleted file mode 100644 index 786aefdfb..000000000 --- a/apps/losslesscut.md +++ /dev/null @@ -1,8 +0,0 @@ -# LOSSLESSCUT - - The swiss army knife of lossless video/audio editing - - SITE: https://github.com/mifi/lossless-cut - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/love b/apps/love new file mode 100644 index 000000000..c88386d73 --- /dev/null +++ b/apps/love @@ -0,0 +1,3 @@ +# love +The unquestionably awesome 2D game engine +# SITES: https://github.com/love2d/love \ No newline at end of file diff --git a/apps/love.md b/apps/love.md deleted file mode 100644 index 85f00bb79..000000000 --- a/apps/love.md +++ /dev/null @@ -1,8 +0,0 @@ -# LOVE - - The unquestionably awesome 2D game engine - - SITE: https://github.com/love2d/love - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/lovelive b/apps/lovelive new file mode 100644 index 000000000..60cb4b504 --- /dev/null +++ b/apps/lovelive @@ -0,0 +1,3 @@ +# lovelive +A LoveLiver Music Player. +# SITES: https://github.com/LoveLiveMusicPlayer/LoveLiveMusicPlayer \ No newline at end of file diff --git a/apps/lovelive.md b/apps/lovelive.md deleted file mode 100644 index dd258d30c..000000000 --- a/apps/lovelive.md +++ /dev/null @@ -1,8 +0,0 @@ -# LOVELIVE - - A LoveLiver Music Player. - - SITE: https://github.com/LoveLiveMusicPlayer/LoveLiveMusicPlayer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/lovesay b/apps/lovesay new file mode 100644 index 000000000..472f52540 --- /dev/null +++ b/apps/lovesay @@ -0,0 +1,3 @@ +# lovesay +Cowsay, but full of love and now a little rusty ♡ +# SITES: https://github.com/dotzenith/lovesay.rs \ No newline at end of file diff --git a/apps/lovesay.md b/apps/lovesay.md deleted file mode 100644 index fc4312fb9..000000000 --- a/apps/lovesay.md +++ /dev/null @@ -1,8 +0,0 @@ -# LOVESAY - - Cowsay, but full of love and now a little rusty ♡ - - SITE: https://github.com/dotzenith/lovesay.rs - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/lovr b/apps/lovr new file mode 100644 index 000000000..0b0880906 --- /dev/null +++ b/apps/lovr @@ -0,0 +1,3 @@ +# lovr +Lua Virtual Reality Framework +# SITES: https://github.com/bjornbytes/lovr \ No newline at end of file diff --git a/apps/lovr.md b/apps/lovr.md deleted file mode 100644 index 45a063f88..000000000 --- a/apps/lovr.md +++ /dev/null @@ -1,8 +0,0 @@ -# LOVR - - Lua Virtual Reality Framework - - SITE: https://github.com/bjornbytes/lovr - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/lowfi b/apps/lowfi new file mode 100644 index 000000000..b62161b5b --- /dev/null +++ b/apps/lowfi @@ -0,0 +1,3 @@ +# lowfi +An extremely simple lofi player. +# SITES: https://github.com/talwat/lowfi \ No newline at end of file diff --git a/apps/lowfi.md b/apps/lowfi.md deleted file mode 100644 index 9293d00bc..000000000 --- a/apps/lowfi.md +++ /dev/null @@ -1,8 +0,0 @@ -# LOWFI - - An extremely simple lofi player. - - SITE: https://github.com/talwat/lowfi - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/lpub3d b/apps/lpub3d new file mode 100644 index 000000000..9ae538f9d --- /dev/null +++ b/apps/lpub3d @@ -0,0 +1,3 @@ +# lpub3d +An LDraw Building Instruction Editor +# SITES: https://github.com/trevorsandy/lpub3d \ No newline at end of file diff --git a/apps/lpub3d.md b/apps/lpub3d.md deleted file mode 100644 index b4e192ea6..000000000 --- a/apps/lpub3d.md +++ /dev/null @@ -1,8 +0,0 @@ -# LPUB3D - - An LDraw Building Instruction Editor - - SITE: https://github.com/trevorsandy/lpub3d - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ls b/apps/ls new file mode 100644 index 000000000..bc96cdcbf --- /dev/null +++ b/apps/ls @@ -0,0 +1,3 @@ +# ls +List directory contents. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/ls.md b/apps/ls.md deleted file mode 100644 index 95489e789..000000000 --- a/apps/ls.md +++ /dev/null @@ -1,8 +0,0 @@ -# LS - - List directory contents. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/lsd b/apps/lsd new file mode 100644 index 000000000..77cae6dd1 --- /dev/null +++ b/apps/lsd @@ -0,0 +1,3 @@ +# lsd +The next gen ls command. +# SITES: https://github.com/lsd-rs/lsd \ No newline at end of file diff --git a/apps/lsd.md b/apps/lsd.md deleted file mode 100644 index 7212f6da2..000000000 --- a/apps/lsd.md +++ /dev/null @@ -1,8 +0,0 @@ -# LSD - - The next gen ls command. - - SITE: https://github.com/lsd-rs/lsd - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/lskat b/apps/lskat new file mode 100644 index 000000000..46357b3ab --- /dev/null +++ b/apps/lskat @@ -0,0 +1,12 @@ +# lskat +Lieutnant Skat (from German “Offiziersskat”) is a fun and engaging card game for two players, where the second player is either live opponent, or built in artificial intelligence. You can also play and test an online demo version of this game. + + This game is part of the KDE Games suite. + + USAGE (from the command line): + + kdegames -h (shows the list of games) + kdegames $GAME (launches the selected game) +# SCREENSHOTS: https://cdn.kde.org/screenshots/lskat/lskat.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-games-suite-appimage \ No newline at end of file diff --git a/apps/lskat.md b/apps/lskat.md deleted file mode 100644 index 9d7fb170b..000000000 --- a/apps/lskat.md +++ /dev/null @@ -1,19 +0,0 @@ -# LSKAT - - Lieutnant Skat (from German “Offiziersskat”) is a fun and engaging card game for two players, where the second player is either live opponent, or built in artificial intelligence. You can also play and test an online demo version of this game. - - This game is part of the KDE Games suite. - - USAGE (from the command line): - - kdegames -h (shows the list of games) - kdegames $GAME (launches the selected game) - - ![Screenshot](https://cdn.kde.org/screenshots/lskat/lskat.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-games-suite-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ltx-desktop b/apps/ltx-desktop new file mode 100644 index 000000000..cec4e20e7 --- /dev/null +++ b/apps/ltx-desktop @@ -0,0 +1,4 @@ +# ltx-desktop + An open-source desktop app for generating videos with LTX models. +# SITES: https://github.com/lightricks/ltx-desktop +# SOURCES: https://github.com/lightricks/ltx-desktop \ No newline at end of file diff --git a/apps/ltx-desktop.md b/apps/ltx-desktop.md deleted file mode 100644 index 73fa2f153..000000000 --- a/apps/ltx-desktop.md +++ /dev/null @@ -1,8 +0,0 @@ -# LTX-DESKTOP - - An open-source desktop app for generating videos with LTX models. - - SITE: https://github.com/lightricks/ltx-desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/luanti b/apps/luanti new file mode 100644 index 000000000..25fea6419 --- /dev/null +++ b/apps/luanti @@ -0,0 +1,3 @@ +# luanti +Multiplayer infinite-world block sandbox. +# SITES: https://github.com/rollerozxa/luanti-appimage \ No newline at end of file diff --git a/apps/luanti.md b/apps/luanti.md deleted file mode 100644 index ce76c20ea..000000000 --- a/apps/luanti.md +++ /dev/null @@ -1,8 +0,0 @@ -# LUANTI - - Multiplayer infinite-world block sandbox. - - SITE: https://github.com/rollerozxa/luanti-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/ludo b/apps/ludo new file mode 100644 index 000000000..541f714c6 --- /dev/null +++ b/apps/ludo @@ -0,0 +1,3 @@ +# ludo +Ludo is a work in progress libretro frontend written in go. +# SITES: https://github.com/lucasmz1/Ludo-AppImage \ No newline at end of file diff --git a/apps/ludo.md b/apps/ludo.md deleted file mode 100644 index d4cdecc4c..000000000 --- a/apps/ludo.md +++ /dev/null @@ -1,8 +0,0 @@ -# LUDO - - Ludo is a work in progress libretro frontend written in go. - - SITE: https://github.com/lucasmz1/Ludo-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/lumi b/apps/lumi new file mode 100644 index 000000000..d7d84088e --- /dev/null +++ b/apps/lumi @@ -0,0 +1,3 @@ +# lumi +A tool to create and display interactive content with H5P +# SITES: https://github.com/lumieducation/lumi \ No newline at end of file diff --git a/apps/lumi.md b/apps/lumi.md deleted file mode 100644 index 8083c5635..000000000 --- a/apps/lumi.md +++ /dev/null @@ -1,8 +0,0 @@ -# LUMI - - A tool to create and display interactive content with H5P - - SITE: https://github.com/lumieducation/lumi - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/luna b/apps/luna new file mode 100644 index 000000000..9943cfeb2 --- /dev/null +++ b/apps/luna @@ -0,0 +1,4 @@ +# luna +Luna - npm management through a modern UI. + Built with Electron. +# SITES: https://github.com/rvpanoz/luna \ No newline at end of file diff --git a/apps/luna.md b/apps/luna.md deleted file mode 100644 index b666cba0e..000000000 --- a/apps/luna.md +++ /dev/null @@ -1,8 +0,0 @@ -# LUNA - - Luna - npm management through a modern UI. - Built with Electron. - - SITE: https://github.com/rvpanoz/luna - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/lunar-client b/apps/lunar-client new file mode 100644 index 000000000..98197849d --- /dev/null +++ b/apps/lunar-client @@ -0,0 +1,3 @@ +# lunar-client +Lunar Client Free Minecraft Client, a modpack for all versions of Minecraft. +# SITES: https://www.lunarclient.com \ No newline at end of file diff --git a/apps/lunar-client.md b/apps/lunar-client.md deleted file mode 100644 index 682a569d9..000000000 --- a/apps/lunar-client.md +++ /dev/null @@ -1,8 +0,0 @@ -# LUNAR-CLIENT - - Lunar Client Free Minecraft Client, a modpack for all versions of Minecraft. - - SITE: https://www.lunarclient.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/lunatask b/apps/lunatask new file mode 100644 index 000000000..3d254f4a4 --- /dev/null +++ b/apps/lunatask @@ -0,0 +1,3 @@ +# lunatask +All-in-one encrypted to-do list, notebook, habit and mood tracker, and journaling app. It remembers stuff for you and keeps track of your mental well-being. +# SITES: https://lunatask.app \ No newline at end of file diff --git a/apps/lunatask.md b/apps/lunatask.md deleted file mode 100644 index 8a1061d97..000000000 --- a/apps/lunatask.md +++ /dev/null @@ -1,8 +0,0 @@ -# LUNATASK - - All-in-one encrypted to-do list, notebook, habit and mood tracker, and journaling app. It remembers stuff for you and keeps track of your mental well-being. - - SITE: https://lunatask.app - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/lutris b/apps/lutris new file mode 100644 index 000000000..79fd0cf28 --- /dev/null +++ b/apps/lutris @@ -0,0 +1,5 @@ +# lutris +Lutris helps you install and play video games from all eras and from most gaming systems. By leveraging and combining existing emulators, engine re-implementations and compatibility layers, it gives you a central interface to launch all your games. + + This script allows you to choose between the Anylinux AppImage and the "Archimage" or Arch Linux container into an AppImage. +# SITES: \ No newline at end of file diff --git a/apps/lutris-gamepad-ui b/apps/lutris-gamepad-ui new file mode 100644 index 000000000..23f1bc9d0 --- /dev/null +++ b/apps/lutris-gamepad-ui @@ -0,0 +1,3 @@ +# lutris-gamepad-ui +A simple, TV-friendly, gamepad-navigable frontend for the Lutris game launcher on Linux. +# SITES: https://github.com/andrew-ld/lutris-gamepad-ui \ No newline at end of file diff --git a/apps/lutris-gamepad-ui.md b/apps/lutris-gamepad-ui.md deleted file mode 100644 index 9b0418e6c..000000000 --- a/apps/lutris-gamepad-ui.md +++ /dev/null @@ -1,8 +0,0 @@ -# LUTRIS-GAMEPAD-UI - - A simple, TV-friendly, gamepad-navigable frontend for the Lutris game launcher on Linux. - - SITE: https://github.com/andrew-ld/lutris-gamepad-ui - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/lutris.md b/apps/lutris.md deleted file mode 100644 index 46c9e0e34..000000000 --- a/apps/lutris.md +++ /dev/null @@ -1,12 +0,0 @@ -# LUTRIS - - Lutris helps you install and play video games from all eras and from most gaming systems. By leveraging and combining existing emulators, engine re-implementations and compatibility layers, it gives you a central interface to launch all your games. - - This script allows you to choose between the Anylinux AppImage and the "Archimage" or Arch Linux container into an AppImage. - - ANYLINUX APPIMAGE: https://github.com/pkgforge-dev/Lutris-AppImage - - ARCHIMAGE: https://github.com/lucasmz1/Lutris_AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/lvgl-editor b/apps/lvgl-editor new file mode 100644 index 000000000..cb11ceaf7 --- /dev/null +++ b/apps/lvgl-editor @@ -0,0 +1,3 @@ +# lvgl-editor +LVGL Pro is a complete toolkit to build, test, share and ship embedded UIs efficiently. +# SITES: https://github.com/lvgl/lvgl_editor \ No newline at end of file diff --git a/apps/lvgl-editor.md b/apps/lvgl-editor.md deleted file mode 100644 index 68d764a02..000000000 --- a/apps/lvgl-editor.md +++ /dev/null @@ -1,8 +0,0 @@ -# LVGL-EDITOR - - LVGL Pro is a complete toolkit to build, test, share and ship embedded UIs efficiently. - - SITE: https://github.com/lvgl/lvgl_editor - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/lx-music-desktop b/apps/lx-music-desktop new file mode 100644 index 000000000..0186fe0cf --- /dev/null +++ b/apps/lx-music-desktop @@ -0,0 +1,3 @@ +# lx-music-desktop +一个基于electron的音乐软件 +# SITES: https://github.com/lyswhut/lx-music-desktop \ No newline at end of file diff --git a/apps/lx-music-desktop.md b/apps/lx-music-desktop.md deleted file mode 100644 index 9b5e3fd57..000000000 --- a/apps/lx-music-desktop.md +++ /dev/null @@ -1,8 +0,0 @@ -# LX-MUSIC-DESKTOP - - 一个基于electron的音乐软件 - - SITE: https://github.com/lyswhut/lx-music-desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/lxtask b/apps/lxtask new file mode 100644 index 000000000..6fd35d839 --- /dev/null +++ b/apps/lxtask @@ -0,0 +1,4 @@ +# lxtask +LXTask - lightweight and desktop-independent task manager derived from xfce4-taskmanager with all dependencies on Xfce removed, new features, and some improvement of the user interface. LXTask is based on GTK+ toolkit. It allows monitoring and controlling of running processes. +# SITES: https://www.lxde.org +# SOURCES: https://github.com/ivan-hc/lxtask-appimage \ No newline at end of file diff --git a/apps/lxtask.md b/apps/lxtask.md deleted file mode 100644 index 3dc325833..000000000 --- a/apps/lxtask.md +++ /dev/null @@ -1,10 +0,0 @@ -# LXTASK - - LXTask - lightweight and desktop-independent task manager derived from xfce4-taskmanager with all dependencies on Xfce removed, new features, and some improvement of the user interface. LXTask is based on GTK+ toolkit. It allows monitoring and controlling of running processes. - - SITE: https://www.lxde.org - - SOURCE: https://github.com/ivan-hc/lxtask-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/lyricistant b/apps/lyricistant new file mode 100644 index 000000000..13ae609ee --- /dev/null +++ b/apps/lyricistant @@ -0,0 +1,3 @@ +# lyricistant +A helpful writing assistant for lyricists! +# SITES: https://github.com/wardellbagby/lyricistant \ No newline at end of file diff --git a/apps/lyricistant.md b/apps/lyricistant.md deleted file mode 100644 index 1c23298f4..000000000 --- a/apps/lyricistant.md +++ /dev/null @@ -1,8 +0,0 @@ -# LYRICISTANT - - A helpful writing assistant for lyricists! - - SITE: https://github.com/wardellbagby/lyricistant - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/m b/apps/m new file mode 100644 index 000000000..54b6b095c --- /dev/null +++ b/apps/m @@ -0,0 +1,3 @@ +# m +Data oriented programming language for game developers +# SITES: https://github.com/martin-azpillaga/M \ No newline at end of file diff --git a/apps/m.md b/apps/m.md deleted file mode 100644 index 081268317..000000000 --- a/apps/m.md +++ /dev/null @@ -1,8 +0,0 @@ -# M - - Data oriented programming language for game developers - - SITE: https://github.com/martin-azpillaga/M - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/macchina b/apps/macchina new file mode 100644 index 000000000..b8e93acb7 --- /dev/null +++ b/apps/macchina @@ -0,0 +1,3 @@ +# macchina +A system information frontend with an emphasis on performance. +# SITES: https://github.com/Macchina-CLI/macchina \ No newline at end of file diff --git a/apps/macchina.md b/apps/macchina.md deleted file mode 100644 index f039c4566..000000000 --- a/apps/macchina.md +++ /dev/null @@ -1,8 +0,0 @@ -# MACCHINA - - A system information frontend with an emphasis on performance. - - SITE: https://github.com/Macchina-CLI/macchina - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/magento2-upgrade-gui b/apps/magento2-upgrade-gui new file mode 100644 index 000000000..0c3bca95a --- /dev/null +++ b/apps/magento2-upgrade-gui @@ -0,0 +1,3 @@ +# magento2-upgrade-gui +Magento 2 Upgrade GUI +# SITES: https://github.com/elgentos/magento2-upgrade-gui \ No newline at end of file diff --git a/apps/magento2-upgrade-gui.md b/apps/magento2-upgrade-gui.md deleted file mode 100644 index fe0947dac..000000000 --- a/apps/magento2-upgrade-gui.md +++ /dev/null @@ -1,8 +0,0 @@ -# MAGENTO2-UPGRADE-GUI - - Magento 2 Upgrade GUI - - SITE: https://github.com/elgentos/magento2-upgrade-gui - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mages b/apps/mages new file mode 100644 index 000000000..9eb809cd2 --- /dev/null +++ b/apps/mages @@ -0,0 +1,3 @@ +# mages +Multiplatform Matrix chat client (experimental CMP+rust app). +# SITES: https://github.com/mlm-games/mages \ No newline at end of file diff --git a/apps/mages.md b/apps/mages.md deleted file mode 100644 index 7ed2ed8a4..000000000 --- a/apps/mages.md +++ /dev/null @@ -1,8 +0,0 @@ -# MAGES - - Multiplatform Matrix chat client (experimental CMP+rust app). - - SITE: https://github.com/mlm-games/mages - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/magicfountain b/apps/magicfountain new file mode 100644 index 000000000..fcd051fc7 --- /dev/null +++ b/apps/magicfountain @@ -0,0 +1,3 @@ +# magicfountain +A novel and screenwriting program available on Linux, MacOSX and Windows. +# SITES: https://github.com/Aztorius/magicfountain \ No newline at end of file diff --git a/apps/magicfountain.md b/apps/magicfountain.md deleted file mode 100644 index 0e41c34da..000000000 --- a/apps/magicfountain.md +++ /dev/null @@ -1,8 +0,0 @@ -# MAGICFOUNTAIN - - A novel and screenwriting program available on Linux, MacOSX and Windows. - - SITE: https://github.com/Aztorius/magicfountain - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/makagiga b/apps/makagiga new file mode 100644 index 000000000..e2af4cb87 --- /dev/null +++ b/apps/makagiga @@ -0,0 +1,3 @@ +# makagiga +To-do manager, notepad, RSS reader, ... +# SITES: https://makagiga.sourceforge.io \ No newline at end of file diff --git a/apps/makagiga.md b/apps/makagiga.md deleted file mode 100644 index 266f2c249..000000000 --- a/apps/makagiga.md +++ /dev/null @@ -1,8 +0,0 @@ -# MAKAGIGA - - To-do manager, notepad, RSS reader, ... - - SITE: https://makagiga.sourceforge.io - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/makhber b/apps/makhber new file mode 100644 index 000000000..3feee51b5 --- /dev/null +++ b/apps/makhber @@ -0,0 +1,3 @@ +# makhber +Makhber is a free application for Visualization and Analysis of Scientific Data. +# SITES: https://github.com/Makhber/makhber \ No newline at end of file diff --git a/apps/makhber.md b/apps/makhber.md deleted file mode 100644 index d6866a7bd..000000000 --- a/apps/makhber.md +++ /dev/null @@ -1,8 +0,0 @@ -# MAKHBER - - Makhber is a free application for Visualization and Analysis of Scientific Data. - - SITE: https://github.com/Makhber/makhber - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/makoureactor b/apps/makoureactor new file mode 100644 index 000000000..bdeadd4ff --- /dev/null +++ b/apps/makoureactor @@ -0,0 +1,3 @@ +# makoureactor +Can edit field from Final Fantasy VII (PS & PC) +# SITES: https://github.com/myst6re/makoureactor \ No newline at end of file diff --git a/apps/makoureactor.md b/apps/makoureactor.md deleted file mode 100644 index c51aec457..000000000 --- a/apps/makoureactor.md +++ /dev/null @@ -1,8 +0,0 @@ -# MAKOUREACTOR - - Can edit field from Final Fantasy VII (PS & PC) - - SITE: https://github.com/myst6re/makoureactor - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/malice b/apps/malice new file mode 100644 index 000000000..486d80990 --- /dev/null +++ b/apps/malice @@ -0,0 +1,3 @@ +# malice +GUI Programming Tool for iCE40 +# SITES: https://github.com/Cloud-V/Malice \ No newline at end of file diff --git a/apps/malice.md b/apps/malice.md deleted file mode 100644 index f18e2dfb9..000000000 --- a/apps/malice.md +++ /dev/null @@ -1,8 +0,0 @@ -# MALICE - - GUI Programming Tool for iCE40 - - SITE: https://github.com/Cloud-V/Malice - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mame b/apps/mame new file mode 100644 index 000000000..139a0ae8c --- /dev/null +++ b/apps/mame @@ -0,0 +1,3 @@ +# mame +Unofficial AppImage of MAME emulator. +# SITES: https://github.com/pkgforge-dev/MAME-AppImage \ No newline at end of file diff --git a/apps/mame.md b/apps/mame.md deleted file mode 100644 index ade542e67..000000000 --- a/apps/mame.md +++ /dev/null @@ -1,8 +0,0 @@ -# MAME - - Unofficial AppImage of MAME emulator. - - SITE: https://github.com/pkgforge-dev/MAME-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/manager-io b/apps/manager-io new file mode 100644 index 000000000..dd5957170 --- /dev/null +++ b/apps/manager-io @@ -0,0 +1,4 @@ +# manager-io +Free Accounting Software for Linux. +# SITES: https://www.manager.io +# SOURCES: https://github.com/Manager-io/Manager \ No newline at end of file diff --git a/apps/manager-io.md b/apps/manager-io.md deleted file mode 100644 index e4bee8fb0..000000000 --- a/apps/manager-io.md +++ /dev/null @@ -1,10 +0,0 @@ -# MANAGER-IO - - Free Accounting Software for Linux. - - SITE: https://www.manager.io - - SOURCE: https://github.com/Manager-io/Manager - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mandelbulber2 b/apps/mandelbulber2 new file mode 100644 index 000000000..e1743ef64 --- /dev/null +++ b/apps/mandelbulber2 @@ -0,0 +1,5 @@ +# mandelbulber2 +Mandelbulber creatively generates three-dimensional fractals. Explore trigonometric, hyper-complex, Mandelbox, IFS, and many other 3D fractals. + Render with a great palette of customizable materials to create stunning images and videos. + The possibilities are literally infinite! +# SITES: https://github.com/buddhi1980/mandelbulber2 \ No newline at end of file diff --git a/apps/mandelbulber2.md b/apps/mandelbulber2.md deleted file mode 100644 index 62f2fd5c5..000000000 --- a/apps/mandelbulber2.md +++ /dev/null @@ -1,10 +0,0 @@ -# MANDELBULBER2 - - Mandelbulber creatively generates three-dimensional fractals. Explore trigonometric, hyper-complex, Mandelbox, IFS, and many other 3D fractals. - Render with a great palette of customizable materials to create stunning images and videos. - The possibilities are literally infinite! - - SITE: https://github.com/buddhi1980/mandelbulber2 - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/manga-tui b/apps/manga-tui new file mode 100644 index 000000000..97cb179e2 --- /dev/null +++ b/apps/manga-tui @@ -0,0 +1,3 @@ +# manga-tui +Terminal-based manga reader and downloader with image support . +# SITES: https://github.com/josueBarretogit/manga-tui \ No newline at end of file diff --git a/apps/manga-tui.md b/apps/manga-tui.md deleted file mode 100644 index 90c3c5976..000000000 --- a/apps/manga-tui.md +++ /dev/null @@ -1,8 +0,0 @@ -# MANGA-TUI - - Terminal-based manga reader and downloader with image support . - - SITE: https://github.com/josueBarretogit/manga-tui - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mangadesk b/apps/mangadesk new file mode 100644 index 000000000..6df98d56d --- /dev/null +++ b/apps/mangadesk @@ -0,0 +1,3 @@ +# mangadesk +Terminal client for MangaDex 📖 +# SITES: https://github.com/darylhjd/mangadesk \ No newline at end of file diff --git a/apps/mangadesk.md b/apps/mangadesk.md deleted file mode 100644 index e97780a1b..000000000 --- a/apps/mangadesk.md +++ /dev/null @@ -1,8 +0,0 @@ -# MANGADESK - - Terminal client for MangaDex 📖 - - SITE: https://github.com/darylhjd/mangadesk - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mangal b/apps/mangal new file mode 100644 index 000000000..ebf2ffc32 --- /dev/null +++ b/apps/mangal @@ -0,0 +1,3 @@ +# mangal +The most advanced (yet simple) cli manga downloader in the entire universe! Lua scrapers, export formats, anilist integration, fancy TUI and more! +# SITES: https://github.com/metafates/mangal \ No newline at end of file diff --git a/apps/mangal.md b/apps/mangal.md deleted file mode 100644 index 36af97b07..000000000 --- a/apps/mangal.md +++ /dev/null @@ -1,8 +0,0 @@ -# MANGAL - - The most advanced (yet simple) cli manga downloader in the entire universe! Lua scrapers, export formats, anilist integration, fancy TUI and more! - - SITE: https://github.com/metafates/mangal - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mangayomi b/apps/mangayomi new file mode 100644 index 000000000..c8a87b745 --- /dev/null +++ b/apps/mangayomi @@ -0,0 +1,3 @@ +# mangayomi +Free and open source application for reading manga, novels, and watching animes available on Android, iOS, macOS, Linux and Windows +# SITES: https://github.com/kodjodevf/mangayomi \ No newline at end of file diff --git a/apps/mangayomi.md b/apps/mangayomi.md deleted file mode 100644 index 7daf2df1e..000000000 --- a/apps/mangayomi.md +++ /dev/null @@ -1,8 +0,0 @@ -# MANGAYOMI - - Free and open source application for reading manga, novels, and watching animes available on Android, iOS, macOS, Linux and Windows - - SITE: https://github.com/kodjodevf/mangayomi - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mangbandclient b/apps/mangbandclient new file mode 100644 index 000000000..2a6699310 --- /dev/null +++ b/apps/mangbandclient @@ -0,0 +1,3 @@ +# mangbandclient +A free online multi-player realtime roguelike game based on Angband +# SITES: https://github.com/mangband/mangband \ No newline at end of file diff --git a/apps/mangbandclient.md b/apps/mangbandclient.md deleted file mode 100644 index f32959703..000000000 --- a/apps/mangbandclient.md +++ /dev/null @@ -1,8 +0,0 @@ -# MANGBANDCLIENT - - A free online multi-player realtime roguelike game based on Angband - - SITE: https://github.com/mangband/mangband - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mangojuice b/apps/mangojuice new file mode 100644 index 000000000..6b51f785d --- /dev/null +++ b/apps/mangojuice @@ -0,0 +1,3 @@ +# mangojuice +It's a great alternative to GOverlay. +# SITES: https://github.com/radiolamp/mangojuice \ No newline at end of file diff --git a/apps/mangojuice.md b/apps/mangojuice.md deleted file mode 100644 index 28912127b..000000000 --- a/apps/mangojuice.md +++ /dev/null @@ -1,8 +0,0 @@ -# MANGOJUICE - - It's a great alternative to GOverlay. - - SITE: https://github.com/radiolamp/mangojuice - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mangoverlay b/apps/mangoverlay new file mode 100644 index 000000000..df1db67c6 --- /dev/null +++ b/apps/mangoverlay @@ -0,0 +1,3 @@ +# mangoverlay +mangohud configuration tool +# SITES: https://github.com/loissascha/MangOverlay \ No newline at end of file diff --git a/apps/mangoverlay.md b/apps/mangoverlay.md deleted file mode 100644 index a6c2197d1..000000000 --- a/apps/mangoverlay.md +++ /dev/null @@ -1,8 +0,0 @@ -# MANGOVERLAY - - mangohud configuration tool - - SITE: https://github.com/loissascha/MangOverlay - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/maniadrive b/apps/maniadrive new file mode 100644 index 000000000..26ad42736 --- /dev/null +++ b/apps/maniadrive @@ -0,0 +1,3 @@ +# maniadrive +Unofficial, an open-source clone of the popular racing game TrackMania. +# SITES: https://github.com/pkgforge-dev/ManiaDrive-AppImage \ No newline at end of file diff --git a/apps/maniadrive.md b/apps/maniadrive.md deleted file mode 100644 index f11bf7d7a..000000000 --- a/apps/maniadrive.md +++ /dev/null @@ -1,8 +0,0 @@ -# MANIADRIVE - - Unofficial, an open-source clone of the popular racing game TrackMania. - - SITE: https://github.com/pkgforge-dev/ManiaDrive-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/manta b/apps/manta new file mode 100644 index 000000000..1a22e1a3e --- /dev/null +++ b/apps/manta @@ -0,0 +1,4 @@ +# manta +Flexible invoicing desktop app with beautiful & customizable templates. +# SITES: https://getmanta.app/ +# SOURCES: https://github.com/hql287/Manta \ No newline at end of file diff --git a/apps/manta.md b/apps/manta.md deleted file mode 100644 index 891e3ee10..000000000 --- a/apps/manta.md +++ /dev/null @@ -1,10 +0,0 @@ -# MANTA - - Flexible invoicing desktop app with beautiful & customizable templates. - - SITE: https://getmanta.app/ - - SOURCE: https://github.com/hql287/Manta - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mapeo b/apps/mapeo new file mode 100644 index 000000000..c83d653d5 --- /dev/null +++ b/apps/mapeo @@ -0,0 +1,3 @@ +# mapeo +Local-first mapping and monitoring in remote environments. +# SITES: https://github.com/digidem/mapeo-desktop \ No newline at end of file diff --git a/apps/mapeo.md b/apps/mapeo.md deleted file mode 100644 index fccc7ef2a..000000000 --- a/apps/mapeo.md +++ /dev/null @@ -1,8 +0,0 @@ -# MAPEO - - Local-first mapping and monitoring in remote environments. - - SITE: https://github.com/digidem/mapeo-desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mapic b/apps/mapic new file mode 100644 index 000000000..05cc5e378 --- /dev/null +++ b/apps/mapic @@ -0,0 +1,3 @@ +# mapic +MaPic is a Image Viewer with AI Metadata Reader. +# SITES: https://github.com/Majika007/MaPic \ No newline at end of file diff --git a/apps/mapic.md b/apps/mapic.md deleted file mode 100644 index 24d9f998a..000000000 --- a/apps/mapic.md +++ /dev/null @@ -1,8 +0,0 @@ -# MAPIC - - MaPic is a Image Viewer with AI Metadata Reader. - - SITE: https://github.com/Majika007/MaPic - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/mapollage b/apps/mapollage new file mode 100644 index 000000000..b71ad6cad --- /dev/null +++ b/apps/mapollage @@ -0,0 +1,3 @@ +# mapollage +Mapollage is a photo kml generator for Google Earth. +# SITES: https://github.com/trixon/mapollage \ No newline at end of file diff --git a/apps/mapollage.md b/apps/mapollage.md deleted file mode 100644 index 5dd6f07e0..000000000 --- a/apps/mapollage.md +++ /dev/null @@ -1,8 +0,0 @@ -# MAPOLLAGE - - Mapollage is a photo kml generator for Google Earth. - - SITE: https://github.com/trixon/mapollage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mapton b/apps/mapton new file mode 100644 index 000000000..893799f53 --- /dev/null +++ b/apps/mapton @@ -0,0 +1,3 @@ +# mapton +Some kind of map application +# SITES: https://github.com/trixon/mapton \ No newline at end of file diff --git a/apps/mapton.md b/apps/mapton.md deleted file mode 100644 index 5483fbe85..000000000 --- a/apps/mapton.md +++ /dev/null @@ -1,8 +0,0 @@ -# MAPTON - - Some kind of map application - - SITE: https://github.com/trixon/mapton - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mariokart64recomp b/apps/mariokart64recomp new file mode 100644 index 000000000..7f44f3a78 --- /dev/null +++ b/apps/mariokart64recomp @@ -0,0 +1,3 @@ +# mariokart64recomp +Unofficial, a native port of MarioKart 64, statically recompiled. +# SITES: https://github.com/pkgforge-dev/MarioKart64Recomp-AppImage \ No newline at end of file diff --git a/apps/mariokart64recomp.md b/apps/mariokart64recomp.md deleted file mode 100644 index a6ef7b576..000000000 --- a/apps/mariokart64recomp.md +++ /dev/null @@ -1,8 +0,0 @@ -# MARIOKART64RECOMP - - Unofficial, a native port of MarioKart 64, statically recompiled. - - SITE: https://github.com/pkgforge-dev/MarioKart64Recomp-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/mark-mind b/apps/mark-mind new file mode 100644 index 000000000..ee39f716e --- /dev/null +++ b/apps/mark-mind @@ -0,0 +1,3 @@ +# mark-mind +An mind map and outliner software +# SITES: https://github.com/MarkMindLtd/Mark-Mind \ No newline at end of file diff --git a/apps/mark-mind.md b/apps/mark-mind.md deleted file mode 100644 index c29d1f9b3..000000000 --- a/apps/mark-mind.md +++ /dev/null @@ -1,8 +0,0 @@ -# MARK-MIND - - An mind map and outliner software - - SITE: https://github.com/MarkMindLtd/Mark-Mind - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/markflowy b/apps/markflowy new file mode 100644 index 000000000..bbc643795 --- /dev/null +++ b/apps/markflowy @@ -0,0 +1,3 @@ +# markflowy +Modern markdown editor application, Build fast and efficient workflows. +# SITES: https://github.com/drl990114/MarkFlowy \ No newline at end of file diff --git a/apps/markflowy.md b/apps/markflowy.md deleted file mode 100644 index b0fe7d364..000000000 --- a/apps/markflowy.md +++ /dev/null @@ -1,8 +0,0 @@ -# MARKFLOWY - - Modern markdown editor application, Build fast and efficient workflows. - - SITE: https://github.com/drl990114/MarkFlowy - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/markman b/apps/markman new file mode 100644 index 000000000..f2eb81ef1 --- /dev/null +++ b/apps/markman @@ -0,0 +1,3 @@ +# markman +A markdown editor +# SITES: https://github.com/xemxx/markman-client \ No newline at end of file diff --git a/apps/markman.md b/apps/markman.md deleted file mode 100644 index 24d95388a..000000000 --- a/apps/markman.md +++ /dev/null @@ -1,8 +0,0 @@ -# MARKMAN - - A markdown editor - - SITE: https://github.com/xemxx/markman-client - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/marktext b/apps/marktext new file mode 100644 index 000000000..c49ab0444 --- /dev/null +++ b/apps/marktext @@ -0,0 +1,3 @@ +# marktext +A simple and elegant markdown editor, available for Linux, macOS and Windows. +# SITES: https://github.com/marktext/marktext \ No newline at end of file diff --git a/apps/marktext.md b/apps/marktext.md deleted file mode 100644 index 281ba3fe3..000000000 --- a/apps/marktext.md +++ /dev/null @@ -1,8 +0,0 @@ -# MARKTEXT - - A simple and elegant markdown editor, available for Linux, macOS and Windows. - - SITE: https://github.com/marktext/marktext - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/marlin-conf b/apps/marlin-conf new file mode 100644 index 000000000..f81257d9e --- /dev/null +++ b/apps/marlin-conf @@ -0,0 +1,3 @@ +# marlin-conf +Configuration tool for Marlin project. +# SITES: https://github.com/akaJes/marlin-config \ No newline at end of file diff --git a/apps/marlin-conf.md b/apps/marlin-conf.md deleted file mode 100644 index 848e7b46c..000000000 --- a/apps/marlin-conf.md +++ /dev/null @@ -1,7 +0,0 @@ -# MARLIN-CONF - - Configuration tool for Marlin project. - - SITE: https://github.com/akaJes/marlin-config - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/martian b/apps/martian new file mode 100644 index 000000000..7eb2f4c42 --- /dev/null +++ b/apps/martian @@ -0,0 +1,3 @@ +# martian +Websocket testing tool +# SITES: https://github.com/drex44/martian \ No newline at end of file diff --git a/apps/martian.md b/apps/martian.md deleted file mode 100644 index be95c9cde..000000000 --- a/apps/martian.md +++ /dev/null @@ -1,8 +0,0 @@ -# MARTIAN - - Websocket testing tool - - SITE: https://github.com/drex44/martian - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/marvin b/apps/marvin new file mode 100644 index 000000000..9a9d203f8 --- /dev/null +++ b/apps/marvin @@ -0,0 +1,3 @@ +# marvin +Open Source record and playback test automation for the web. +# SITES: https://rolandbernard.github.io/marvin/ \ No newline at end of file diff --git a/apps/marvin.md b/apps/marvin.md deleted file mode 100644 index d24649fd5..000000000 --- a/apps/marvin.md +++ /dev/null @@ -1,8 +0,0 @@ -# MARVIN - - Open Source record and playback test automation for the web. - - SITE: https://rolandbernard.github.io/marvin/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/master-pdf-editor b/apps/master-pdf-editor new file mode 100644 index 000000000..3086a95b5 --- /dev/null +++ b/apps/master-pdf-editor @@ -0,0 +1,3 @@ +# master-pdf-editor +Master PDF Editor allows you to create, edit, preview, encrypt, sign and print PDF documents. +# SITES: https://code-industry.net \ No newline at end of file diff --git a/apps/master-pdf-editor.md b/apps/master-pdf-editor.md deleted file mode 100644 index 7e37502e4..000000000 --- a/apps/master-pdf-editor.md +++ /dev/null @@ -1,8 +0,0 @@ -# MASTER-PDF-EDITOR - - Master PDF Editor allows you to create, edit, preview, encrypt, sign and print PDF documents. - - SITE: https://code-industry.net - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/masterkey b/apps/masterkey new file mode 100644 index 000000000..54e83bc0d --- /dev/null +++ b/apps/masterkey @@ -0,0 +1,4 @@ +# masterkey + Unofficial AppImage of Master Key. +# SITES: https://github.com/pkgforge-dev/masterkey-appimage +# SOURCES: https://github.com/pkgforge-dev/masterkey-appimage \ No newline at end of file diff --git a/apps/masterkey.md b/apps/masterkey.md deleted file mode 100644 index 01a6e1692..000000000 --- a/apps/masterkey.md +++ /dev/null @@ -1,8 +0,0 @@ -# MASTERKEY - - Unofficial AppImage of Master Key. - - SITE: https://github.com/pkgforge-dev/masterkey-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/mastervyrn b/apps/mastervyrn new file mode 100644 index 000000000..feaf39963 --- /dev/null +++ b/apps/mastervyrn @@ -0,0 +1,3 @@ +# mastervyrn +MasterVyrn is a clean dedicated GBF loader. +# SITES: https://github.com/LightouchDev/MasterVyrn \ No newline at end of file diff --git a/apps/mastervyrn.md b/apps/mastervyrn.md deleted file mode 100644 index 7a945320c..000000000 --- a/apps/mastervyrn.md +++ /dev/null @@ -1,8 +0,0 @@ -# MASTERVYRN - - MasterVyrn is a clean dedicated GBF loader. - - SITE: https://github.com/LightouchDev/MasterVyrn - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mate-system-monitor b/apps/mate-system-monitor new file mode 100644 index 000000000..4f3f43640 --- /dev/null +++ b/apps/mate-system-monitor @@ -0,0 +1,4 @@ +# mate-system-monitor +Process viewer and system resource monitor, from the MATE Desktop Environment. +# SCREENSHOTS: https://wiki.mate-desktop.org/img/applications/mate-system-monitor-window.png +# SITES: https://github.com/ivan-hc/MATE-system-monitor-appimage \ No newline at end of file diff --git a/apps/mate-system-monitor.md b/apps/mate-system-monitor.md deleted file mode 100644 index 5d9acc50f..000000000 --- a/apps/mate-system-monitor.md +++ /dev/null @@ -1,10 +0,0 @@ -# MATE-SYSTEM-MONITOR - - Process viewer and system resource monitor, from the MATE Desktop Environment. - - ![Screenshot](https://wiki.mate-desktop.org/img/applications/mate-system-monitor-window.png) - - SITE: https://github.com/ivan-hc/MATE-system-monitor-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/materialious b/apps/materialious new file mode 100644 index 000000000..73d76375a --- /dev/null +++ b/apps/materialious @@ -0,0 +1,3 @@ +# materialious +Modern material design for Invidious. +# SITES: https://github.com/Materialious/Materialious \ No newline at end of file diff --git a/apps/materialious.md b/apps/materialious.md deleted file mode 100644 index 1dc54af0f..000000000 --- a/apps/materialious.md +++ /dev/null @@ -1,8 +0,0 @@ -# MATERIALIOUS - - Modern material design for Invidious. - - SITE: https://github.com/Materialious/Materialious - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mathcha-notebook b/apps/mathcha-notebook new file mode 100644 index 000000000..83a1b5b2f --- /dev/null +++ b/apps/mathcha-notebook @@ -0,0 +1,3 @@ +# mathcha-notebook +Desktop version of Mathcha, built for your privacy +# SITES: https://www.mathcha.io/notebook/ \ No newline at end of file diff --git a/apps/mathcha-notebook.md b/apps/mathcha-notebook.md deleted file mode 100644 index 92f083c86..000000000 --- a/apps/mathcha-notebook.md +++ /dev/null @@ -1,8 +0,0 @@ -# MATHCHA-NOTEBOOK - - Desktop version of Mathcha, built for your privacy - - SITE: https://www.mathcha.io/notebook/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/matm b/apps/matm new file mode 100644 index 000000000..23a628f94 --- /dev/null +++ b/apps/matm @@ -0,0 +1,3 @@ +# matm +Watch anime, movies, tv shows and read manga from comfort of the cli +# SITES: https://github.com/crolbar/matm \ No newline at end of file diff --git a/apps/matm.md b/apps/matm.md deleted file mode 100644 index 04f7e3d67..000000000 --- a/apps/matm.md +++ /dev/null @@ -1,8 +0,0 @@ -# MATM - - Watch anime, movies, tv shows and read manga from comfort of the cli - - SITE: https://github.com/crolbar/matm - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mattermost-desktop b/apps/mattermost-desktop new file mode 100644 index 000000000..bb90dd260 --- /dev/null +++ b/apps/mattermost-desktop @@ -0,0 +1,3 @@ +# mattermost-desktop +Mattermost is an open source platform for secure collaboration across the entire software development lifecycle. This repo is for the native desktop application that's built on Electron; it runs on Windows, Mac, and Linux. +# SITES: https://github.com/mattermost/desktop \ No newline at end of file diff --git a/apps/mattermost-desktop.md b/apps/mattermost-desktop.md deleted file mode 100644 index c383e82c4..000000000 --- a/apps/mattermost-desktop.md +++ /dev/null @@ -1,8 +0,0 @@ -# MATTERMOST-DESKTOP - - Mattermost is an open source platform for secure collaboration across the entire software development lifecycle. This repo is for the native desktop application that's built on Electron; it runs on Windows, Mac, and Linux. - - SITE: https://github.com/mattermost/desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mawk b/apps/mawk new file mode 100644 index 000000000..c93ca1b85 --- /dev/null +++ b/apps/mawk @@ -0,0 +1,3 @@ +# mawk +And text processing language. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/mawk.md b/apps/mawk.md deleted file mode 100644 index 74929e6fc..000000000 --- a/apps/mawk.md +++ /dev/null @@ -1,8 +0,0 @@ -# MAWK - - And text processing language. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/mayo b/apps/mayo new file mode 100644 index 000000000..e9c761d22 --- /dev/null +++ b/apps/mayo @@ -0,0 +1,3 @@ +# mayo +3D CAD viewer and converter based on Qt + OpenCascade. +# SITES: https://github.com/fougue/mayo \ No newline at end of file diff --git a/apps/mayo.md b/apps/mayo.md deleted file mode 100644 index 15902b8a5..000000000 --- a/apps/mayo.md +++ /dev/null @@ -1,8 +0,0 @@ -# MAYO - - 3D CAD viewer and converter based on Qt + OpenCascade. - - SITE: https://github.com/fougue/mayo - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mazesolver b/apps/mazesolver new file mode 100644 index 000000000..460524cb0 --- /dev/null +++ b/apps/mazesolver @@ -0,0 +1,3 @@ +# mazesolver +A tool which shows how different algorithms solves mazes. +# SITES: https://github.com/Arquanite/MazeSolver \ No newline at end of file diff --git a/apps/mazesolver.md b/apps/mazesolver.md deleted file mode 100644 index 545336329..000000000 --- a/apps/mazesolver.md +++ /dev/null @@ -1,8 +0,0 @@ -# MAZESOLVER - - A tool which shows how different algorithms solves mazes. - - SITE: https://github.com/Arquanite/MazeSolver - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mbcord b/apps/mbcord new file mode 100644 index 000000000..cac3ce6f3 --- /dev/null +++ b/apps/mbcord @@ -0,0 +1,3 @@ +# mbcord +An Emby/Jellyfin rich presence client for Discord +# SITES: https://github.com/SandwichFox/MBCord \ No newline at end of file diff --git a/apps/mbcord.md b/apps/mbcord.md deleted file mode 100644 index 41beb9df9..000000000 --- a/apps/mbcord.md +++ /dev/null @@ -1,8 +0,0 @@ -# MBCORD - - An Emby/Jellyfin rich presence client for Discord - - SITE: https://github.com/SandwichFox/MBCord - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mcfly b/apps/mcfly new file mode 100644 index 000000000..cd30b9ca9 --- /dev/null +++ b/apps/mcfly @@ -0,0 +1,3 @@ +# mcfly +Fly through your shell history. Great Scott! +# SITES: https://github.com/cantino/mcfly \ No newline at end of file diff --git a/apps/mcfly.md b/apps/mcfly.md deleted file mode 100644 index bbfa1b77d..000000000 --- a/apps/mcfly.md +++ /dev/null @@ -1,8 +0,0 @@ -# MCFLY - - Fly through your shell history. Great Scott! - - SITE: https://github.com/cantino/mcfly - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mcpelauncher b/apps/mcpelauncher new file mode 100644 index 000000000..e255df518 --- /dev/null +++ b/apps/mcpelauncher @@ -0,0 +1,5 @@ +# mcpelauncher +This project allows you to launch Minecraft: Bedrock Edition (as in the edition w/o the Edition suffix, previously known as Minecraft: Pocket Edition). The launcher supports Linux and OS X. + + Only for Github Actions, the hacked linux-packaging-scripts of minecraft-linux (endless tweaked). +# SITES: https://github.com/minecraft-linux/appimage-builder \ No newline at end of file diff --git a/apps/mcpelauncher.md b/apps/mcpelauncher.md deleted file mode 100644 index 72e80b51e..000000000 --- a/apps/mcpelauncher.md +++ /dev/null @@ -1,10 +0,0 @@ -# MCPELAUNCHER - - This project allows you to launch Minecraft: Bedrock Edition (as in the edition w/o the Edition suffix, previously known as Minecraft: Pocket Edition). The launcher supports Linux and OS X. - - Only for Github Actions, the hacked linux-packaging-scripts of minecraft-linux (endless tweaked). - - SITE: https://github.com/minecraft-linux/appimage-builder - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mcpodcast b/apps/mcpodcast new file mode 100644 index 000000000..05baa4e2d --- /dev/null +++ b/apps/mcpodcast @@ -0,0 +1,3 @@ +# mcpodcast +A small electron app for a number of administration tasks around Podcast mp3 files. +# SITES: https://github.com/McInkay/McPodcast \ No newline at end of file diff --git a/apps/mcpodcast.md b/apps/mcpodcast.md deleted file mode 100644 index 6e0ab26ba..000000000 --- a/apps/mcpodcast.md +++ /dev/null @@ -1,8 +0,0 @@ -# MCPODCAST - - A small electron app for a number of administration tasks around Podcast mp3 files. - - SITE: https://github.com/McInkay/McPodcast - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/md5sum b/apps/md5sum new file mode 100644 index 000000000..0d8a6f7b2 --- /dev/null +++ b/apps/md5sum @@ -0,0 +1,3 @@ +# md5sum +Compute and check MD5 message digest. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/md5sum.md b/apps/md5sum.md deleted file mode 100644 index fe8fe9a8d..000000000 --- a/apps/md5sum.md +++ /dev/null @@ -1,8 +0,0 @@ -# MD5SUM - - Compute and check MD5 message digest. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/mdcat b/apps/mdcat new file mode 100644 index 000000000..96554ac85 --- /dev/null +++ b/apps/mdcat @@ -0,0 +1,3 @@ +# mdcat +Command line "cat" for markdown files. +# SITES: https://github.com/swsnr/mdcat \ No newline at end of file diff --git a/apps/mdcat.md b/apps/mdcat.md deleted file mode 100644 index 56e59abfb..000000000 --- a/apps/mdcat.md +++ /dev/null @@ -1,8 +0,0 @@ -# MDCAT - - Command line "cat" for markdown files. - - SITE: https://github.com/swsnr/mdcat - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mdl b/apps/mdl new file mode 100644 index 000000000..2ccafee9d --- /dev/null +++ b/apps/mdl @@ -0,0 +1,3 @@ +# mdl +MDL wallet +# SITES: https://github.com/MDLlife/MDL \ No newline at end of file diff --git a/apps/mdl.md b/apps/mdl.md deleted file mode 100644 index 003dd61d6..000000000 --- a/apps/mdl.md +++ /dev/null @@ -1,8 +0,0 @@ -# MDL - - MDL wallet - - SITE: https://github.com/MDLlife/MDL - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mdsilo-app b/apps/mdsilo-app new file mode 100644 index 000000000..94703823b --- /dev/null +++ b/apps/mdsilo-app @@ -0,0 +1,3 @@ +# mdsilo-app +Lightweight Knowledge Base and Feed Reader. +# SITES: https://github.com/mdSilo/mdSilo-app \ No newline at end of file diff --git a/apps/mdsilo-app.md b/apps/mdsilo-app.md deleted file mode 100644 index 93d0fb149..000000000 --- a/apps/mdsilo-app.md +++ /dev/null @@ -1,8 +0,0 @@ -# MDSILO-APP - - Lightweight Knowledge Base and Feed Reader. - - SITE: https://github.com/mdSilo/mdSilo-app - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mdview b/apps/mdview new file mode 100644 index 000000000..0ee8bb20c --- /dev/null +++ b/apps/mdview @@ -0,0 +1,3 @@ +# mdview +A standalone application that renders and displays Markdown files. It does nothing else! No direct editing nor any fancy note taking features. It is not distributed as a browser extension nor does it fire up a web server - so no web browser is needed to see the rendered Markdown file. +# SITES: https://github.com/c3er/mdview \ No newline at end of file diff --git a/apps/mdview.md b/apps/mdview.md deleted file mode 100644 index a36643d84..000000000 --- a/apps/mdview.md +++ /dev/null @@ -1,7 +0,0 @@ -# MDVIEW - - A standalone application that renders and displays Markdown files. It does nothing else! No direct editing nor any fancy note taking features. It is not distributed as a browser extension nor does it fire up a web server - so no web browser is needed to see the rendered Markdown file. - - SITE: https://github.com/c3er/mdview - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/measur b/apps/measur new file mode 100644 index 000000000..620dded79 --- /dev/null +++ b/apps/measur @@ -0,0 +1,3 @@ +# measur +AMO-Tools-Desktop is an energy efficiency calculation application for use with industrial equipment such as pumps, furnaces, fans, and motors, as well as for industrial systems such as steam. Currently in beta. +# SITES: https://github.com/ORNL-AMO/AMO-Tools-Desktop \ No newline at end of file diff --git a/apps/measur.md b/apps/measur.md deleted file mode 100644 index a0c0a5b32..000000000 --- a/apps/measur.md +++ /dev/null @@ -1,8 +0,0 @@ -# MEASUR - - AMO-Tools-Desktop is an energy efficiency calculation application for use with industrial equipment such as pumps, furnaces, fans, and motors, as well as for industrial systems such as steam. Currently in beta. - - SITE: https://github.com/ORNL-AMO/AMO-Tools-Desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mechtype b/apps/mechtype new file mode 100644 index 000000000..390de543d --- /dev/null +++ b/apps/mechtype @@ -0,0 +1,3 @@ +# mechtype +MechType is a lightweight application designed to elevate your typing experience by allowing you to enjoy custom soundtracks with every keystroke. +# SITES: https://github.com/SurajRaika/MechType \ No newline at end of file diff --git a/apps/mechtype.md b/apps/mechtype.md deleted file mode 100644 index 0986f224b..000000000 --- a/apps/mechtype.md +++ /dev/null @@ -1,8 +0,0 @@ -# MECHTYPE - - MechType is a lightweight application designed to elevate your typing experience by allowing you to enjoy custom soundtracks with every keystroke. - - SITE: https://github.com/SurajRaika/MechType - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mechvibes b/apps/mechvibes new file mode 100644 index 000000000..56bc97f2a --- /dev/null +++ b/apps/mechvibes @@ -0,0 +1,3 @@ +# mechvibes +Play mechanical keyboard sounds as you type. +# SITES: https://github.com/hainguyents13/mechvibes \ No newline at end of file diff --git a/apps/mechvibes.md b/apps/mechvibes.md deleted file mode 100644 index a8b03aacf..000000000 --- a/apps/mechvibes.md +++ /dev/null @@ -1,8 +0,0 @@ -# MECHVIBES - - Play mechanical keyboard sounds as you type. - - SITE: https://github.com/hainguyents13/mechvibes - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/media-downloader b/apps/media-downloader new file mode 100644 index 000000000..6e93209e8 --- /dev/null +++ b/apps/media-downloader @@ -0,0 +1,3 @@ +# media-downloader +Cross-platform audio/video downloader +# SITES: https://github.com/gaeljacquin/media-downloader \ No newline at end of file diff --git a/apps/media-downloader.md b/apps/media-downloader.md deleted file mode 100644 index 1c90dbb57..000000000 --- a/apps/media-downloader.md +++ /dev/null @@ -1,16 +0,0 @@ -# MEDIA-DOWNLOADER - - Cross-platform audio/video downloader - - SITE: https://github.com/gaeljacquin/media-downloader - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | -# MEDIA-DOWNLOADER - - Cross-platform audio/video downloader - - SITE: https://github.com/gaeljacquin/media-downloader - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/media-dupes b/apps/media-dupes new file mode 100644 index 000000000..1966ffdd5 --- /dev/null +++ b/apps/media-dupes @@ -0,0 +1,3 @@ +# media-dupes +A minimal content duplicator for common media services like youtube +# SITES: https://github.com/yafp/media-dupes \ No newline at end of file diff --git a/apps/media-dupes.md b/apps/media-dupes.md deleted file mode 100644 index 76b6a292c..000000000 --- a/apps/media-dupes.md +++ /dev/null @@ -1,8 +0,0 @@ -# MEDIA-DUPES - - A minimal content duplicator for common media services like youtube - - SITE: https://github.com/yafp/media-dupes - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/media-hoarder b/apps/media-hoarder new file mode 100644 index 000000000..5eee63eba --- /dev/null +++ b/apps/media-hoarder @@ -0,0 +1,3 @@ +# media-hoarder +Media Hoarder - THE media frontend for data hoarders and movie lovers +# SITES: https://github.com/theMK2k/Media-Hoarder \ No newline at end of file diff --git a/apps/media-hoarder.md b/apps/media-hoarder.md deleted file mode 100644 index bd3eae12d..000000000 --- a/apps/media-hoarder.md +++ /dev/null @@ -1,8 +0,0 @@ -# MEDIA-HOARDER - - Media Hoarder - THE media frontend for data hoarders and movie lovers - - SITE: https://github.com/theMK2k/Media-Hoarder - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mediachips b/apps/mediachips new file mode 100644 index 000000000..0df8ac8f0 --- /dev/null +++ b/apps/mediachips @@ -0,0 +1,3 @@ +# mediachips +Manage your videos, add any metadata to them and play them. +# SITES: https://mediachips.app/ \ No newline at end of file diff --git a/apps/mediachips.md b/apps/mediachips.md deleted file mode 100644 index 898c4288f..000000000 --- a/apps/mediachips.md +++ /dev/null @@ -1,8 +0,0 @@ -# MEDIACHIPS - - Manage your videos, add any metadata to them and play them. - - SITE: https://mediachips.app/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mediaelch b/apps/mediaelch new file mode 100644 index 000000000..2291948ab --- /dev/null +++ b/apps/mediaelch @@ -0,0 +1,3 @@ +# mediaelch +Media Manager for Kodi +# SITES: https://github.com/Komet/MediaElch \ No newline at end of file diff --git a/apps/mediaelch.md b/apps/mediaelch.md deleted file mode 100644 index 6360014b6..000000000 --- a/apps/mediaelch.md +++ /dev/null @@ -1,8 +0,0 @@ -# MEDIAELCH - - Media Manager for Kodi - - SITE: https://github.com/Komet/MediaElch - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mediaharbor b/apps/mediaharbor new file mode 100644 index 000000000..dea3f7488 --- /dev/null +++ b/apps/mediaharbor @@ -0,0 +1,3 @@ +# mediaharbor +Cross-platform MediaHarbor +# SITES: https://github.com/MediaHarbor/mediaharbor \ No newline at end of file diff --git a/apps/mediaharbor.md b/apps/mediaharbor.md deleted file mode 100644 index e291f96be..000000000 --- a/apps/mediaharbor.md +++ /dev/null @@ -1,7 +0,0 @@ -# MEDIAHARBOR - - Cross-platform MediaHarbor - - SITE: https://github.com/MediaHarbor/mediaharbor - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) diff --git a/apps/mediathekview b/apps/mediathekview new file mode 100644 index 000000000..df42ac9b5 --- /dev/null +++ b/apps/mediathekview @@ -0,0 +1,3 @@ +# mediathekview +Das Programm MediathekView durchsucht die Online-Mediatheken verschiedener Sender +# SITES: https://github.com/mediathekview/MediathekView \ No newline at end of file diff --git a/apps/mediathekview.md b/apps/mediathekview.md deleted file mode 100644 index b4fbb1af6..000000000 --- a/apps/mediathekview.md +++ /dev/null @@ -1,8 +0,0 @@ -# MEDIATHEKVIEW - - Das Programm MediathekView durchsucht die Online-Mediatheken verschiedener Sender - - SITE: https://github.com/mediathekview/MediathekView - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mednafen b/apps/mednafen new file mode 100644 index 000000000..58cb79aa1 --- /dev/null +++ b/apps/mednafen @@ -0,0 +1,3 @@ +# mednafen +Unofficial AppImage. Mednafen is a portable, utilizing OpenGL and SDL, argument(command-line)-driven multi-system emulator. +# SITES: https://github.com/pkgforge-dev/mednafen-appimage \ No newline at end of file diff --git a/apps/mednafen.md b/apps/mednafen.md deleted file mode 100644 index f0d05f27d..000000000 --- a/apps/mednafen.md +++ /dev/null @@ -1,8 +0,0 @@ -# MEDNAFEN - - Unofficial AppImage. Mednafen is a portable, utilizing OpenGL and SDL, argument(command-line)-driven multi-system emulator. - - SITE: https://github.com/pkgforge-dev/mednafen-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/megaglest b/apps/megaglest new file mode 100644 index 000000000..3e67bac39 --- /dev/null +++ b/apps/megaglest @@ -0,0 +1,6 @@ +# megaglest +MegaGlest real-time strategy game engine (cross-platform, 3-d). + + MegaGlest is an entertaining free (freeware and free software) and open source cross-platform 3D real-time strategy (RTS) game, where you control the armies of one of seven different factions: Tech, Magic, Egypt, Indians, Norsemen, Persian or Romans. The game is setup in one of 17 naturally looking settings, which -like the unit models- are crafted with great appreciation for detail. A lot of additional game data can be downloaded from within the game at no cost. +# SITES: https://megaglest.org +# SOURCES: https://github.com/MegaGlest/megaglest-source \ No newline at end of file diff --git a/apps/megaglest.md b/apps/megaglest.md deleted file mode 100644 index 51fd35dfe..000000000 --- a/apps/megaglest.md +++ /dev/null @@ -1,16 +0,0 @@ -# MEGAGLEST - - MegaGlest real-time strategy game engine (cross-platform, 3-d). - - MegaGlest is an entertaining free (freeware and free software) and open source cross-platform 3D real-time strategy (RTS) game, where you control the armies of one of seven different factions: Tech, Magic, Egypt, Indians, Norsemen, Persian or Romans. The game is setup in one of 17 naturally looking settings, which -like the unit models- are crafted with great appreciation for detail. A lot of additional game data can be downloaded from within the game at no cost. - - | ![picture1](https://megaglest.org/media/pics/s04.jpg) | ![picture2](https://megaglest.org/media/pics/a2.jpg) | - | - | - | - | ![picture3](https://megaglest.org/media/pics/a1.jpg) | ![picture4](https://megaglest.org/media/pics/s02.jpg) | - - SITE: https://megaglest.org - - SOURCE: https://github.com/MegaGlest/megaglest-source - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/megaman64recomp b/apps/megaman64recomp new file mode 100644 index 000000000..de92501af --- /dev/null +++ b/apps/megaman64recomp @@ -0,0 +1,4 @@ +# megaman64recomp + Unofficial AppImage of Mega Man 64 Recompiled. +# SITES: https://github.com/pkgforge-dev/megaman64recomp-appimage +# SOURCES: https://github.com/pkgforge-dev/megaman64recomp-appimage \ No newline at end of file diff --git a/apps/megaman64recomp.md b/apps/megaman64recomp.md deleted file mode 100644 index c238f9887..000000000 --- a/apps/megaman64recomp.md +++ /dev/null @@ -1,8 +0,0 @@ -# MEGAMAN64RECOMP - - Unofficial AppImage of Mega Man 64 Recompiled. - - SITE: https://github.com/pkgforge-dev/megaman64recomp-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/meganimus b/apps/meganimus new file mode 100644 index 000000000..45194758c --- /dev/null +++ b/apps/meganimus @@ -0,0 +1,3 @@ +# meganimus +A launcher for native and emulator games. +# SITES: https://github.com/Kyuyrii/Meganimus \ No newline at end of file diff --git a/apps/meganimus.md b/apps/meganimus.md deleted file mode 100644 index a3fb89ade..000000000 --- a/apps/meganimus.md +++ /dev/null @@ -1,8 +0,0 @@ -# MEGANIMUS - - A launcher for native and emulator games. - - SITE: https://github.com/Kyuyrii/Meganimus - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/mellowplayer b/apps/mellowplayer new file mode 100644 index 000000000..c9192a136 --- /dev/null +++ b/apps/mellowplayer @@ -0,0 +1,4 @@ +# mellowplayer +Cloud music integration for your desktop. +# SITES: : https://colinduquesnoy.gitlab.io/MellowPlayer +# SOURCES: https://github.com/ColinDuquesnoy/MellowPlayer \ No newline at end of file diff --git a/apps/mellowplayer.md b/apps/mellowplayer.md deleted file mode 100644 index 49361cd52..000000000 --- a/apps/mellowplayer.md +++ /dev/null @@ -1,10 +0,0 @@ -# MELLOWPLAYER - - Cloud music integration for your desktop. - - SITE: : https://colinduquesnoy.gitlab.io/MellowPlayer - - SOURCE: https://github.com/ColinDuquesnoy/MellowPlayer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/melodie b/apps/melodie new file mode 100644 index 000000000..014799f8a --- /dev/null +++ b/apps/melodie @@ -0,0 +1,3 @@ +# melodie +Melodie is a portable, simple-as-pie music player. +# SITES: https://github.com/feugy/melodie \ No newline at end of file diff --git a/apps/melodie.md b/apps/melodie.md deleted file mode 100644 index f8deadbfa..000000000 --- a/apps/melodie.md +++ /dev/null @@ -1,8 +0,0 @@ -# MELODIE - - Melodie is a portable, simple-as-pie music player. - - SITE: https://github.com/feugy/melodie - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/melonds b/apps/melonds new file mode 100644 index 000000000..345f645b4 --- /dev/null +++ b/apps/melonds @@ -0,0 +1,3 @@ +# melonds +DS emulator, sorta. +# SITES: https://github.com/melonDS-emu/melonDS \ No newline at end of file diff --git a/apps/melonds-enhanced b/apps/melonds-enhanced new file mode 100644 index 000000000..91e3afb43 --- /dev/null +++ b/apps/melonds-enhanced @@ -0,0 +1,3 @@ +# melonds-enhanced +Unofficial, AppImage of melonDS which is able to work on any linux distro. +# SITES: https://github.com/pkgforge-dev/melonDS-AppImage-Enhanced \ No newline at end of file diff --git a/apps/melonds-enhanced.md b/apps/melonds-enhanced.md deleted file mode 100644 index 2b7cca10c..000000000 --- a/apps/melonds-enhanced.md +++ /dev/null @@ -1,8 +0,0 @@ -# MELONDS-ENHANCED - - Unofficial, AppImage of melonDS which is able to work on any linux distro. - - SITE: https://github.com/pkgforge-dev/melonDS-AppImage-Enhanced - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/melonds.md b/apps/melonds.md deleted file mode 100644 index feab9a585..000000000 --- a/apps/melonds.md +++ /dev/null @@ -1,8 +0,0 @@ -# MELONDS - - DS emulator, sorta. - - SITE: https://github.com/melonDS-emu/melonDS - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/melonmix b/apps/melonmix new file mode 100644 index 000000000..2f9828e7e --- /dev/null +++ b/apps/melonmix @@ -0,0 +1,3 @@ +# melonmix +KH Melon Mix (DS Emulator) DS emulator, sorta DS emulator, sorta. +# SITES: https://github.com/vitor251093/KHMelonMix \ No newline at end of file diff --git a/apps/melonmix.md b/apps/melonmix.md deleted file mode 100644 index bdd14882a..000000000 --- a/apps/melonmix.md +++ /dev/null @@ -1,8 +0,0 @@ -# MELONMIX - - KH Melon Mix (DS Emulator) DS emulator, sorta DS emulator, sorta. - - SITE: https://github.com/vitor251093/KHMelonMix - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/memento b/apps/memento new file mode 100644 index 000000000..5d44e01d4 --- /dev/null +++ b/apps/memento @@ -0,0 +1,3 @@ +# memento +A video player for studying Japanese +# SITES: https://github.com/ripose-jp/Memento \ No newline at end of file diff --git a/apps/memento.md b/apps/memento.md deleted file mode 100644 index c32b87e89..000000000 --- a/apps/memento.md +++ /dev/null @@ -1,8 +0,0 @@ -# MEMENTO - - A video player for studying Japanese - - SITE: https://github.com/ripose-jp/Memento - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/memocast b/apps/memocast new file mode 100644 index 000000000..466fe8fd0 --- /dev/null +++ b/apps/memocast @@ -0,0 +1,3 @@ +# memocast +Yet another elegant Wiz Note Client, which was built with Quasar UI Framework and based on Electron. +# SITES: https://tanknee.github.io/Memocast \ No newline at end of file diff --git a/apps/memocast.md b/apps/memocast.md deleted file mode 100644 index 5ab786b29..000000000 --- a/apps/memocast.md +++ /dev/null @@ -1,8 +0,0 @@ -# MEMOCAST - - Yet another elegant Wiz Note Client, which was built with Quasar UI Framework and based on Electron. - - SITE: https://tanknee.github.io/Memocast - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/memospot b/apps/memospot new file mode 100644 index 000000000..c4963c017 --- /dev/null +++ b/apps/memospot @@ -0,0 +1,3 @@ +# memospot +Memospot is a self-contained desktop version of Memos -a privacy-first, lightweight note-taking service. +# SITES: https://github.com/memospot/memospot \ No newline at end of file diff --git a/apps/memospot.md b/apps/memospot.md deleted file mode 100644 index 73a65e04b..000000000 --- a/apps/memospot.md +++ /dev/null @@ -1,8 +0,0 @@ -# MEMOSPOT - - Memospot is a self-contained desktop version of Memos -a privacy-first, lightweight note-taking service. - - SITE: https://github.com/memospot/memospot - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/memoto b/apps/memoto new file mode 100644 index 000000000..93cf7b211 --- /dev/null +++ b/apps/memoto @@ -0,0 +1,3 @@ +# memoto +DevOps oriented modeling tool +# SITES: https://github.com/RaphaelMartin83/MeMoTo \ No newline at end of file diff --git a/apps/memoto.md b/apps/memoto.md deleted file mode 100644 index ce5f3f547..000000000 --- a/apps/memoto.md +++ /dev/null @@ -1,8 +0,0 @@ -# MEMOTO - - DevOps oriented modeling tool - - SITE: https://github.com/RaphaelMartin83/MeMoTo - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mendeley b/apps/mendeley new file mode 100644 index 000000000..eedf4e60b --- /dev/null +++ b/apps/mendeley @@ -0,0 +1,3 @@ +# mendeley +Search over 100 million cross-publisher articles and counting. +# SITES: https://www.mendeley.com \ No newline at end of file diff --git a/apps/mendeley.md b/apps/mendeley.md deleted file mode 100644 index 7a0872865..000000000 --- a/apps/mendeley.md +++ /dev/null @@ -1,8 +0,0 @@ -# MENDELEY - - Search over 100 million cross-publisher articles and counting. - - SITE: https://www.mendeley.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/menyoki b/apps/menyoki new file mode 100644 index 000000000..c55dbf2e4 --- /dev/null +++ b/apps/menyoki @@ -0,0 +1,3 @@ +# menyoki +Screen{shot,cast} and perform ImageOps on the command line 🌱 🏞️ +# SITES: https://github.com/orhun/menyoki \ No newline at end of file diff --git a/apps/menyoki.md b/apps/menyoki.md deleted file mode 100644 index 379428714..000000000 --- a/apps/menyoki.md +++ /dev/null @@ -1,8 +0,0 @@ -# MENYOKI - - Screen{shot,cast} and perform ImageOps on the command line 🌱 🏞️ - - SITE: https://github.com/orhun/menyoki - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/meow-sql b/apps/meow-sql new file mode 100644 index 000000000..d1984a3e9 --- /dev/null +++ b/apps/meow-sql @@ -0,0 +1,3 @@ +# meow-sql +MeowSQL is an attempt to port HeidiSQL to C++/Qt (Linux/Windows) +# SITES: https://github.com/ragnar-lodbrok/meow-sql \ No newline at end of file diff --git a/apps/meow-sql.md b/apps/meow-sql.md deleted file mode 100644 index 6e51c7d5e..000000000 --- a/apps/meow-sql.md +++ /dev/null @@ -1,8 +0,0 @@ -# MEOW-SQL - - MeowSQL is an attempt to port HeidiSQL to C++/Qt (Linux/Windows) - - SITE: https://github.com/ragnar-lodbrok/meow-sql - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mercury b/apps/mercury new file mode 100644 index 000000000..9831f40a2 --- /dev/null +++ b/apps/mercury @@ -0,0 +1,3 @@ +# mercury +Firefox fork with compiler optimizations and patches from Librewolf, Waterfox, and GNU IceCat. +# SITES: https://github.com/Alex313031/Mercury \ No newline at end of file diff --git a/apps/mercury.md b/apps/mercury.md deleted file mode 100644 index 8a6abfbac..000000000 --- a/apps/mercury.md +++ /dev/null @@ -1,8 +0,0 @@ -# MERCURY - - Firefox fork with compiler optimizations and patches from Librewolf, Waterfox, and GNU IceCat. - - SITE: https://github.com/Alex313031/Mercury - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mesa b/apps/mesa new file mode 100644 index 000000000..5cbd5e3f6 --- /dev/null +++ b/apps/mesa @@ -0,0 +1,4 @@ +# mesa + Experimental AppImage that lets you use the latest MESA with any binary on your system. +# SITES: https://github.com/pkgforge-dev/mesa-appimage +# SOURCES: https://github.com/pkgforge-dev/mesa-appimage \ No newline at end of file diff --git a/apps/mesa.md b/apps/mesa.md deleted file mode 100644 index 7aa3da64d..000000000 --- a/apps/mesa.md +++ /dev/null @@ -1,8 +0,0 @@ -# MESA - - Experimental AppImage that lets you use the latest MESA with any binary on your system. - - SITE: https://github.com/pkgforge-dev/mesa-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/meshlab b/apps/meshlab new file mode 100644 index 000000000..3f64e0fc6 --- /dev/null +++ b/apps/meshlab @@ -0,0 +1,3 @@ +# meshlab +Processor and editor of large 3D triangular meshes +# SITES: https://www.meshlab.net/ \ No newline at end of file diff --git a/apps/meshlab.md b/apps/meshlab.md deleted file mode 100644 index 4e157ac34..000000000 --- a/apps/meshlab.md +++ /dev/null @@ -1,8 +0,0 @@ -# MESHLAB - - Processor and editor of large 3D triangular meshes - - SITE: https://www.meshlab.net/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/meshmill b/apps/meshmill new file mode 100644 index 000000000..cecfa836a --- /dev/null +++ b/apps/meshmill @@ -0,0 +1,3 @@ +# meshmill +The world's greatest open source 3D CAM software (maybe one day). +# SITES: https://github.com/jes/meshmill \ No newline at end of file diff --git a/apps/meshmill.md b/apps/meshmill.md deleted file mode 100644 index 8751399e5..000000000 --- a/apps/meshmill.md +++ /dev/null @@ -1,8 +0,0 @@ -# MESHMILL - - The world's greatest open source 3D CAM software (maybe one day). - - SITE: https://github.com/jes/meshmill - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/meta-grabber b/apps/meta-grabber new file mode 100644 index 000000000..8e4bc3efa --- /dev/null +++ b/apps/meta-grabber @@ -0,0 +1,3 @@ +# meta-grabber +A tool to grab meta data for tv shows and rename files on your hard disk. +# SITES: https://github.com/andreaswilli/meta-grabber \ No newline at end of file diff --git a/apps/meta-grabber.md b/apps/meta-grabber.md deleted file mode 100644 index 30d82488d..000000000 --- a/apps/meta-grabber.md +++ /dev/null @@ -1,7 +0,0 @@ -# META-GRABBER - - A tool to grab meta data for tv shows and rename files on your hard disk. - - SITE: https://github.com/andreaswilli/meta-grabber - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mgba b/apps/mgba new file mode 100644 index 000000000..b9ada5293 --- /dev/null +++ b/apps/mgba @@ -0,0 +1,3 @@ +# mgba +Game Boy Advance Emulator. +# SITES: https://github.com/mgba-emu/mgba \ No newline at end of file diff --git a/apps/mgba-enhanced b/apps/mgba-enhanced new file mode 100644 index 000000000..b0215f401 --- /dev/null +++ b/apps/mgba-enhanced @@ -0,0 +1,3 @@ +# mgba-enhanced +Unofficial, Game Boy Advance Emulator. +# SITES: https://github.com/pkgforge-dev/mGBA-AppImage-Enhanced \ No newline at end of file diff --git a/apps/mgba-enhanced.md b/apps/mgba-enhanced.md deleted file mode 100644 index 39f1abd8d..000000000 --- a/apps/mgba-enhanced.md +++ /dev/null @@ -1,8 +0,0 @@ -# MGBA-ENHANCED - - Unofficial, Game Boy Advance Emulator. - - SITE: https://github.com/pkgforge-dev/mGBA-AppImage-Enhanced - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/mgba.md b/apps/mgba.md deleted file mode 100644 index e3e24ae87..000000000 --- a/apps/mgba.md +++ /dev/null @@ -1,8 +0,0 @@ -# MGBA - - Game Boy Advance Emulator. - - SITE: https://github.com/mgba-emu/mgba - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/micropad b/apps/micropad new file mode 100644 index 000000000..910ff7d31 --- /dev/null +++ b/apps/micropad @@ -0,0 +1,3 @@ +# micropad +µPad is an open digital note taking app. +# SITES: https://github.com/MicroPad/Electron \ No newline at end of file diff --git a/apps/micropad.md b/apps/micropad.md deleted file mode 100644 index 17b0cb882..000000000 --- a/apps/micropad.md +++ /dev/null @@ -1,8 +0,0 @@ -# MICROPAD - - µPad is an open digital note taking app. - - SITE: https://github.com/MicroPad/Electron - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/microsoft-edge b/apps/microsoft-edge new file mode 100644 index 000000000..bb4655c7f --- /dev/null +++ b/apps/microsoft-edge @@ -0,0 +1,4 @@ +# microsoft-edge +Microsoft Edge (Stable) - A browser that combines a minimal design with sophisticated technology to make the web faster, safer, and easier. +# SITES: https://www.microsoft.com +# SOURCES: https://packages.microsoft.com \ No newline at end of file diff --git a/apps/microsoft-edge-beta b/apps/microsoft-edge-beta new file mode 100644 index 000000000..4bf395c6f --- /dev/null +++ b/apps/microsoft-edge-beta @@ -0,0 +1,4 @@ +# microsoft-edge-beta +Microsoft Edge (Beta Edition) A browser that combines a minimal design with sophisticated technology to make the web faster, safer, and easier. +# SITES: https://www.microsoft.com +# SOURCES: https://packages.microsoft.com \ No newline at end of file diff --git a/apps/microsoft-edge-beta.md b/apps/microsoft-edge-beta.md deleted file mode 100644 index b2de239b9..000000000 --- a/apps/microsoft-edge-beta.md +++ /dev/null @@ -1,10 +0,0 @@ -# MICROSOFT-EDGE-BETA - - Microsoft Edge (Beta Edition) A browser that combines a minimal design with sophisticated technology to make the web faster, safer, and easier. - - SITE: https://www.microsoft.com - - SOURCE: https://packages.microsoft.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/microsoft-edge-dev b/apps/microsoft-edge-dev new file mode 100644 index 000000000..2028fc836 --- /dev/null +++ b/apps/microsoft-edge-dev @@ -0,0 +1,4 @@ +# microsoft-edge-dev +Microsoft Edge (Development Edition) A browser that combines a minimal design with sophisticated technology to make the web faster, safer, and easier. +# SITES: https://www.microsoft.com +# SOURCES: https://packages.microsoft.com \ No newline at end of file diff --git a/apps/microsoft-edge-dev.md b/apps/microsoft-edge-dev.md deleted file mode 100644 index 87073c263..000000000 --- a/apps/microsoft-edge-dev.md +++ /dev/null @@ -1,10 +0,0 @@ -# MICROSOFT-EDGE-DEV - - Microsoft Edge (Development Edition) A browser that combines a minimal design with sophisticated technology to make the web faster, safer, and easier. - - SITE: https://www.microsoft.com - - SOURCE: https://packages.microsoft.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/microsoft-edge.md b/apps/microsoft-edge.md deleted file mode 100644 index c367ce00c..000000000 --- a/apps/microsoft-edge.md +++ /dev/null @@ -1,10 +0,0 @@ -# MICROSOFT-EDGE - - Microsoft Edge (Stable) - A browser that combines a minimal design with sophisticated technology to make the web faster, safer, and easier. - - SITE: https://www.microsoft.com - - SOURCE: https://packages.microsoft.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/midori b/apps/midori new file mode 100644 index 000000000..036b3b2ab --- /dev/null +++ b/apps/midori @@ -0,0 +1,6 @@ +# midori +Surf lightly, quickly and safely with Midori Web Browser. + + Midori initially uses the Gecko/Firefox code under the Floorp Browser project. Both Midori and Floorp projects are collaborating to improve and offer an exceptional user experience, with significant differences. Later, as updates are released, the original code will be differentiated. But both projects will continue to collaborate. +# SITES: https://astian.org +# SOURCES: https://github.com/goastian/midori-desktop \ No newline at end of file diff --git a/apps/midori.md b/apps/midori.md deleted file mode 100644 index a01a2c640..000000000 --- a/apps/midori.md +++ /dev/null @@ -1,12 +0,0 @@ -# MIDORI - - Surf lightly, quickly and safely with Midori Web Browser. - - Midori initially uses the Gecko/Firefox code under the Floorp Browser project. Both Midori and Floorp projects are collaborating to improve and offer an exceptional user experience, with significant differences. Later, as updates are released, the original code will be differentiated. But both projects will continue to collaborate. - - SITE: https://astian.org - - SOURCE: https://github.com/goastian/midori-desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/miesimulatorgui b/apps/miesimulatorgui new file mode 100644 index 000000000..1aa27a9c0 --- /dev/null +++ b/apps/miesimulatorgui @@ -0,0 +1,3 @@ +# miesimulatorgui +MieSimulatorGUI by Virtual Photonics +# SITES: https://github.com/VirtualPhotonics/MieSimulatorGUI \ No newline at end of file diff --git a/apps/miesimulatorgui.md b/apps/miesimulatorgui.md deleted file mode 100644 index f60467043..000000000 --- a/apps/miesimulatorgui.md +++ /dev/null @@ -1,8 +0,0 @@ -# MIESIMULATORGUI - - MieSimulatorGUI by Virtual Photonics - - SITE: https://github.com/VirtualPhotonics/MieSimulatorGUI - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mightymike b/apps/mightymike new file mode 100644 index 000000000..ecdc18466 --- /dev/null +++ b/apps/mightymike @@ -0,0 +1,3 @@ +# mightymike +Pangea Software's Mighty Mike (Power Pete) for modern systems. +# SITES: https://github.com/jorio/MightyMike \ No newline at end of file diff --git a/apps/mightymike.md b/apps/mightymike.md deleted file mode 100644 index d22339899..000000000 --- a/apps/mightymike.md +++ /dev/null @@ -1,8 +0,0 @@ -# MIGHTYMIKE - - Pangea Software's Mighty Mike (Power Pete) for modern systems. - - SITE: https://github.com/jorio/MightyMike - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/migu b/apps/migu new file mode 100644 index 000000000..76fcc1a35 --- /dev/null +++ b/apps/migu @@ -0,0 +1,3 @@ +# migu +Stream anime torrents, real-time with no waiting for downloads +# SITES: https://github.com/NoCrypt/migu \ No newline at end of file diff --git a/apps/migu.md b/apps/migu.md deleted file mode 100644 index b7539e63f..000000000 --- a/apps/migu.md +++ /dev/null @@ -1,8 +0,0 @@ -# MIGU - - Stream anime torrents, real-time with no waiting for downloads - - SITE: https://github.com/NoCrypt/migu - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/milkytracker b/apps/milkytracker new file mode 100644 index 000000000..5b2dee7c5 --- /dev/null +++ b/apps/milkytracker @@ -0,0 +1,3 @@ +# milkytracker +An FT2 compatible music tracker +# SITES: https://github.com/milkytracker/MilkyTracker \ No newline at end of file diff --git a/apps/milkytracker.md b/apps/milkytracker.md deleted file mode 100644 index 6bdf0ca79..000000000 --- a/apps/milkytracker.md +++ /dev/null @@ -1,8 +0,0 @@ -# MILKYTRACKER - - An FT2 compatible music tracker - - SITE: https://github.com/milkytracker/MilkyTracker - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mindmapp b/apps/mindmapp new file mode 100644 index 000000000..952a27034 --- /dev/null +++ b/apps/mindmapp @@ -0,0 +1,3 @@ +# mindmapp +Electron application to draw mind maps +# SITES: https://github.com/Mindmapp/mindmapp \ No newline at end of file diff --git a/apps/mindmapp.md b/apps/mindmapp.md deleted file mode 100644 index 296a5023a..000000000 --- a/apps/mindmapp.md +++ /dev/null @@ -1,8 +0,0 @@ -# MINDMAPP - - Electron application to draw mind maps - - SITE: https://github.com/Mindmapp/mindmapp - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mine-craft.io b/apps/mine-craft.io new file mode 100644 index 000000000..c8ca178f6 --- /dev/null +++ b/apps/mine-craft.io @@ -0,0 +1,3 @@ +# mine-craft.io +Minecraft and even more! +# SITES: https://mine-craft.io \ No newline at end of file diff --git a/apps/mine-craft.io.md b/apps/mine-craft.io.md deleted file mode 100644 index c5abd8bbc..000000000 --- a/apps/mine-craft.io.md +++ /dev/null @@ -1,8 +0,0 @@ -# MINE-CRAFT.IO - - Minecraft and even more! - - SITE: https://mine-craft.io - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/minecraft-launcher b/apps/minecraft-launcher new file mode 100644 index 000000000..29b335165 --- /dev/null +++ b/apps/minecraft-launcher @@ -0,0 +1,3 @@ +# minecraft-launcher +Minecraft Launcher is the game downloader and launcher for Minecraft. +# SITES: https://www.minecraft.net \ No newline at end of file diff --git a/apps/minecraft-launcher.md b/apps/minecraft-launcher.md deleted file mode 100644 index 2790fb95d..000000000 --- a/apps/minecraft-launcher.md +++ /dev/null @@ -1,8 +0,0 @@ -# MINECRAFT-LAUNCHER - - Minecraft Launcher is the game downloader and launcher for Minecraft. - - SITE: https://www.minecraft.net - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/minetime b/apps/minetime new file mode 100644 index 000000000..aac874da4 --- /dev/null +++ b/apps/minetime @@ -0,0 +1,3 @@ +# minetime +Smart scheduling assistant +# SITES: https://github.com/marcoancona/MineTime \ No newline at end of file diff --git a/apps/minetime.md b/apps/minetime.md deleted file mode 100644 index 389d9eedd..000000000 --- a/apps/minetime.md +++ /dev/null @@ -1,8 +0,0 @@ -# MINETIME - - Smart scheduling assistant - - SITE: https://github.com/marcoancona/MineTime - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mini-diary b/apps/mini-diary new file mode 100644 index 000000000..0b231291f --- /dev/null +++ b/apps/mini-diary @@ -0,0 +1,3 @@ +# mini-diary +Simple and secure journal app +# SITES: https://github.com/samuelmeuli/mini-diary \ No newline at end of file diff --git a/apps/mini-diary.md b/apps/mini-diary.md deleted file mode 100644 index ce5f5fb52..000000000 --- a/apps/mini-diary.md +++ /dev/null @@ -1,8 +0,0 @@ -# MINI-DIARY - - Simple and secure journal app - - SITE: https://github.com/samuelmeuli/mini-diary - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mini-qml b/apps/mini-qml new file mode 100644 index 000000000..8925ad21e --- /dev/null +++ b/apps/mini-qml @@ -0,0 +1,3 @@ +# mini-qml +Minimal Qt deployment for Linux, Windows, macOS and WebAssembly. +# SITES: https://github.com/patrickelectric/mini-qml \ No newline at end of file diff --git a/apps/mini-qml.md b/apps/mini-qml.md deleted file mode 100644 index ef3bfb39c..000000000 --- a/apps/mini-qml.md +++ /dev/null @@ -1,8 +0,0 @@ -# MINI-QML - - Minimal Qt deployment for Linux, Windows, macOS and WebAssembly. - - SITE: https://github.com/patrickelectric/mini-qml - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mini-vmac b/apps/mini-vmac new file mode 100644 index 000000000..b86c056a0 --- /dev/null +++ b/apps/mini-vmac @@ -0,0 +1,3 @@ +# mini-vmac +A miniature Macintosh 68K emulator. +# SITES: https://github.com/pkgforge-dev/Mini-vMac-AppImage \ No newline at end of file diff --git a/apps/mini-vmac.md b/apps/mini-vmac.md deleted file mode 100644 index 49c6617e2..000000000 --- a/apps/mini-vmac.md +++ /dev/null @@ -1,8 +0,0 @@ -# MINI-VMAC - - A miniature Macintosh 68K emulator. - - SITE: https://github.com/pkgforge-dev/Mini-vMac-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/minififa b/apps/minififa new file mode 100644 index 000000000..481c36c33 --- /dev/null +++ b/apps/minififa @@ -0,0 +1,3 @@ +# minififa +OpenGL-powered third-person football (soccer) game. +# SITES: https://github.com/theoden8/mini-fifa \ No newline at end of file diff --git a/apps/minififa.md b/apps/minififa.md deleted file mode 100644 index ffe6c3ae9..000000000 --- a/apps/minififa.md +++ /dev/null @@ -1,8 +0,0 @@ -# MINIFIFA - - OpenGL-powered third-person football (soccer) game. - - SITE: https://github.com/theoden8/mini-fifa - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/minimal-podcasts-player b/apps/minimal-podcasts-player new file mode 100644 index 000000000..ca6519e46 --- /dev/null +++ b/apps/minimal-podcasts-player @@ -0,0 +1,3 @@ +# minimal-podcasts-player +Subscribe, listen and (in the future) download your favorite podcasts, quickly and easily. +# SITES: https://github.com/son-link/minimal-podcasts-player \ No newline at end of file diff --git a/apps/minimal-podcasts-player.md b/apps/minimal-podcasts-player.md deleted file mode 100644 index 9e9b31732..000000000 --- a/apps/minimal-podcasts-player.md +++ /dev/null @@ -1,8 +0,0 @@ -# MINIMAL-PODCASTS-PLAYER - - Subscribe, listen and (in the future) download your favorite podcasts, quickly and easily. - - SITE: https://github.com/son-link/minimal-podcasts-player - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/minions b/apps/minions new file mode 100644 index 000000000..60b9e0c23 --- /dev/null +++ b/apps/minions @@ -0,0 +1,3 @@ +# minions +Minions is a productive tool for Linux, inspired by LaunchBar in macOS +# SITES: https://github.com/blahgeek/Minions \ No newline at end of file diff --git a/apps/minions.md b/apps/minions.md deleted file mode 100644 index fe8375225..000000000 --- a/apps/minions.md +++ /dev/null @@ -1,8 +0,0 @@ -# MINIONS - - Minions is a productive tool for Linux, inspired by LaunchBar in macOS - - SITE: https://github.com/blahgeek/Minions - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/miniter b/apps/miniter new file mode 100644 index 000000000..9d6e089b3 --- /dev/null +++ b/apps/miniter @@ -0,0 +1,4 @@ +# miniter + Rust based non-linear video editor for basic tasks. +# SITES: https://github.com/mlm-games/Miniter +# SOURCES: https://github.com/mlm-games/Miniter \ No newline at end of file diff --git a/apps/miniter.md b/apps/miniter.md deleted file mode 100644 index 9c13420e1..000000000 --- a/apps/miniter.md +++ /dev/null @@ -1,8 +0,0 @@ -# MINITER - - Rust based non-linear video editor for basic tasks. - - SITE: https://github.com/mlm-games/Miniter - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/minizinc-ide b/apps/minizinc-ide new file mode 100644 index 000000000..c5c3761cd --- /dev/null +++ b/apps/minizinc-ide @@ -0,0 +1,3 @@ +# minizinc-ide +MiniZinc is a free and open-source constraint modeling language +# SITES: https://github.com/MiniZinc/MiniZincIDE \ No newline at end of file diff --git a/apps/minizinc-ide.md b/apps/minizinc-ide.md deleted file mode 100644 index 6f90ae9fa..000000000 --- a/apps/minizinc-ide.md +++ /dev/null @@ -1,8 +0,0 @@ -# MINIZINC-IDE - - MiniZinc is a free and open-source constraint modeling language - - SITE: https://github.com/MiniZinc/MiniZincIDE - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mira-backup b/apps/mira-backup new file mode 100644 index 000000000..cf992a664 --- /dev/null +++ b/apps/mira-backup @@ -0,0 +1,3 @@ +# mira-backup +Mira Auto Database Backup app. +# SITES: https://github.com/myazarc/mira-backup \ No newline at end of file diff --git a/apps/mira-backup.md b/apps/mira-backup.md deleted file mode 100644 index 221b21efa..000000000 --- a/apps/mira-backup.md +++ /dev/null @@ -1,7 +0,0 @@ -# MIRA-BACKUP - - Mira Auto Database Backup app. - - SITE: https://github.com/myazarc/mira-backup - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mirage b/apps/mirage new file mode 100644 index 000000000..f3f9af83e --- /dev/null +++ b/apps/mirage @@ -0,0 +1,3 @@ +# mirage +A fancy, customizable, keyboard-operable Qt/QML & Python Matrix chat client for encrypted and decentralized communication. +# SITES: https://github.com/mirukana/mirage \ No newline at end of file diff --git a/apps/mirage.md b/apps/mirage.md deleted file mode 100644 index 83e05a428..000000000 --- a/apps/mirage.md +++ /dev/null @@ -1,8 +0,0 @@ -# MIRAGE - - A fancy, customizable, keyboard-operable Qt/QML & Python Matrix chat client for encrypted and decentralized communication. - - SITE: https://github.com/mirukana/mirage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mission-center b/apps/mission-center new file mode 100644 index 000000000..191c69f16 --- /dev/null +++ b/apps/mission-center @@ -0,0 +1,19 @@ +# mission-center +Monitor your CPU, Memory, Disk, Network and GPU usage. + + Features: + + - Monitor overall or per-thread CPU usage + - See system process, thread, and handle count, uptime, clock speed (base and current), cache sizes + - Monitor RAM and Swap usage + - See a breakdown how the memory is being used by the system + - Monitor Disk utilization and transfer rates + - Monitor network utilization and transfer speeds + - See network interface information such as network card name, connection type (Wi-Fi or Ethernet), wireless speeds and frequency, hardware address, IP address + - Monitor overall GPU usage, video encoder and decoder usage, memory usage and power consumption, powered by the popular NVTOP project + - See a breakdown of resource usage by app and process + - Supports a minified summary view for simple monitoring + - Use OpenGL rendering for all the graphs in an effort to reduce CPU and overall resource usage + - Uses GTK4 and Libadwaita + - Written in Rust +# SITES: https://missioncenter.io \ No newline at end of file diff --git a/apps/mission-center.md b/apps/mission-center.md deleted file mode 100644 index 756c76427..000000000 --- a/apps/mission-center.md +++ /dev/null @@ -1,27 +0,0 @@ -# MISSION-CENTER - - Monitor your CPU, Memory, Disk, Network and GPU usage. - - Features: - - - Monitor overall or per-thread CPU usage - - See system process, thread, and handle count, uptime, clock speed (base and current), cache sizes - - Monitor RAM and Swap usage - - See a breakdown how the memory is being used by the system - - Monitor Disk utilization and transfer rates - - Monitor network utilization and transfer speeds - - See network interface information such as network card name, connection type (Wi-Fi or Ethernet), wireless speeds and frequency, hardware address, IP address - - Monitor overall GPU usage, video encoder and decoder usage, memory usage and power consumption, powered by the popular NVTOP project - - See a breakdown of resource usage by app and process - - Supports a minified summary view for simple monitoring - - Use OpenGL rendering for all the graphs in an effort to reduce CPU and overall resource usage - - Uses GTK4 and Libadwaita - - Written in Rust - - | ![Screenshot](https://missioncenter.io/img/0001-cpu-multi.png) | ![Screenshot](https://missioncenter.io/img/0009-apps.png) | ![Screenshot](https://missioncenter.io/img/0013-gpu-nvidia-dark.png) | -| - | - | - | - - SITE: https://missioncenter.io - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/miteiru b/apps/miteiru new file mode 100644 index 000000000..9f97ac72c --- /dev/null +++ b/apps/miteiru @@ -0,0 +1,3 @@ +# miteiru +An open source Electron video player to learn Japanese. It has main language dictionary and tokenizer (morphological analyzer), heavily based on External software MeCab. +# SITES: https://github.com/hockyy/miteiru \ No newline at end of file diff --git a/apps/miteiru.md b/apps/miteiru.md deleted file mode 100644 index df004dc9e..000000000 --- a/apps/miteiru.md +++ /dev/null @@ -1,8 +0,0 @@ -# MITEIRU - - An open source Electron video player to learn Japanese. It has main language dictionary and tokenizer (morphological analyzer), heavily based on External software MeCab. - - SITE: https://github.com/hockyy/miteiru - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mixxx b/apps/mixxx new file mode 100644 index 000000000..fa16df6bf --- /dev/null +++ b/apps/mixxx @@ -0,0 +1,3 @@ +# mixxx +Unofficial, open source software for digital DJing. +# SITES: https://github.com/pkgforge-dev/Mixxx-AppImage \ No newline at end of file diff --git a/apps/mixxx.md b/apps/mixxx.md deleted file mode 100644 index 25bdd4ee1..000000000 --- a/apps/mixxx.md +++ /dev/null @@ -1,8 +0,0 @@ -# MIXXX - - Unofficial, open source software for digital DJing. - - SITE: https://github.com/pkgforge-dev/Mixxx-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/mjml-app b/apps/mjml-app new file mode 100644 index 000000000..ca5beb965 --- /dev/null +++ b/apps/mjml-app @@ -0,0 +1,3 @@ +# mjml-app +The desktop app for MJML. +# SITES: https://github.com/mjmlio/mjml-app \ No newline at end of file diff --git a/apps/mjml-app.md b/apps/mjml-app.md deleted file mode 100644 index f30dc876c..000000000 --- a/apps/mjml-app.md +++ /dev/null @@ -1,7 +0,0 @@ -# MJML-APP - - The desktop app for MJML. - - SITE: https://github.com/mjmlio/mjml-app - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mk b/apps/mk new file mode 100644 index 000000000..b8b628e74 --- /dev/null +++ b/apps/mk @@ -0,0 +1,3 @@ +# mk +Interactive Task Runner for Makefile. +# SITES: https://github.com/orangekame3/mk \ No newline at end of file diff --git a/apps/mk.md b/apps/mk.md deleted file mode 100644 index aa5c1ceb9..000000000 --- a/apps/mk.md +++ /dev/null @@ -1,8 +0,0 @@ -# MK - - Interactive Task Runner for Makefile. - - SITE: https://github.com/orangekame3/mk - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mkdir b/apps/mkdir new file mode 100644 index 000000000..3808f1015 --- /dev/null +++ b/apps/mkdir @@ -0,0 +1,3 @@ +# mkdir +Make directories. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/mkdir.md b/apps/mkdir.md deleted file mode 100644 index a984a89b7..000000000 --- a/apps/mkdir.md +++ /dev/null @@ -1,8 +0,0 @@ -# MKDIR - - Make directories. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/mkfifo b/apps/mkfifo new file mode 100644 index 000000000..ad62716f4 --- /dev/null +++ b/apps/mkfifo @@ -0,0 +1,4 @@ +# mkfifo + Make FIFOs (named pipes). This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/mkfifo.md b/apps/mkfifo.md deleted file mode 100644 index e2c3ff6a7..000000000 --- a/apps/mkfifo.md +++ /dev/null @@ -1,8 +0,0 @@ -# MKFIFO - - Make FIFOs (named pipes). This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/mki3dgame b/apps/mki3dgame new file mode 100644 index 000000000..42948ca6d --- /dev/null +++ b/apps/mki3dgame @@ -0,0 +1,3 @@ +# mki3dgame +A game of searching (in 3D stages). +# SITES: https://github.com/mki1967/mki3dgame \ No newline at end of file diff --git a/apps/mki3dgame.md b/apps/mki3dgame.md deleted file mode 100644 index fab4f60c3..000000000 --- a/apps/mki3dgame.md +++ /dev/null @@ -1,8 +0,0 @@ -# MKI3DGAME - - A game of searching (in 3D stages). - - SITE: https://github.com/mki1967/mki3dgame - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mknod b/apps/mknod new file mode 100644 index 000000000..fee8a9780 --- /dev/null +++ b/apps/mknod @@ -0,0 +1,4 @@ +# mknod + Make block or character special files. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/mknod.md b/apps/mknod.md deleted file mode 100644 index 8b34e4fee..000000000 --- a/apps/mknod.md +++ /dev/null @@ -1,8 +0,0 @@ -# MKNOD - - Make block or character special files. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/mktemp b/apps/mktemp new file mode 100644 index 000000000..75a7c8021 --- /dev/null +++ b/apps/mktemp @@ -0,0 +1,4 @@ +# mktemp + Create a temporary file or directory. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/mktemp.md b/apps/mktemp.md deleted file mode 100644 index efb505d94..000000000 --- a/apps/mktemp.md +++ /dev/null @@ -1,8 +0,0 @@ -# MKTEMP - - Create a temporary file or directory. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/mkvtoolnix b/apps/mkvtoolnix new file mode 100644 index 000000000..cc6628488 --- /dev/null +++ b/apps/mkvtoolnix @@ -0,0 +1,3 @@ +# mkvtoolnix +Matroska files creator and tools +# SITES: : https://mkvtoolnix.download \ No newline at end of file diff --git a/apps/mkvtoolnix.md b/apps/mkvtoolnix.md deleted file mode 100644 index 4884d7faa..000000000 --- a/apps/mkvtoolnix.md +++ /dev/null @@ -1,8 +0,0 @@ -# MKVTOOLNIX - - Matroska files creator and tools - - SITE: : https://mkvtoolnix.download - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mlv-app b/apps/mlv-app new file mode 100644 index 000000000..70b7ba9a9 --- /dev/null +++ b/apps/mlv-app @@ -0,0 +1,4 @@ +# mlv-app +Magic Lantern Video Processing Application. +# SCREENSHOTS: https://user-images.githubusercontent.com/30245296/168381368-31cf5666-ea2d-4efa-b21f-2f3a5ac456ce.png +# SITES: https://github.com/ilia3101/MLV-App \ No newline at end of file diff --git a/apps/mlv-app.md b/apps/mlv-app.md deleted file mode 100644 index b71026295..000000000 --- a/apps/mlv-app.md +++ /dev/null @@ -1,10 +0,0 @@ -# MLV-APP - - Magic Lantern Video Processing Application. - - ![](https://user-images.githubusercontent.com/30245296/168381368-31cf5666-ea2d-4efa-b21f-2f3a5ac456ce.png) - - SITE: https://github.com/ilia3101/MLV-App - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mmapper b/apps/mmapper new file mode 100644 index 000000000..26efa3de9 --- /dev/null +++ b/apps/mmapper @@ -0,0 +1,3 @@ +# mmapper +MMapper is a graphical MUD client for the game MUME (Multi-Users in Middle-earth) +# SITES: https://github.com/MUME/MMapper \ No newline at end of file diff --git a/apps/mmapper.md b/apps/mmapper.md deleted file mode 100644 index 133365872..000000000 --- a/apps/mmapper.md +++ /dev/null @@ -1,8 +0,0 @@ -# MMAPPER - - MMapper is a graphical MUD client for the game MUME (Multi-Users in Middle-earth) - - SITE: https://github.com/MUME/MMapper - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mmseqs2-search b/apps/mmseqs2-search new file mode 100644 index 000000000..e106d4775 --- /dev/null +++ b/apps/mmseqs2-search @@ -0,0 +1,4 @@ +# mmseqs2-search +MMseqs2 app to run on your workstation or servers. +# SITES: https://search.mmseqs.com/ +# SOURCES: https://github.com/soedinglab/MMseqs2 \ No newline at end of file diff --git a/apps/mmseqs2-search.md b/apps/mmseqs2-search.md deleted file mode 100644 index 0297d2c6c..000000000 --- a/apps/mmseqs2-search.md +++ /dev/null @@ -1,10 +0,0 @@ -# MMSEQS2-SEARCH - - MMseqs2 app to run on your workstation or servers. - - SITE: https://search.mmseqs.com/ - - SOURCES: https://github.com/soedinglab/MMseqs2 - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/moarperf b/apps/moarperf new file mode 100644 index 000000000..35f6a47eb --- /dev/null +++ b/apps/moarperf @@ -0,0 +1,3 @@ +# moarperf +Front-end for MoarVM's / Rakudo's profilers +# SITES: https://github.com/timo/moarperf \ No newline at end of file diff --git a/apps/moarperf.md b/apps/moarperf.md deleted file mode 100644 index cb50a2763..000000000 --- a/apps/moarperf.md +++ /dev/null @@ -1,8 +0,0 @@ -# MOARPERF - - Front-end for MoarVM's / Rakudo's profilers - - SITE: https://github.com/timo/moarperf - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mob b/apps/mob new file mode 100644 index 000000000..ffd1b7777 --- /dev/null +++ b/apps/mob @@ -0,0 +1,4 @@ +# mob +Mob - A handsome Himalayan desktop client for + Mac, Win and Linux +# SITES: https://github.com/zenghongtu/Mob \ No newline at end of file diff --git a/apps/mob.md b/apps/mob.md deleted file mode 100644 index fab23383b..000000000 --- a/apps/mob.md +++ /dev/null @@ -1,9 +0,0 @@ -# MOB - - Mob - A handsome Himalayan desktop client for - Mac, Win and Linux - - SITE: https://github.com/zenghongtu/Mob - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mochi b/apps/mochi new file mode 100644 index 000000000..6487b8791 --- /dev/null +++ b/apps/mochi @@ -0,0 +1,3 @@ +# mochi +A simple markdown-powered SRS app. +# SITES: https://mochi.cards/ \ No newline at end of file diff --git a/apps/mochi.md b/apps/mochi.md deleted file mode 100644 index 1225c636c..000000000 --- a/apps/mochi.md +++ /dev/null @@ -1,7 +0,0 @@ -# MOCHI - - A simple markdown-powered SRS app. - - SITE: https://mochi.cards/ - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mockman b/apps/mockman new file mode 100644 index 000000000..79c847c85 --- /dev/null +++ b/apps/mockman @@ -0,0 +1,3 @@ +# mockman +Manage and start the mock servers on your local platform easily. +# SITES: https://github.com/LanceGin/Mockman \ No newline at end of file diff --git a/apps/mockman.md b/apps/mockman.md deleted file mode 100644 index a4319ceee..000000000 --- a/apps/mockman.md +++ /dev/null @@ -1,8 +0,0 @@ -# MOCKMAN - - Manage and start the mock servers on your local platform easily. - - SITE: https://github.com/LanceGin/Mockman - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mockoon b/apps/mockoon new file mode 100644 index 000000000..db273a632 --- /dev/null +++ b/apps/mockoon @@ -0,0 +1,3 @@ +# mockoon +Mock servers in seconds +# SITES: https://github.com/mockoon/mockoon \ No newline at end of file diff --git a/apps/mockoon.md b/apps/mockoon.md deleted file mode 100644 index 291bd9d3a..000000000 --- a/apps/mockoon.md +++ /dev/null @@ -1,8 +0,0 @@ -# MOCKOON - - Mock servers in seconds - - SITE: https://github.com/mockoon/mockoon - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/modemu2k b/apps/modemu2k new file mode 100644 index 000000000..7b19a58da --- /dev/null +++ b/apps/modemu2k @@ -0,0 +1,4 @@ +# modemu2k + A Hayes AT-command modem emulator that bridges a serial interface to TCP/Telnet. +# SITES: https://github.com/theimpossibleastronaut/modemu2k +# SOURCES: https://github.com/theimpossibleastronaut/modemu2k \ No newline at end of file diff --git a/apps/modemu2k.md b/apps/modemu2k.md deleted file mode 100644 index 9822f85b1..000000000 --- a/apps/modemu2k.md +++ /dev/null @@ -1,8 +0,0 @@ -# MODEMU2K - - A Hayes AT-command modem emulator that bridges a serial interface to TCP/Telnet. - - SITE: https://github.com/theimpossibleastronaut/modemu2k - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/moderndeck b/apps/moderndeck new file mode 100644 index 000000000..ef08fee04 --- /dev/null +++ b/apps/moderndeck @@ -0,0 +1,3 @@ +# moderndeck +A beautiful, powerful Twitter client for desktop. +# SITES: https://github.com/dangeredwolf/ModernDeck \ No newline at end of file diff --git a/apps/moderndeck.md b/apps/moderndeck.md deleted file mode 100644 index 1d9347525..000000000 --- a/apps/moderndeck.md +++ /dev/null @@ -1,8 +0,0 @@ -# MODERNDECK - - A beautiful, powerful Twitter client for desktop. - - SITE: https://github.com/dangeredwolf/ModernDeck - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/modrinth b/apps/modrinth new file mode 100644 index 000000000..4e6798258 --- /dev/null +++ b/apps/modrinth @@ -0,0 +1,3 @@ +# modrinth +The Modrinth App is a unique, open source launcher that allows you to play your favorite mods, and keep them up to date, all in one neat little package. +# SITES: https://modrinth.com/app \ No newline at end of file diff --git a/apps/modrinth.md b/apps/modrinth.md deleted file mode 100644 index a1f4ac607..000000000 --- a/apps/modrinth.md +++ /dev/null @@ -1,8 +0,0 @@ -# MODRINTH - - The Modrinth App is a unique, open source launcher that allows you to play your favorite mods, and keep them up to date, all in one neat little package. - - SITE: https://modrinth.com/app - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/modv b/apps/modv new file mode 100644 index 000000000..8172ba7f0 --- /dev/null +++ b/apps/modv @@ -0,0 +1,3 @@ +# modv +modular audio visualisation powered by JavaScript. +# SITES: https://modv.vcync.gl/ \ No newline at end of file diff --git a/apps/modv.md b/apps/modv.md deleted file mode 100644 index 5d294956a..000000000 --- a/apps/modv.md +++ /dev/null @@ -1,8 +0,0 @@ -# MODV - - modular audio visualisation powered by JavaScript. - - SITE: https://modv.vcync.gl/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/monit b/apps/monit new file mode 100644 index 000000000..085c85458 --- /dev/null +++ b/apps/monit @@ -0,0 +1,3 @@ +# monit +展示各种信息的桌面小组件 +# SITES: https://monit.fzf404.art/ \ No newline at end of file diff --git a/apps/monit.md b/apps/monit.md deleted file mode 100644 index 2861c89ef..000000000 --- a/apps/monit.md +++ /dev/null @@ -1,8 +0,0 @@ -# MONIT - - 展示各种信息的桌面小组件 - - SITE: https://monit.fzf404.art/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/moniteur-admin b/apps/moniteur-admin new file mode 100644 index 000000000..4723b2ef0 --- /dev/null +++ b/apps/moniteur-admin @@ -0,0 +1,3 @@ +# moniteur-admin +The admin panel for the lightweight info screen solution. +# SITES: https://github.com/aueb-cslabs/moniteur-admin \ No newline at end of file diff --git a/apps/moniteur-admin.md b/apps/moniteur-admin.md deleted file mode 100644 index 17acb2b85..000000000 --- a/apps/moniteur-admin.md +++ /dev/null @@ -1,8 +0,0 @@ -# MONITEUR-ADMIN - - The admin panel for the lightweight info screen solution. - - SITE: https://github.com/aueb-cslabs/moniteur-admin - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/monokle b/apps/monokle new file mode 100644 index 000000000..4cb03bb53 --- /dev/null +++ b/apps/monokle @@ -0,0 +1,4 @@ +# monokle +Lets you create, analyze, and deploy YAML manifests with a visual UI, and provides policy validation and cluster management. +# SITES: https://monokle.io +# SOURCES: https://github.com/kubeshop/monokle \ No newline at end of file diff --git a/apps/monokle.md b/apps/monokle.md deleted file mode 100644 index d73904302..000000000 --- a/apps/monokle.md +++ /dev/null @@ -1,10 +0,0 @@ -# MONOKLE - - Lets you create, analyze, and deploy YAML manifests with a visual UI, and provides policy validation and cluster management. - - SITE: https://monokle.io - - SOURCE: https://github.com/kubeshop/monokle - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/monoline b/apps/monoline new file mode 100644 index 000000000..ead3deaae --- /dev/null +++ b/apps/monoline @@ -0,0 +1,3 @@ +# monoline +Your personal micro journal. +# SITES: https://monoline.io/ \ No newline at end of file diff --git a/apps/monoline.md b/apps/monoline.md deleted file mode 100644 index 2fd54b0ba..000000000 --- a/apps/monoline.md +++ /dev/null @@ -1,8 +0,0 @@ -# MONOLINE - - Your personal micro journal. - - SITE: https://monoline.io/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mood-fi b/apps/mood-fi new file mode 100644 index 000000000..1695ed741 --- /dev/null +++ b/apps/mood-fi @@ -0,0 +1,3 @@ +# mood-fi +Mood-Fi is the best place to relax and listen to a lo-fi live stream. It's a free software app with 30+ lo-fi live streams between 8 different lo-fi types. Take a break, relax and be mood, be Mood-Fi. +# SITES: https://github.com/KaykyDeSouzaDias/Mood-Fi \ No newline at end of file diff --git a/apps/mood-fi.md b/apps/mood-fi.md deleted file mode 100644 index 8ddbfddec..000000000 --- a/apps/mood-fi.md +++ /dev/null @@ -1,8 +0,0 @@ -# MOOD-FI - - Mood-Fi is the best place to relax and listen to a lo-fi live stream. It's a free software app with 30+ lo-fi live streams between 8 different lo-fi types. Take a break, relax and be mood, be Mood-Fi. - - SITE: https://github.com/KaykyDeSouzaDias/Mood-Fi - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/moolticute b/apps/moolticute new file mode 100644 index 000000000..8b9758e77 --- /dev/null +++ b/apps/moolticute @@ -0,0 +1,3 @@ +# moolticute +Mooltipass crossplatform daemon/tools +# SITES: https://github.com/mooltipass/moolticute \ No newline at end of file diff --git a/apps/moolticute.md b/apps/moolticute.md deleted file mode 100644 index 622315a77..000000000 --- a/apps/moolticute.md +++ /dev/null @@ -1,8 +0,0 @@ -# MOOLTICUTE - - Mooltipass crossplatform daemon/tools - - SITE: https://github.com/mooltipass/moolticute - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/moon-lander b/apps/moon-lander new file mode 100644 index 000000000..736acbdc5 --- /dev/null +++ b/apps/moon-lander @@ -0,0 +1,4 @@ +# moon-lander +Moon Lander is a 2D game of gravity. Land your ship on the lading pad. +# SCREENSHOTS: https://raw.githubusercontent.com/andy5995/moon-lander-appimage/refs/heads/trunk/moon-lander.png +# SITES: https://github.com/andy5995/moon-lander-appimage/releases \ No newline at end of file diff --git a/apps/moon-lander.md b/apps/moon-lander.md deleted file mode 100644 index f6b222794..000000000 --- a/apps/moon-lander.md +++ /dev/null @@ -1,10 +0,0 @@ -# MOON-LANDER - - Moon Lander is a 2D game of gravity. Land your ship on the lading pad. - - ![Image](https://raw.githubusercontent.com/andy5995/moon-lander-appimage/refs/heads/trunk/moon-lander.png) - - SITE: https://github.com/andy5995/moon-lander-appimage/releases - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/moondeck-buddy b/apps/moondeck-buddy new file mode 100644 index 000000000..932b1b7f6 --- /dev/null +++ b/apps/moondeck-buddy @@ -0,0 +1,3 @@ +# moondeck-buddy +A server-side part of the MoonDeck plugin for the SteamDeck. +# SITES: https://github.com/FrogTheFrog/moondeck-buddy \ No newline at end of file diff --git a/apps/moondeck-buddy.md b/apps/moondeck-buddy.md deleted file mode 100644 index 1556ea33f..000000000 --- a/apps/moondeck-buddy.md +++ /dev/null @@ -1,8 +0,0 @@ -# MOONDECK-BUDDY - - A server-side part of the MoonDeck plugin for the SteamDeck. - - SITE: https://github.com/FrogTheFrog/moondeck-buddy - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/moonlight b/apps/moonlight new file mode 100644 index 000000000..8e1c71ca6 --- /dev/null +++ b/apps/moonlight @@ -0,0 +1,3 @@ +# moonlight +Stream games from your NVIDIA GameStream-enabled PC +# SITES: https://github.com/moonlight-stream/moonlight-qt \ No newline at end of file diff --git a/apps/moonlight.md b/apps/moonlight.md deleted file mode 100644 index 42a470a02..000000000 --- a/apps/moonlight.md +++ /dev/null @@ -1,8 +0,0 @@ -# MOONLIGHT - - Stream games from your NVIDIA GameStream-enabled PC - - SITE: https://github.com/moonlight-stream/moonlight-qt - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/moonplayer b/apps/moonplayer new file mode 100644 index 000000000..a97c7269a --- /dev/null +++ b/apps/moonplayer @@ -0,0 +1,3 @@ +# moonplayer +MoonPlayer is an interesting player that lets you to enjoy videos. It can play the video online, download it or just open the local videos. +# SITES: https://coslyk.github.io/moonplayer.html \ No newline at end of file diff --git a/apps/moonplayer.md b/apps/moonplayer.md deleted file mode 100644 index 1a90a85b8..000000000 --- a/apps/moonplayer.md +++ /dev/null @@ -1,8 +0,0 @@ -# MOONPLAYER - - MoonPlayer is an interesting player that lets you to enjoy videos. It can play the video online, download it or just open the local videos. - - SITE: https://coslyk.github.io/moonplayer.html - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/moose b/apps/moose new file mode 100644 index 000000000..88c8a68cb --- /dev/null +++ b/apps/moose @@ -0,0 +1,3 @@ +# moose +An application to stream, cast and download torrents. +# SITES: https://moose.riteshkr.com/ \ No newline at end of file diff --git a/apps/moose.md b/apps/moose.md deleted file mode 100644 index a9fb5f7a9..000000000 --- a/apps/moose.md +++ /dev/null @@ -1,8 +0,0 @@ -# MOOSE - - An application to stream, cast and download torrents. - - SITE: https://moose.riteshkr.com/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/moosync b/apps/moosync new file mode 100644 index 000000000..193dc8e72 --- /dev/null +++ b/apps/moosync @@ -0,0 +1,3 @@ +# moosync +A simple music player capable of playing local audio or from Youtube or Spotify +# SITES: https://github.com/Moosync/Moosync \ No newline at end of file diff --git a/apps/moosync.md b/apps/moosync.md deleted file mode 100644 index 4401b9180..000000000 --- a/apps/moosync.md +++ /dev/null @@ -1,8 +0,0 @@ -# MOOSYNC - - A simple music player capable of playing local audio or from Youtube or Spotify - - SITE: https://github.com/Moosync/Moosync - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/more b/apps/more new file mode 100644 index 000000000..b2efb8629 --- /dev/null +++ b/apps/more @@ -0,0 +1,3 @@ +# more +Display the contents of a file in a terminal. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/more.md b/apps/more.md deleted file mode 100644 index 6d594176c..000000000 --- a/apps/more.md +++ /dev/null @@ -1,8 +0,0 @@ -# MORE - - Display the contents of a file in a terminal. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/motrix b/apps/motrix new file mode 100644 index 000000000..bb6e08d76 --- /dev/null +++ b/apps/motrix @@ -0,0 +1,3 @@ +# motrix +A full-featured download manager +# SITES: https://github.com/agalwood/Motrix \ No newline at end of file diff --git a/apps/motrix-next b/apps/motrix-next new file mode 100644 index 000000000..f8752b938 --- /dev/null +++ b/apps/motrix-next @@ -0,0 +1,4 @@ +# motrix-next + A full-featured download manager rebuilt from the ground up. +# SITES: https://github.com/aninsomniacy/motrix-next +# SOURCES: https://github.com/aninsomniacy/motrix-next \ No newline at end of file diff --git a/apps/motrix-next.md b/apps/motrix-next.md deleted file mode 100644 index 6ff9d2f90..000000000 --- a/apps/motrix-next.md +++ /dev/null @@ -1,8 +0,0 @@ -# MOTRIX-NEXT - - A full-featured download manager rebuilt from the ground up. - - SITE: https://github.com/aninsomniacy/motrix-next - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/motrix.md b/apps/motrix.md deleted file mode 100644 index 82dc490ee..000000000 --- a/apps/motrix.md +++ /dev/null @@ -1,8 +0,0 @@ -# MOTRIX - - A full-featured download manager - - SITE: https://github.com/agalwood/Motrix - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mount b/apps/mount new file mode 100644 index 000000000..0e873665a --- /dev/null +++ b/apps/mount @@ -0,0 +1,3 @@ +# mount +Mount a filesystem. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/mount.md b/apps/mount.md deleted file mode 100644 index cd8c73fb9..000000000 --- a/apps/mount.md +++ /dev/null @@ -1,8 +0,0 @@ -# MOUNT - - Mount a filesystem. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/mousai b/apps/mousai new file mode 100644 index 000000000..f9fc7f8d8 --- /dev/null +++ b/apps/mousai @@ -0,0 +1,3 @@ +# mousai +Unofficial. Application for identifying songs using libre utilities. +# SITES: https://github.com/pkgforge-dev/Mousai-AppImage \ No newline at end of file diff --git a/apps/mousai.md b/apps/mousai.md deleted file mode 100644 index 7f8e78eca..000000000 --- a/apps/mousai.md +++ /dev/null @@ -1,8 +0,0 @@ -# MOUSAI - - Unofficial. Application for identifying songs using libre utilities. - - SITE: https://github.com/pkgforge-dev/Mousai-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/mouzi b/apps/mouzi new file mode 100644 index 000000000..4a69d509d --- /dev/null +++ b/apps/mouzi @@ -0,0 +1,4 @@ +# mouzi + A free, privacy-first automatic file organizer that quietly sorts your Downloads folder from the system tray. +# SITES: https://github.com/hsr88/mouzi +# SOURCES: https://github.com/hsr88/mouzi \ No newline at end of file diff --git a/apps/mouzi.md b/apps/mouzi.md deleted file mode 100644 index 0cfe8070f..000000000 --- a/apps/mouzi.md +++ /dev/null @@ -1,8 +0,0 @@ -# MOUZI - - A free, privacy-first automatic file organizer that quietly sorts your Downloads folder from the system tray. - - SITE: https://github.com/hsr88/mouzi - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/movie-monad b/apps/movie-monad new file mode 100644 index 000000000..33112ff6d --- /dev/null +++ b/apps/movie-monad @@ -0,0 +1,3 @@ +# movie-monad +Movie Monad is a free and simple to use video player made with Haskell. +# SITES: https://github.com/lettier/movie-monad \ No newline at end of file diff --git a/apps/movie-monad.md b/apps/movie-monad.md deleted file mode 100644 index accdf56a7..000000000 --- a/apps/movie-monad.md +++ /dev/null @@ -1,8 +0,0 @@ -# MOVIE-MONAD - - Movie Monad is a free and simple to use video player made with Haskell. - - SITE: https://github.com/lettier/movie-monad - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/moyu b/apps/moyu new file mode 100644 index 000000000..06fce050a --- /dev/null +++ b/apps/moyu @@ -0,0 +1,3 @@ +# moyu +基于 Vue 和 Electron 的在线协同api接口管理工具。接口文档管理工具、接口工具、接口文档、api文档、api工具、快乐摸鱼 +# SITES: https://online.jobtool.cn/ \ No newline at end of file diff --git a/apps/moyu.md b/apps/moyu.md deleted file mode 100644 index 1a933bd0b..000000000 --- a/apps/moyu.md +++ /dev/null @@ -1,8 +0,0 @@ -# MOYU - - 基于 Vue 和 Electron 的在线协同api接口管理工具。接口文档管理工具、接口工具、接口文档、api文档、api工具、快乐摸鱼 - - SITE: https://online.jobtool.cn/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mp3-tagger b/apps/mp3-tagger new file mode 100644 index 000000000..763fe874e --- /dev/null +++ b/apps/mp3-tagger @@ -0,0 +1,3 @@ +# mp3-tagger +An Electron app to edit metadata of mp3 files with online search capability +# SITES: https://github.com/Mohammadreza99A/mp3-tagger \ No newline at end of file diff --git a/apps/mp3-tagger.md b/apps/mp3-tagger.md deleted file mode 100644 index 1115f4f15..000000000 --- a/apps/mp3-tagger.md +++ /dev/null @@ -1,8 +0,0 @@ -# MP3-TAGGER - - An Electron app to edit metadata of mp3 files with online search capability - - SITE: https://github.com/Mohammadreza99A/mp3-tagger - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mp4grep b/apps/mp4grep new file mode 100644 index 000000000..7e63d84ef --- /dev/null +++ b/apps/mp4grep @@ -0,0 +1,3 @@ +# mp4grep +mp4grep is a CLI for transcribing and searching audio/video files. +# SITES: https://github.com/o-oconnell/mp4grep \ No newline at end of file diff --git a/apps/mp4grep.md b/apps/mp4grep.md deleted file mode 100644 index 1b38452de..000000000 --- a/apps/mp4grep.md +++ /dev/null @@ -1,8 +0,0 @@ -# MP4GREP - - mp4grep is a CLI for transcribing and searching audio/video files. - - SITE: https://github.com/o-oconnell/mp4grep - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mpc-qt b/apps/mpc-qt new file mode 100644 index 000000000..2034aac34 --- /dev/null +++ b/apps/mpc-qt @@ -0,0 +1,3 @@ +# mpc-qt +Media Player Classic Qute Theater. +# SITES: https://github.com/mpc-qt/mpc-qt \ No newline at end of file diff --git a/apps/mpc-qt.md b/apps/mpc-qt.md deleted file mode 100644 index 63230cf5d..000000000 --- a/apps/mpc-qt.md +++ /dev/null @@ -1,8 +0,0 @@ -# MPC-QT - - Media Player Classic Qute Theater. - - SITE: https://github.com/mpc-qt/mpc-qt - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/mpv b/apps/mpv new file mode 100644 index 000000000..7cef17870 --- /dev/null +++ b/apps/mpv @@ -0,0 +1,6 @@ +# mpv +MPV is a free (as in freedom) media player for the command line. It supports a wide variety of media file formats, audio and video codecs and subtitle types. + + This script lets you choose between the unofficials AppImage and Archimage. +# SITES: +# SOURCES: https://github.com/pkgforge-dev/mpv-AppImage \ No newline at end of file diff --git a/apps/mpv.md b/apps/mpv.md deleted file mode 100644 index 69f4d296b..000000000 --- a/apps/mpv.md +++ /dev/null @@ -1,12 +0,0 @@ -# MPV - - MPV is a free (as in freedom) media player for the command line. It supports a wide variety of media file formats, audio and video codecs and subtitle types. - - This script lets you choose between the unofficials AppImage and Archimage. - - APPIMAGE: https://github.com/pkgforge-dev/mpv-AppImage - - ARCHIMAGE (JuNest-based AppImage): https://github.com/ivan-hc/MPV-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mqtt-explorer b/apps/mqtt-explorer new file mode 100644 index 000000000..e650bbc80 --- /dev/null +++ b/apps/mqtt-explorer @@ -0,0 +1,3 @@ +# mqtt-explorer +Explore your message queues +# SITES: https://github.com/thomasnordquist/MQTT-Explorer \ No newline at end of file diff --git a/apps/mqtt-explorer.md b/apps/mqtt-explorer.md deleted file mode 100644 index a34de54b0..000000000 --- a/apps/mqtt-explorer.md +++ /dev/null @@ -1,8 +0,0 @@ -# MQTT-EXPLORER - - Explore your message queues - - SITE: https://github.com/thomasnordquist/MQTT-Explorer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mqttcute b/apps/mqttcute new file mode 100644 index 000000000..53e51da1c --- /dev/null +++ b/apps/mqttcute @@ -0,0 +1,3 @@ +# mqttcute +An advanced desktop MQTT client, suitable for binary protocol development +# SITES: https://github.com/MayaPosch/MQTTCute \ No newline at end of file diff --git a/apps/mqttcute.md b/apps/mqttcute.md deleted file mode 100644 index ca63d2e10..000000000 --- a/apps/mqttcute.md +++ /dev/null @@ -1,8 +0,0 @@ -# MQTTCUTE - - An advanced desktop MQTT client, suitable for binary protocol development - - SITE: https://github.com/MayaPosch/MQTTCute - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mqttx b/apps/mqttx new file mode 100644 index 000000000..bf2f13833 --- /dev/null +++ b/apps/mqttx @@ -0,0 +1,3 @@ +# mqttx +Powerful cross-platform MQTT 5.0 Desktop, CLI, and WebSocket client tools. +# SITES: https://mqttx.app/ \ No newline at end of file diff --git a/apps/mqttx.md b/apps/mqttx.md deleted file mode 100644 index 6cca6c7f6..000000000 --- a/apps/mqttx.md +++ /dev/null @@ -1,8 +0,0 @@ -# MQTTX - - Powerful cross-platform MQTT 5.0 Desktop, CLI, and WebSocket client tools. - - SITE: https://mqttx.app/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mr.dclutterer b/apps/mr.dclutterer new file mode 100644 index 000000000..72b215972 --- /dev/null +++ b/apps/mr.dclutterer @@ -0,0 +1,3 @@ +# mr.dclutterer +Minimal App To Aggregate And Rename Files In Bulk. +# SITES: https://github.com/deep5050/Mr.Dclutterer \ No newline at end of file diff --git a/apps/mr.dclutterer.md b/apps/mr.dclutterer.md deleted file mode 100644 index 899362db4..000000000 --- a/apps/mr.dclutterer.md +++ /dev/null @@ -1,8 +0,0 @@ -# MR.DCLUTTERER - - Minimal App To Aggregate And Rename Files In Bulk. - - SITE: https://github.com/deep5050/Mr.Dclutterer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mrcode b/apps/mrcode new file mode 100644 index 000000000..2e78870e4 --- /dev/null +++ b/apps/mrcode @@ -0,0 +1,3 @@ +# mrcode +An opinionated editor based on VSCodium / VSCode +# SITES: https://github.com/zokugun/MrCode \ No newline at end of file diff --git a/apps/mrcode.md b/apps/mrcode.md deleted file mode 100644 index 3da234f07..000000000 --- a/apps/mrcode.md +++ /dev/null @@ -1,8 +0,0 @@ -# MRCODE - - An opinionated editor based on VSCodium / VSCode - - SITE: https://github.com/zokugun/MrCode - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mrrss b/apps/mrrss new file mode 100644 index 000000000..28e0185ca --- /dev/null +++ b/apps/mrrss @@ -0,0 +1,3 @@ +# mrrss +A modern, cross-platform, and free AI RSS reader. +# SITES: https://github.com/WCY-dt/MrRSS \ No newline at end of file diff --git a/apps/mrrss.md b/apps/mrrss.md deleted file mode 100644 index fb82494df..000000000 --- a/apps/mrrss.md +++ /dev/null @@ -1,8 +0,0 @@ -# MRRSS - - A modern, cross-platform, and free AI RSS reader. - - SITE: https://github.com/WCY-dt/MrRSS - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/mrwriter b/apps/mrwriter new file mode 100644 index 000000000..43be05fad --- /dev/null +++ b/apps/mrwriter @@ -0,0 +1,3 @@ +# mrwriter +Notetaking and blackboard replacement application. Inspired by Xournal. Written in C++/Qt for Linux / Windows / Mac. +# SITES: https://github.com/unruhschuh/MrWriter \ No newline at end of file diff --git a/apps/mrwriter.md b/apps/mrwriter.md deleted file mode 100644 index 119365868..000000000 --- a/apps/mrwriter.md +++ /dev/null @@ -1,8 +0,0 @@ -# MRWRITER - - Notetaking and blackboard replacement application. Inspired by Xournal. Written in C++/Qt for Linux / Windows / Mac. - - SITE: https://github.com/unruhschuh/MrWriter - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ms-365-electron b/apps/ms-365-electron new file mode 100644 index 000000000..1f95b31e7 --- /dev/null +++ b/apps/ms-365-electron @@ -0,0 +1,3 @@ +# ms-365-electron +Unofficial Microsoft 365 Web Desktop Wrapper made with Electron. +# SITES: https://github.com/agam778/MS-365-Electron \ No newline at end of file diff --git a/apps/ms-365-electron.md b/apps/ms-365-electron.md deleted file mode 100644 index 182e857f0..000000000 --- a/apps/ms-365-electron.md +++ /dev/null @@ -1,8 +0,0 @@ -# MS-365-ELECTRON - - Unofficial Microsoft 365 Web Desktop Wrapper made with Electron. - - SITE: https://github.com/agam778/MS-365-Electron - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mtcelledit b/apps/mtcelledit new file mode 100644 index 000000000..498c8eaf2 --- /dev/null +++ b/apps/mtcelledit @@ -0,0 +1,3 @@ +# mtcelledit +Lightweight spreadsheet program +# SITES: https://github.com/matyler/mtCellEdit \ No newline at end of file diff --git a/apps/mtcelledit.md b/apps/mtcelledit.md deleted file mode 100644 index 62e368bda..000000000 --- a/apps/mtcelledit.md +++ /dev/null @@ -1,8 +0,0 @@ -# MTCELLEDIT - - Lightweight spreadsheet program - - SITE: https://github.com/matyler/mtCellEdit - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mudita-center b/apps/mudita-center new file mode 100644 index 000000000..f7ff8f563 --- /dev/null +++ b/apps/mudita-center @@ -0,0 +1,3 @@ +# mudita-center +Mudita Center Electron App. Expand and update the features of Mudita Pure, while using your computer. +# SITES: https://github.com/mudita/mudita-center \ No newline at end of file diff --git a/apps/mudita-center.md b/apps/mudita-center.md deleted file mode 100644 index f4bcd6b49..000000000 --- a/apps/mudita-center.md +++ /dev/null @@ -1,8 +0,0 @@ -# MUDITA-CENTER - - Mudita Center Electron App. Expand and update the features of Mudita Pure, while using your computer. - - SITE: https://github.com/mudita/mudita-center - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mudlet b/apps/mudlet new file mode 100644 index 000000000..6c1bee871 --- /dev/null +++ b/apps/mudlet @@ -0,0 +1,3 @@ +# mudlet +Mudlet is a platform for gaming and enhancing game-play primarily with MUDs. +# SITES: https://www.mudlet.org \ No newline at end of file diff --git a/apps/mudlet.md b/apps/mudlet.md deleted file mode 100644 index 864fe455c..000000000 --- a/apps/mudlet.md +++ /dev/null @@ -1,8 +0,0 @@ -# MUDLET - - Mudlet is a platform for gaming and enhancing game-play primarily with MUDs. - - SITE: https://www.mudlet.org - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/muffon b/apps/muffon new file mode 100644 index 000000000..1641acaa7 --- /dev/null +++ b/apps/muffon @@ -0,0 +1,3 @@ +# muffon +Music streaming browser,retrieves audio, video and metadata from various Internet sources. +# SITES: https://muffon.netlify.app/ \ No newline at end of file diff --git a/apps/muffon.md b/apps/muffon.md deleted file mode 100644 index 471e54e2a..000000000 --- a/apps/muffon.md +++ /dev/null @@ -1,8 +0,0 @@ -# MUFFON - - Music streaming browser,retrieves audio, video and metadata from various Internet sources. - - SITE: https://muffon.netlify.app/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mullvad-browser b/apps/mullvad-browser new file mode 100644 index 000000000..344fc137e --- /dev/null +++ b/apps/mullvad-browser @@ -0,0 +1,6 @@ +# mullvad-browser +Tor-based Web Browser. A free and open society is a society where people have the right to privacy. That’s why we fight for a free internet. + + This is the portable official version converted to an AppImage by our team, "Portable Linux Apps" , no additional changes have been made. +# SITES: https://mullvad.net +# SOURCES: https://github.com/Portable-Linux-Apps/mullvad-browser-AppImage \ No newline at end of file diff --git a/apps/mullvad-browser.md b/apps/mullvad-browser.md deleted file mode 100644 index 3b956ebeb..000000000 --- a/apps/mullvad-browser.md +++ /dev/null @@ -1,12 +0,0 @@ -# MULLVAD-BROWSER - - Tor-based Web Browser. A free and open society is a society where people have the right to privacy. That’s why we fight for a free internet. - - This is the portable official version converted to an AppImage by our team, "Portable Linux Apps" , no additional changes have been made. - - SITE: https://mullvad.net - - APPIMAGE: https://github.com/Portable-Linux-Apps/mullvad-browser-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/multimc b/apps/multimc new file mode 100644 index 000000000..63dc42072 --- /dev/null +++ b/apps/multimc @@ -0,0 +1,3 @@ +# multimc +MultiMC is an alternative launcher for Minecraft. It allows you to have multiple, cleanly separated instances of Minecraft (each with their own mods, resource packs, saves, etc) and helps you manage them and their associated options with a simple and powerful interface. +# SITES: https://multimc.org \ No newline at end of file diff --git a/apps/multimc.md b/apps/multimc.md deleted file mode 100644 index ed7b5ab8d..000000000 --- a/apps/multimc.md +++ /dev/null @@ -1,8 +0,0 @@ -# MULTIMC - - MultiMC is an alternative launcher for Minecraft. It allows you to have multiple, cleanly separated instances of Minecraft (each with their own mods, resource packs, saves, etc) and helps you manage them and their associated options with a simple and powerful interface. - - SITE: https://multimc.org - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/munt b/apps/munt new file mode 100644 index 000000000..29f157530 --- /dev/null +++ b/apps/munt @@ -0,0 +1,3 @@ +# munt +The payment system of the future today +# SITES: https://github.com/muntorg/munt-official \ No newline at end of file diff --git a/apps/munt.md b/apps/munt.md deleted file mode 100644 index 46cb49e2c..000000000 --- a/apps/munt.md +++ /dev/null @@ -1,8 +0,0 @@ -# MUNT - - The payment system of the future today - - SITE: https://github.com/muntorg/munt-official - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mupdf b/apps/mupdf new file mode 100644 index 000000000..d1f801a3d --- /dev/null +++ b/apps/mupdf @@ -0,0 +1,3 @@ +# mupdf +Lightweight PDF, XPS, and E-book viewer +# SITES: https://github.com/m59peacemaker/mupdf-appimage \ No newline at end of file diff --git a/apps/mupdf.md b/apps/mupdf.md deleted file mode 100644 index 92b4743a8..000000000 --- a/apps/mupdf.md +++ /dev/null @@ -1,8 +0,0 @@ -# MUPDF - - Lightweight PDF, XPS, and E-book viewer - - SITE: https://github.com/m59peacemaker/mupdf-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/muse b/apps/muse new file mode 100644 index 000000000..778daab7c --- /dev/null +++ b/apps/muse @@ -0,0 +1,3 @@ +# muse +MusE is a digital audio workstation with support for both Audio and MIDI +# SITES: https://github.com/muse-sequencer/muse \ No newline at end of file diff --git a/apps/muse.md b/apps/muse.md deleted file mode 100644 index a170e666a..000000000 --- a/apps/muse.md +++ /dev/null @@ -1,8 +0,0 @@ -# MUSE - - MusE is a digital audio workstation with support for both Audio and MIDI - - SITE: https://github.com/muse-sequencer/muse - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/museeks b/apps/museeks new file mode 100644 index 000000000..b3abb7431 --- /dev/null +++ b/apps/museeks @@ -0,0 +1,3 @@ +# museeks +A simple, clean and cross-platform music player. +# SITES: https://museeks.io \ No newline at end of file diff --git a/apps/museeks.md b/apps/museeks.md deleted file mode 100644 index e9fb58151..000000000 --- a/apps/museeks.md +++ /dev/null @@ -1,8 +0,0 @@ -# MUSEEKS - - A simple, clean and cross-platform music player. - - SITE: https://museeks.io - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/musescore b/apps/musescore new file mode 100644 index 000000000..8303485eb --- /dev/null +++ b/apps/musescore @@ -0,0 +1,3 @@ +# musescore +MuseScore is an open source and free music notation software. For support, contribution, bug reports, visit MuseScore.org. Fork and make pull requests! +# SITES: https://musescore.org \ No newline at end of file diff --git a/apps/musescore.md b/apps/musescore.md deleted file mode 100644 index 629586630..000000000 --- a/apps/musescore.md +++ /dev/null @@ -1,9 +0,0 @@ -# MUSESCORE - - MuseScore is an open source and free music notation software. For support, contribution, bug reports, visit MuseScore.org. Fork and make pull requests! - - SITES: https://musescore.org - https://github.com/musescore/MuseScore - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/music-assistant b/apps/music-assistant new file mode 100644 index 000000000..489d9d06c --- /dev/null +++ b/apps/music-assistant @@ -0,0 +1,3 @@ +# music-assistant +Music Assistant Companion App +# SITES: https://music-assistant.io \ No newline at end of file diff --git a/apps/music-assistant.md b/apps/music-assistant.md deleted file mode 100644 index 3e3a400a3..000000000 --- a/apps/music-assistant.md +++ /dev/null @@ -1,8 +0,0 @@ -# MUSIC-ASSISTANT - - Music Assistant Companion App - - SITE: https://music-assistant.io - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/music-blocks b/apps/music-blocks new file mode 100644 index 000000000..9b916cfda --- /dev/null +++ b/apps/music-blocks @@ -0,0 +1,3 @@ +# music-blocks +Visual Programming Language for Exploring Math, Music, and Programming +# SITES: https://github.com/sugarlabs/musicblocks-launcher \ No newline at end of file diff --git a/apps/music-blocks.md b/apps/music-blocks.md deleted file mode 100644 index 6f3d13517..000000000 --- a/apps/music-blocks.md +++ /dev/null @@ -1,8 +0,0 @@ -# MUSIC-BLOCKS - - Visual Programming Language for Exploring Math, Music, and Programming - - SITE: https://github.com/sugarlabs/musicblocks-launcher - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/music-kitten b/apps/music-kitten new file mode 100644 index 000000000..7b73f3298 --- /dev/null +++ b/apps/music-kitten @@ -0,0 +1,3 @@ +# music-kitten +Use your own soundtrack in Counter-Strike: Global Offensive. +# SITES: https://musickitten.net/ \ No newline at end of file diff --git a/apps/music-kitten.md b/apps/music-kitten.md deleted file mode 100644 index 7d655e989..000000000 --- a/apps/music-kitten.md +++ /dev/null @@ -1,8 +0,0 @@ -# MUSIC-KITTEN - - Use your own soundtrack in Counter-Strike: Global Offensive. - - SITE: https://musickitten.net/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/music-player b/apps/music-player new file mode 100644 index 000000000..035c65e42 --- /dev/null +++ b/apps/music-player @@ -0,0 +1,3 @@ +# music-player +Desktop Electron app for playing and downloading music. +# SITES: https://github.com/LucasHazardous/music-player \ No newline at end of file diff --git a/apps/music-player.md b/apps/music-player.md deleted file mode 100644 index f4b615f84..000000000 --- a/apps/music-player.md +++ /dev/null @@ -1,8 +0,0 @@ -# MUSIC-PLAYER - - Desktop Electron app for playing and downloading music. - - SITE: https://github.com/LucasHazardous/music-player - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/music-quiz b/apps/music-quiz new file mode 100644 index 000000000..af79d5950 --- /dev/null +++ b/apps/music-quiz @@ -0,0 +1,3 @@ +# music-quiz +Jepardy like game where the object is to guess as many songs as possible as fast as possible. +# SITES: https://github.com/MusicQuizCPP/Music-Quiz_CPP \ No newline at end of file diff --git a/apps/music-quiz.md b/apps/music-quiz.md deleted file mode 100644 index 5633ffd4e..000000000 --- a/apps/music-quiz.md +++ /dev/null @@ -1,8 +0,0 @@ -# MUSIC-QUIZ - - Jepardy like game where the object is to guess as many songs as possible as fast as possible. - - SITE: https://github.com/MusicQuizCPP/Music-Quiz_CPP - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/musicalypse b/apps/musicalypse new file mode 100644 index 000000000..2f071c353 --- /dev/null +++ b/apps/musicalypse @@ -0,0 +1,3 @@ +# musicalypse +Musicalypse is a modern audio player built with web technologies. It is available as an online or native version on main desktop platforms and provides a backend streaming server. +# SITES: https://musicalypse.creasource.net \ No newline at end of file diff --git a/apps/musicalypse.md b/apps/musicalypse.md deleted file mode 100644 index 70709b13b..000000000 --- a/apps/musicalypse.md +++ /dev/null @@ -1,8 +0,0 @@ -# MUSICALYPSE - - Musicalypse is a modern audio player built with web technologies. It is available as an online or native version on main desktop platforms and provides a backend streaming server. - - SITE: https://musicalypse.creasource.net - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mutool b/apps/mutool new file mode 100644 index 000000000..53712af0e --- /dev/null +++ b/apps/mutool @@ -0,0 +1,3 @@ +# mutool +All purpose tool for dealing with PDF files +# SITES: https://github.com/m59peacemaker/mupdf-appimage \ No newline at end of file diff --git a/apps/mutool.md b/apps/mutool.md deleted file mode 100644 index 7f29027ea..000000000 --- a/apps/mutool.md +++ /dev/null @@ -1,8 +0,0 @@ -# MUTOOL - - All purpose tool for dealing with PDF files - - SITE: https://github.com/m59peacemaker/mupdf-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/muwire b/apps/muwire new file mode 100644 index 000000000..d8ec45a1d --- /dev/null +++ b/apps/muwire @@ -0,0 +1,3 @@ +# muwire +MuWire file sharing client for I2P +# SITES: https://github.com/zlatinb/muwire \ No newline at end of file diff --git a/apps/muwire.md b/apps/muwire.md deleted file mode 100644 index d3788a0b0..000000000 --- a/apps/muwire.md +++ /dev/null @@ -1,8 +0,0 @@ -# MUWIRE - - MuWire file sharing client for I2P - - SITE: https://github.com/zlatinb/muwire - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mv b/apps/mv new file mode 100644 index 000000000..a5874c552 --- /dev/null +++ b/apps/mv @@ -0,0 +1,3 @@ +# mv +Move (rename) files. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/mv.md b/apps/mv.md deleted file mode 100644 index 32e300dc2..000000000 --- a/apps/mv.md +++ /dev/null @@ -1,8 +0,0 @@ -# MV - - Move (rename) files. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/my-budget b/apps/my-budget new file mode 100644 index 000000000..9a1ba524c --- /dev/null +++ b/apps/my-budget @@ -0,0 +1,3 @@ +# my-budget +Free, open source offline cross-platform budgeting solution built with Electron. +# SITES: https://github.com/reZach/my-budget \ No newline at end of file diff --git a/apps/my-budget.md b/apps/my-budget.md deleted file mode 100644 index b2fc944f8..000000000 --- a/apps/my-budget.md +++ /dev/null @@ -1,8 +0,0 @@ -# MY-BUDGET - - Free, open source offline cross-platform budgeting solution built with Electron. - - SITE: https://github.com/reZach/my-budget - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/my-jira b/apps/my-jira new file mode 100644 index 000000000..50ad2699e --- /dev/null +++ b/apps/my-jira @@ -0,0 +1,3 @@ +# my-jira +A lite jira desktop +# SITES: https://github.com/dhso/my-jira \ No newline at end of file diff --git a/apps/my-jira.md b/apps/my-jira.md deleted file mode 100644 index 2d004d13c..000000000 --- a/apps/my-jira.md +++ /dev/null @@ -1,8 +0,0 @@ -# MY-JIRA - - A lite jira desktop - - SITE: https://github.com/dhso/my-jira - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mybelka b/apps/mybelka new file mode 100644 index 000000000..77ee8abb5 --- /dev/null +++ b/apps/mybelka @@ -0,0 +1,3 @@ +# mybelka +Accounting system written in C++ with QTCore. +# SITES: https://github.com/Leinnan/mybelka \ No newline at end of file diff --git a/apps/mybelka.md b/apps/mybelka.md deleted file mode 100644 index f7637b54c..000000000 --- a/apps/mybelka.md +++ /dev/null @@ -1,7 +0,0 @@ -# MYBELKA - - Accounting system written in C++ with QTCore. - - SITE: https://github.com/Leinnan/mybelka - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mycroft-ai b/apps/mycroft-ai new file mode 100644 index 000000000..c60ffe5e9 --- /dev/null +++ b/apps/mycroft-ai @@ -0,0 +1,3 @@ +# mycroft-ai +Qt5 Frontend for Mycroft Ai +# SITES: https://github.com/AIIX/Mycroft-Ai-QtApplication \ No newline at end of file diff --git a/apps/mycroft-ai.md b/apps/mycroft-ai.md deleted file mode 100644 index 051401d27..000000000 --- a/apps/mycroft-ai.md +++ /dev/null @@ -1,8 +0,0 @@ -# MYCROFT-AI - - Qt5 Frontend for Mycroft Ai - - SITE: https://github.com/AIIX/Mycroft-Ai-QtApplication - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mycrypto b/apps/mycrypto new file mode 100644 index 000000000..07b33f5d1 --- /dev/null +++ b/apps/mycrypto @@ -0,0 +1,3 @@ +# mycrypto +MyCrypto web and electron app +# SITES: https://github.com/MyCryptoHQ/MyCrypto \ No newline at end of file diff --git a/apps/mycrypto.md b/apps/mycrypto.md deleted file mode 100644 index 0870dedf3..000000000 --- a/apps/mycrypto.md +++ /dev/null @@ -1,8 +0,0 @@ -# MYCRYPTO - - MyCrypto web and electron app - - SITE: https://github.com/MyCryptoHQ/MyCrypto - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mypaint b/apps/mypaint new file mode 100644 index 000000000..35df65f2a --- /dev/null +++ b/apps/mypaint @@ -0,0 +1,3 @@ +# mypaint +MyPaint is a simple drawing and painting program that works well with Wacom-style graphics tablets. +# SITES: https://github.com/mypaint/mypaint \ No newline at end of file diff --git a/apps/mypaint.md b/apps/mypaint.md deleted file mode 100644 index a101820c4..000000000 --- a/apps/mypaint.md +++ /dev/null @@ -1,8 +0,0 @@ -# MYPAINT - - MyPaint is a simple drawing and painting program that works well with Wacom-style graphics tablets. - - SITE: https://github.com/mypaint/mypaint - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mystiq b/apps/mystiq new file mode 100644 index 000000000..40a1d65f1 --- /dev/null +++ b/apps/mystiq @@ -0,0 +1,3 @@ +# mystiq +Qt5/C++ FFmpeg Media Converter +# SITES: https://github.com/swl-x/MystiQ \ No newline at end of file diff --git a/apps/mystiq.md b/apps/mystiq.md deleted file mode 100644 index d6abdd606..000000000 --- a/apps/mystiq.md +++ /dev/null @@ -1,8 +0,0 @@ -# MYSTIQ - - Qt5/C++ FFmpeg Media Converter - - SITE: https://github.com/swl-x/MystiQ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/mytonwallet b/apps/mytonwallet new file mode 100644 index 000000000..6cf3ec6e5 --- /dev/null +++ b/apps/mytonwallet @@ -0,0 +1,3 @@ +# mytonwallet +The most feature-rich web wallet and browser extension for TON Network. +# SITES: https://github.com/mytonwalletorg/mytonwallet \ No newline at end of file diff --git a/apps/mytonwallet.md b/apps/mytonwallet.md deleted file mode 100644 index 4071e7c03..000000000 --- a/apps/mytonwallet.md +++ /dev/null @@ -1,8 +0,0 @@ -# MYTONWALLET - - The most feature-rich web wallet and browser extension for TON Network. - - SITE: https://github.com/mytonwalletorg/mytonwallet - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/n3h b/apps/n3h new file mode 100644 index 000000000..1408843b4 --- /dev/null +++ b/apps/n3h @@ -0,0 +1,3 @@ +# n3h +Nodejs implementation of holochain networking / p2p backend process +# SITES: https://github.com/holochain/n3h \ No newline at end of file diff --git a/apps/n3h.md b/apps/n3h.md deleted file mode 100644 index 2a63ec2df..000000000 --- a/apps/n3h.md +++ /dev/null @@ -1,8 +0,0 @@ -# N3H - - Nodejs implementation of holochain networking / p2p backend process - - SITE: https://github.com/holochain/n3h - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/naev b/apps/naev new file mode 100644 index 000000000..da43e683c --- /dev/null +++ b/apps/naev @@ -0,0 +1,3 @@ +# naev +Naev is a 2d action/rpg space game that combines elements from the action, rpg and simulation genres. +# SITES: https://github.com/naev/naev \ No newline at end of file diff --git a/apps/naev.md b/apps/naev.md deleted file mode 100644 index ee290dfa8..000000000 --- a/apps/naev.md +++ /dev/null @@ -1,8 +0,0 @@ -# NAEV - - Naev is a 2d action/rpg space game that combines elements from the action, rpg and simulation genres. - - SITE: https://github.com/naev/naev - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/nami b/apps/nami new file mode 100644 index 000000000..6ba288342 --- /dev/null +++ b/apps/nami @@ -0,0 +1,3 @@ +# nami +A clean and tidy decentralized package manager. +# SITES: https://github.com/txthinking/nami \ No newline at end of file diff --git a/apps/nami.md b/apps/nami.md deleted file mode 100644 index d1a76a7fb..000000000 --- a/apps/nami.md +++ /dev/null @@ -1,8 +0,0 @@ -# NAMI - - A clean and tidy decentralized package manager. - - SITE: https://github.com/txthinking/nami - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/nanokvm-usb b/apps/nanokvm-usb new file mode 100644 index 000000000..2816d45ff --- /dev/null +++ b/apps/nanokvm-usb @@ -0,0 +1,3 @@ +# nanokvm-usb +Finger-sized 4K USB KVM for Server/SBCs. +# SITES: https://github.com/sipeed/NanoKVM-USB \ No newline at end of file diff --git a/apps/nanokvm-usb.md b/apps/nanokvm-usb.md deleted file mode 100644 index 880679c72..000000000 --- a/apps/nanokvm-usb.md +++ /dev/null @@ -1,8 +0,0 @@ -# NANOKVM-USB - - Finger-sized 4K USB KVM for Server/SBCs. - - SITE: https://github.com/sipeed/NanoKVM-USB - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/nanosaur b/apps/nanosaur new file mode 100644 index 000000000..9602f6f34 --- /dev/null +++ b/apps/nanosaur @@ -0,0 +1,4 @@ +# nanosaur +This is Pangea Software’s Nanosaur updated to run on modern systems. Originally released in 1998 as a Mac-only game, Nanosaur casts a cybernetic dinosaur from the future who’s sent back in time 20 minutes before a giant asteroid hits the Earth. +# SCREENSHOTS: https://raw.githubusercontent.com/jorio/Nanosaur/master/docs/screenshot.png +# SITES: https://github.com/jorio/Nanosaur \ No newline at end of file diff --git a/apps/nanosaur.md b/apps/nanosaur.md deleted file mode 100644 index 824510ee8..000000000 --- a/apps/nanosaur.md +++ /dev/null @@ -1,10 +0,0 @@ -# NANOSAUR - - This is Pangea Software’s Nanosaur updated to run on modern systems. Originally released in 1998 as a Mac-only game, Nanosaur casts a cybernetic dinosaur from the future who’s sent back in time 20 minutes before a giant asteroid hits the Earth. - - ![IMAGE](https://raw.githubusercontent.com/jorio/Nanosaur/master/docs/screenshot.png) - - SITE: https://github.com/jorio/Nanosaur - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/nanosaur2 b/apps/nanosaur2 new file mode 100644 index 000000000..8cd80e810 --- /dev/null +++ b/apps/nanosaur2 @@ -0,0 +1,3 @@ +# nanosaur2 +Pangea Software’s Nanosaur II for modern systems. +# SITES: https://github.com/jorio/Nanosaur2 \ No newline at end of file diff --git a/apps/nanosaur2.md b/apps/nanosaur2.md deleted file mode 100644 index e2bc99bd8..000000000 --- a/apps/nanosaur2.md +++ /dev/null @@ -1,8 +0,0 @@ -# NANOSAUR2 - - Pangea Software’s Nanosaur II for modern systems. - - SITE: https://github.com/jorio/Nanosaur2 - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/nanovault b/apps/nanovault new file mode 100644 index 000000000..f439c6c86 --- /dev/null +++ b/apps/nanovault @@ -0,0 +1,3 @@ +# nanovault +Wallet for interacting with Nano +# SITES: https://github.com/cronoh/nanovault \ No newline at end of file diff --git a/apps/nanovault.md b/apps/nanovault.md deleted file mode 100644 index cdeac11e3..000000000 --- a/apps/nanovault.md +++ /dev/null @@ -1,8 +0,0 @@ -# NANOVAULT - - Wallet for interacting with Nano - - SITE: https://github.com/cronoh/nanovault - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/nap b/apps/nap new file mode 100644 index 000000000..79945e52c --- /dev/null +++ b/apps/nap @@ -0,0 +1,3 @@ +# nap +Code snippets in your terminal. +# SITES: https://github.com/maaslalani/nap \ No newline at end of file diff --git a/apps/nap.md b/apps/nap.md deleted file mode 100644 index 2da8bd81d..000000000 --- a/apps/nap.md +++ /dev/null @@ -1,8 +0,0 @@ -# NAP - - Code snippets in your terminal. - - SITE: https://github.com/maaslalani/nap - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/naruto-arena b/apps/naruto-arena new file mode 100644 index 000000000..92f08ba71 --- /dev/null +++ b/apps/naruto-arena @@ -0,0 +1,3 @@ +# naruto-arena +Naruto-based online multiplayer strategy game +# SITES: https://naruto-arena.app/ \ No newline at end of file diff --git a/apps/naruto-arena.md b/apps/naruto-arena.md deleted file mode 100644 index a7ad944c8..000000000 --- a/apps/naruto-arena.md +++ /dev/null @@ -1,8 +0,0 @@ -# NARUTO-ARENA - - Naruto-based online multiplayer strategy game - - SITE: https://naruto-arena.app/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/nault-bin b/apps/nault-bin new file mode 100644 index 000000000..b9fe445f4 --- /dev/null +++ b/apps/nault-bin @@ -0,0 +1,3 @@ +# nault-bin +Official Nault AppImage client +# SITES: https://github.com/Nault/Nault \ No newline at end of file diff --git a/apps/nault-bin.md b/apps/nault-bin.md deleted file mode 100644 index aacedef57..000000000 --- a/apps/nault-bin.md +++ /dev/null @@ -1,8 +0,0 @@ -# NAULT-BIN - - Official Nault AppImage client - - SITE: https://github.com/Nault/Nault - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/nautune b/apps/nautune new file mode 100644 index 000000000..e23b9c6f9 --- /dev/null +++ b/apps/nautune @@ -0,0 +1,3 @@ +# nautune +Poseidon's Music Player for Jellyfin. +# SITES: https://github.com/ElysiumDisc/nautune \ No newline at end of file diff --git a/apps/nautune.md b/apps/nautune.md deleted file mode 100644 index eb25f62b4..000000000 --- a/apps/nautune.md +++ /dev/null @@ -1,8 +0,0 @@ -# NAUTUNE - - Poseidon's Music Player for Jellyfin. - - SITE: https://github.com/ElysiumDisc/nautune - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/nauz-file-detector b/apps/nauz-file-detector new file mode 100644 index 000000000..7e84948b4 --- /dev/null +++ b/apps/nauz-file-detector @@ -0,0 +1,3 @@ +# nauz-file-detector +Nauz File Detector is a portable linker/compiler/packer identifier utility. +# SITES: https://github.com/horsicq/Nauz-File-Detector \ No newline at end of file diff --git a/apps/nauz-file-detector.md b/apps/nauz-file-detector.md deleted file mode 100644 index 30038af90..000000000 --- a/apps/nauz-file-detector.md +++ /dev/null @@ -1,8 +0,0 @@ -# NAUZ-FILE-DETECTOR - - Nauz File Detector is a portable linker/compiler/packer identifier utility. - - SITE: https://github.com/horsicq/Nauz-File-Detector - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/navi b/apps/navi new file mode 100644 index 000000000..ba15ebe8e --- /dev/null +++ b/apps/navi @@ -0,0 +1,3 @@ +# navi +An interactive cheatsheet tool for the command-line +# SITES: https://github.com/denisidoro/navi \ No newline at end of file diff --git a/apps/navi.md b/apps/navi.md deleted file mode 100644 index 43d46da2a..000000000 --- a/apps/navi.md +++ /dev/null @@ -1,8 +0,0 @@ -# NAVI - - An interactive cheatsheet tool for the command-line - - SITE: https://github.com/denisidoro/navi - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/nazuna b/apps/nazuna new file mode 100644 index 000000000..6944d3207 --- /dev/null +++ b/apps/nazuna @@ -0,0 +1,3 @@ +# nazuna +Download Twitter videos using your terminal! +# SITES: https://github.com/Sazzo/nazuna \ No newline at end of file diff --git a/apps/nazuna.md b/apps/nazuna.md deleted file mode 100644 index f08cc3f00..000000000 --- a/apps/nazuna.md +++ /dev/null @@ -1,8 +0,0 @@ -# NAZUNA - - Download Twitter videos using your terminal! - - SITE: https://github.com/Sazzo/nazuna - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/nblood b/apps/nblood new file mode 100644 index 000000000..2ce35c733 --- /dev/null +++ b/apps/nblood @@ -0,0 +1,3 @@ +# nblood +Blood port based on EDuke32. +# SITES: https://github.com/pkgforge-dev/NBlood-AppImage \ No newline at end of file diff --git a/apps/nblood.md b/apps/nblood.md deleted file mode 100644 index 6459d7fe1..000000000 --- a/apps/nblood.md +++ /dev/null @@ -1,8 +0,0 @@ -# NBLOOD - - Blood port based on EDuke32. - - SITE: https://github.com/pkgforge-dev/NBlood-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/ncsa-mosaic b/apps/ncsa-mosaic new file mode 100644 index 000000000..8fab5e1e1 --- /dev/null +++ b/apps/ncsa-mosaic @@ -0,0 +1,3 @@ +# ncsa-mosaic +One of the first graphical web browsers. +# SITES: https://github.com/AppImage/NCSA-Mosaic-AppImage \ No newline at end of file diff --git a/apps/ncsa-mosaic.md b/apps/ncsa-mosaic.md deleted file mode 100644 index d671f4f11..000000000 --- a/apps/ncsa-mosaic.md +++ /dev/null @@ -1,8 +0,0 @@ -# NCSA-MOSAIC - - One of the first graphical web browsers. - - SITE: https://github.com/AppImage/NCSA-Mosaic-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ncspot b/apps/ncspot new file mode 100644 index 000000000..9122ed7ae --- /dev/null +++ b/apps/ncspot @@ -0,0 +1,3 @@ +# ncspot +Cross-platform ncurses Spotify client written in Rust, inspired by ncmpc and the likes. +# SITES: https://github.com/hrkfdn/ncspot \ No newline at end of file diff --git a/apps/ncspot.md b/apps/ncspot.md deleted file mode 100644 index 20f59bc5e..000000000 --- a/apps/ncspot.md +++ /dev/null @@ -1,8 +0,0 @@ -# NCSPOT - - Cross-platform ncurses Spotify client written in Rust, inspired by ncmpc and the likes. - - SITE: https://github.com/hrkfdn/ncspot - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/neanes b/apps/neanes new file mode 100644 index 000000000..e216e837e --- /dev/null +++ b/apps/neanes @@ -0,0 +1,3 @@ +# neanes +A free and open source scorewriter for notating Byzantine chant in Byzantine notation. +# SITES: https://danielgarthur.github.io/neanes/ \ No newline at end of file diff --git a/apps/neanes.md b/apps/neanes.md deleted file mode 100644 index 4e2f3ca87..000000000 --- a/apps/neanes.md +++ /dev/null @@ -1,8 +0,0 @@ -# NEANES - - A free and open source scorewriter for notating Byzantine chant in Byzantine notation. - - SITE: https://danielgarthur.github.io/neanes/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/negpy b/apps/negpy new file mode 100644 index 000000000..435a354f1 --- /dev/null +++ b/apps/negpy @@ -0,0 +1,3 @@ +# negpy +Tool for processing film negatives. +# SITES: https://github.com/marcinz606/negpy \ No newline at end of file diff --git a/apps/negpy.md b/apps/negpy.md deleted file mode 100644 index f661f2dd0..000000000 --- a/apps/negpy.md +++ /dev/null @@ -1,8 +0,0 @@ -# NEGPY - - Tool for processing film negatives. - - SITE: https://github.com/marcinz606/negpy - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/neko b/apps/neko new file mode 100644 index 000000000..8b579f5ec --- /dev/null +++ b/apps/neko @@ -0,0 +1,3 @@ +# neko +Neko is a cross-platform cursor-chasing cat. This is the reimplementation write in Go. +# SITES: https://github.com/crgimenes/neko \ No newline at end of file diff --git a/apps/neko-project-ii-kai b/apps/neko-project-ii-kai new file mode 100644 index 000000000..8e4403996 --- /dev/null +++ b/apps/neko-project-ii-kai @@ -0,0 +1,3 @@ +# neko-project-ii-kai +Unofficial, a PC-9801 series emulator. +# SITES: https://github.com/pkgforge-dev/Neko-Project-II-Kai-AppImage \ No newline at end of file diff --git a/apps/neko-project-ii-kai.md b/apps/neko-project-ii-kai.md deleted file mode 100644 index a0214c69e..000000000 --- a/apps/neko-project-ii-kai.md +++ /dev/null @@ -1,8 +0,0 @@ -# NEKO-PROJECT-II-KAI - - Unofficial, a PC-9801 series emulator. - - SITE: https://github.com/pkgforge-dev/Neko-Project-II-Kai-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/neko.md b/apps/neko.md deleted file mode 100644 index f94d7e4b4..000000000 --- a/apps/neko.md +++ /dev/null @@ -1,8 +0,0 @@ -# NEKO - - Neko is a cross-platform cursor-chasing cat. This is the reimplementation write in Go. - - SITE: https://github.com/crgimenes/neko - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/neochat b/apps/neochat new file mode 100644 index 000000000..3ebdefe20 --- /dev/null +++ b/apps/neochat @@ -0,0 +1,4 @@ +# neochat + Unofficial AppImage of NeoChat. +# SITES: https://github.com/pkgforge-dev/neochat-appimage +# SOURCES: https://github.com/pkgforge-dev/neochat-appimage \ No newline at end of file diff --git a/apps/neochat.md b/apps/neochat.md deleted file mode 100644 index 5fa3d9fb4..000000000 --- a/apps/neochat.md +++ /dev/null @@ -1,8 +0,0 @@ -# NEOCHAT - - Unofficial AppImage of NeoChat. - - SITE: https://github.com/pkgforge-dev/neochat-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/neohtop b/apps/neohtop new file mode 100644 index 000000000..934495ed4 --- /dev/null +++ b/apps/neohtop @@ -0,0 +1,3 @@ +# neohtop +💪🏻 htop on steroids +# SITES: https://github.com/Abdenasser/neohtop \ No newline at end of file diff --git a/apps/neohtop.md b/apps/neohtop.md deleted file mode 100644 index ae021140e..000000000 --- a/apps/neohtop.md +++ /dev/null @@ -1,8 +0,0 @@ -# NEOHTOP - - 💪🏻 htop on steroids - - SITE: https://github.com/Abdenasser/neohtop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/neon b/apps/neon new file mode 100644 index 000000000..acd95de93 --- /dev/null +++ b/apps/neon @@ -0,0 +1,3 @@ +# neon +Light wallet for NEO blockchain +# SITES: https://github.com/CityOfZion/neon-wallet \ No newline at end of file diff --git a/apps/neon.md b/apps/neon.md deleted file mode 100644 index 7b82ef756..000000000 --- a/apps/neon.md +++ /dev/null @@ -1,8 +0,0 @@ -# NEON - - Light wallet for NEO blockchain - - SITE: https://github.com/CityOfZion/neon-wallet - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/neovide b/apps/neovide new file mode 100644 index 000000000..50b9250d0 --- /dev/null +++ b/apps/neovide @@ -0,0 +1,6 @@ +# neovide +This is a simple graphical user interface for Neovim (an aggressively refactored and updated Vim editor). Where possible there are some graphical improvements, but functionally it should act like the terminal UI. + + To checkout all the cool features, installation instructions, configuration settings and much more, head on over to neovide.dev. +# SCREENSHOTS: https://raw.githubusercontent.com/neovide/neovide/main/website/docs/assets/BasicScreenCap.png +# SITES: https://neovide.dev \ No newline at end of file diff --git a/apps/neovide.md b/apps/neovide.md deleted file mode 100644 index f237a3290..000000000 --- a/apps/neovide.md +++ /dev/null @@ -1,14 +0,0 @@ -# NEOVIDE - - This is a simple graphical user interface for Neovim (an aggressively refactored and updated Vim editor). Where possible there are some graphical improvements, but functionally it should act like the terminal UI. - - To checkout all the cool features, installation instructions, configuration settings and much more, head on over to neovide.dev. - - ![Screenshot](https://raw.githubusercontent.com/neovide/neovide/main/website/docs/assets/BasicScreenCap.png) - - SITE: https://neovide.dev - - REPO: https://github.com/neovide/neovide - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/nepaliunicode b/apps/nepaliunicode new file mode 100644 index 000000000..ebd54de20 --- /dev/null +++ b/apps/nepaliunicode @@ -0,0 +1,3 @@ +# nepaliunicode +An Unicode Converter app with support for Windows, OS X and GNU/Linux. +# SITES: https://github.com/nirooj56/nepaliunicode \ No newline at end of file diff --git a/apps/nepaliunicode.md b/apps/nepaliunicode.md deleted file mode 100644 index 80f38a359..000000000 --- a/apps/nepaliunicode.md +++ /dev/null @@ -1,8 +0,0 @@ -# NEPALIUNICODE - - An Unicode Converter app with support for Windows, OS X and GNU/Linux. - - SITE: https://github.com/nirooj56/nepaliunicode - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/nerdfetch b/apps/nerdfetch new file mode 100644 index 000000000..d12b61acd --- /dev/null +++ b/apps/nerdfetch @@ -0,0 +1,3 @@ +# nerdfetch +A POSIX *nix fetch script using Nerdfonts. +# SITES: https://github.com/ThatOneCalculator/NerdFetch \ No newline at end of file diff --git a/apps/nerdfetch.md b/apps/nerdfetch.md deleted file mode 100644 index a5deaa236..000000000 --- a/apps/nerdfetch.md +++ /dev/null @@ -1,8 +0,0 @@ -# NERDFETCH - - A POSIX *nix fetch script using Nerdfonts. - - SITE: https://github.com/ThatOneCalculator/NerdFetch - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/nerimity-desktop b/apps/nerimity-desktop new file mode 100644 index 000000000..3ccece7a2 --- /dev/null +++ b/apps/nerimity-desktop @@ -0,0 +1,3 @@ +# nerimity-desktop +Electron desktop app for Nerimity +# SITES: https://github.com/Nerimity/nerimity-desktop \ No newline at end of file diff --git a/apps/nerimity-desktop.md b/apps/nerimity-desktop.md deleted file mode 100644 index 956527ac6..000000000 --- a/apps/nerimity-desktop.md +++ /dev/null @@ -1,8 +0,0 @@ -# NERIMITY-DESKTOP - - Electron desktop app for Nerimity - - SITE: https://github.com/Nerimity/nerimity-desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/nest-desktop b/apps/nest-desktop new file mode 100644 index 000000000..68a775a83 --- /dev/null +++ b/apps/nest-desktop @@ -0,0 +1,3 @@ +# nest-desktop +An AppImage of NEST Desktop, a web-based GUI application for NEST Simulator. +# SITES: https://github.com/nest-desktop/nest-desktop-AppImage \ No newline at end of file diff --git a/apps/nest-desktop.md b/apps/nest-desktop.md deleted file mode 100644 index 1f0c6c5bb..000000000 --- a/apps/nest-desktop.md +++ /dev/null @@ -1,8 +0,0 @@ -# NEST-DESKTOP - - An AppImage of NEST Desktop, a web-based GUI application for NEST Simulator. - - SITE: https://github.com/nest-desktop/nest-desktop-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/nestopia b/apps/nestopia new file mode 100644 index 000000000..ef63eb785 --- /dev/null +++ b/apps/nestopia @@ -0,0 +1,3 @@ +# nestopia +Unofficial, Cross-platform Nestopia NES emulator core with a GUI. +# SITES: https://github.com/pkgforge-dev/Nestopia-AppImage \ No newline at end of file diff --git a/apps/nestopia.md b/apps/nestopia.md deleted file mode 100644 index 0104d3846..000000000 --- a/apps/nestopia.md +++ /dev/null @@ -1,8 +0,0 @@ -# NESTOPIA - - Unofficial, Cross-platform Nestopia NES emulator core with a GUI. - - SITE: https://github.com/pkgforge-dev/Nestopia-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/netbeans b/apps/netbeans new file mode 100644 index 000000000..4212d4600 --- /dev/null +++ b/apps/netbeans @@ -0,0 +1,3 @@ +# netbeans +Apache NetBeans installers +# SITES: https://github.com/codelerity/netbeans-installers \ No newline at end of file diff --git a/apps/netbeans.md b/apps/netbeans.md deleted file mode 100644 index 366854d1d..000000000 --- a/apps/netbeans.md +++ /dev/null @@ -1,8 +0,0 @@ -# NETBEANS - - Apache NetBeans installers - - SITE: https://github.com/codelerity/netbeans-installers - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/netpad b/apps/netpad new file mode 100644 index 000000000..d98496c77 --- /dev/null +++ b/apps/netpad @@ -0,0 +1,3 @@ +# netpad +A cross-platform C# editor and playground. +# SITES: https://github.com/tareqimbasher/NetPad \ No newline at end of file diff --git a/apps/netpad.md b/apps/netpad.md deleted file mode 100644 index 2a28c4fd2..000000000 --- a/apps/netpad.md +++ /dev/null @@ -1,8 +0,0 @@ -# NETPAD - - A cross-platform C# editor and playground. - - SITE: https://github.com/tareqimbasher/NetPad - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/netpanzer b/apps/netpanzer new file mode 100644 index 000000000..8786631aa --- /dev/null +++ b/apps/netpanzer @@ -0,0 +1,4 @@ +# netpanzer +NetPanzer is an online multiplayer tactical warfare game designed for fast action combat. +# SCREENSHOTS: https://upload.wikimedia.org/wikipedia/commons/c/cd/NetPanzer_Screenshot54.jpg +# SITES: https://github.com/netpanzer/netpanzer \ No newline at end of file diff --git a/apps/netpanzer.md b/apps/netpanzer.md deleted file mode 100644 index 64742abe4..000000000 --- a/apps/netpanzer.md +++ /dev/null @@ -1,10 +0,0 @@ -# NETPANZER - - NetPanzer is an online multiplayer tactical warfare game designed for fast action combat. - - ![Screenshot](https://upload.wikimedia.org/wikipedia/commons/c/cd/NetPanzer_Screenshot54.jpg) - - SITE: https://github.com/netpanzer/netpanzer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/neverball b/apps/neverball new file mode 100644 index 000000000..e380f6099 --- /dev/null +++ b/apps/neverball @@ -0,0 +1,3 @@ +# neverball +Unofficial, tilt the floor to roll a ball through an obstacle course before time runs out. +# SITES: https://github.com/pkgforge-dev/Neverball-AppImage \ No newline at end of file diff --git a/apps/neverball.md b/apps/neverball.md deleted file mode 100644 index 76ae326e2..000000000 --- a/apps/neverball.md +++ /dev/null @@ -1,8 +0,0 @@ -# NEVERBALL - - Unofficial, tilt the floor to roll a ball through an obstacle course before time runs out. - - SITE: https://github.com/pkgforge-dev/Neverball-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/newlogic b/apps/newlogic new file mode 100644 index 000000000..343b9ce92 --- /dev/null +++ b/apps/newlogic @@ -0,0 +1,3 @@ +# newlogic +A circuit builder +# SITES: https://github.com/ericm/newlogic \ No newline at end of file diff --git a/apps/newlogic.md b/apps/newlogic.md deleted file mode 100644 index e9a3ea298..000000000 --- a/apps/newlogic.md +++ /dev/null @@ -1,8 +0,0 @@ -# NEWLOGIC - - A circuit builder - - SITE: https://github.com/ericm/newlogic - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/newsflash b/apps/newsflash new file mode 100644 index 000000000..485a357e7 --- /dev/null +++ b/apps/newsflash @@ -0,0 +1,3 @@ +# newsflash +Unofficial. RSS reader with support for local and web RSS feed. +# SITES: https://github.com/pkgforge-dev/NewsFlash-AppImage \ No newline at end of file diff --git a/apps/newsflash.md b/apps/newsflash.md deleted file mode 100644 index 1ad36aefa..000000000 --- a/apps/newsflash.md +++ /dev/null @@ -1,8 +0,0 @@ -# NEWSFLASH - - Unofficial. RSS reader with support for local and web RSS feed. - - SITE: https://github.com/pkgforge-dev/NewsFlash-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/newton-adventure b/apps/newton-adventure new file mode 100644 index 000000000..d1b72016c --- /dev/null +++ b/apps/newton-adventure @@ -0,0 +1,3 @@ +# newton-adventure +A 2D platformer with a twist, the player can rotate gravity at 360°. +# SITES: https://play.devnewton.fr \ No newline at end of file diff --git a/apps/newton-adventure.md b/apps/newton-adventure.md deleted file mode 100644 index 7aeca1fec..000000000 --- a/apps/newton-adventure.md +++ /dev/null @@ -1,8 +0,0 @@ -# NEWTON-ADVENTURE - - A 2D platformer with a twist, the player can rotate gravity at 360°. - - SITE: https://play.devnewton.fr - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/nexen b/apps/nexen new file mode 100644 index 000000000..3c4d454e1 --- /dev/null +++ b/apps/nexen @@ -0,0 +1,3 @@ +# nexen +Multi-system emulator (NES, SNES, GB, GBA, PCE, SMS/GG, WS). +# SITES: https://github.com/TheAnsarya/Nexen \ No newline at end of file diff --git a/apps/nexen.md b/apps/nexen.md deleted file mode 100644 index ab6647552..000000000 --- a/apps/nexen.md +++ /dev/null @@ -1,8 +0,0 @@ -# NEXEN - - Multi-system emulator (NES, SNES, GB, GBA, PCE, SMS/GG, WS). - - SITE: https://github.com/TheAnsarya/Nexen - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/nexis b/apps/nexis new file mode 100644 index 000000000..47bb2434d --- /dev/null +++ b/apps/nexis @@ -0,0 +1,3 @@ +# nexis +Linux & macOS system optimizer and monitor. Qt6 fork of Stacer with GPU monitoring, dark/light themes, and active maintenance. +# SITES: https://github.com/lsimpsonsfdc/Nexis \ No newline at end of file diff --git a/apps/nexis.md b/apps/nexis.md deleted file mode 100644 index 12071b578..000000000 --- a/apps/nexis.md +++ /dev/null @@ -1,8 +0,0 @@ -# NEXIS - - Linux & macOS system optimizer and monitor. Qt6 fork of Stacer with GPU monitoring, dark/light themes, and active maintenance. - - SITE: https://github.com/lsimpsonsfdc/Nexis - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/nextcloud b/apps/nextcloud new file mode 100644 index 000000000..d215b9441 --- /dev/null +++ b/apps/nextcloud @@ -0,0 +1,10 @@ +# nextcloud +Nextcloud Hub is the first completely integrated on-premises content collaboration platform on the market, ready for a new generation of users who expect seamless online collaboration capabilities out of the box. + + Protect, control and monitor data and communication across your company. Guarantee compliance with business and legal requirements. Keep your data on servers you own, at all times. Nothing leaks, not even metadata. + + Enable productivity across any platform, whether in the office or on the road, to share, collaborate and communicate across organizational boundaries. Nextcloud provides transparent access to data on any storage. + + Enjoy constant improvements from a thriving and transparent, entirely open-source community development model, free of lockins or paywalls. + Enjoy the benefits of enterprise support when you need it. +# SITES: https://nextcloud.com \ No newline at end of file diff --git a/apps/nextcloud.md b/apps/nextcloud.md deleted file mode 100644 index a40b195b1..000000000 --- a/apps/nextcloud.md +++ /dev/null @@ -1,15 +0,0 @@ -# NEXTCLOUD - - Nextcloud Hub is the first completely integrated on-premises content collaboration platform on the market, ready for a new generation of users who expect seamless online collaboration capabilities out of the box. - - Protect, control and monitor data and communication across your company. Guarantee compliance with business and legal requirements. Keep your data on servers you own, at all times. Nothing leaks, not even metadata. - - Enable productivity across any platform, whether in the office or on the road, to share, collaborate and communicate across organizational boundaries. Nextcloud provides transparent access to data on any storage. - - Enjoy constant improvements from a thriving and transparent, entirely open-source community development model, free of lockins or paywalls. - Enjoy the benefits of enterprise support when you need it. - - SITE: https://nextcloud.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/nextplayer b/apps/nextplayer new file mode 100644 index 000000000..101fb2fc8 --- /dev/null +++ b/apps/nextplayer @@ -0,0 +1,3 @@ +# nextplayer +A blue-ray player for MacOS, Linux and FreeBSD, originally named TheNewPlayerFree. +# SITES: https://sudormroot.github.io/nextplayer-project/ \ No newline at end of file diff --git a/apps/nextplayer.md b/apps/nextplayer.md deleted file mode 100644 index 345758cea..000000000 --- a/apps/nextplayer.md +++ /dev/null @@ -1,8 +0,0 @@ -# NEXTPLAYER - - A blue-ray player for MacOS, Linux and FreeBSD, originally named TheNewPlayerFree. - - SITE: https://sudormroot.github.io/nextplayer-project/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/nexus-mods b/apps/nexus-mods new file mode 100644 index 000000000..6f591571d --- /dev/null +++ b/apps/nexus-mods @@ -0,0 +1,6 @@ +# nexus-mods +Nexus Mods App is a mod installer, creator and manager for all your popular games. Easy to use, runs on your standard Windows PC and Linux alike. + + Don't waste time troubleshooting, play your games, fill those knees with + arrows and most importantly, Have Fun! +# SITES: https://github.com/Nexus-Mods/NexusMods.App \ No newline at end of file diff --git a/apps/nexus-mods.md b/apps/nexus-mods.md deleted file mode 100644 index f14ccb040..000000000 --- a/apps/nexus-mods.md +++ /dev/null @@ -1,11 +0,0 @@ -# NEXUS-MODS - - Nexus Mods App is a mod installer, creator and manager for all your popular games. Easy to use, runs on your standard Windows PC and Linux alike. - - Don't waste time troubleshooting, play your games, fill those knees with - arrows and most importantly, Have Fun! - - SITE: https://github.com/Nexus-Mods/NexusMods.App - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/nexus-wallet b/apps/nexus-wallet new file mode 100644 index 000000000..8cdd9fa00 --- /dev/null +++ b/apps/nexus-wallet @@ -0,0 +1,3 @@ +# nexus-wallet +The official Logical and Interface layers of the Nexus Software Stack. +# SITES: https://github.com/Nexusoft/NexusInterface \ No newline at end of file diff --git a/apps/nexus-wallet.md b/apps/nexus-wallet.md deleted file mode 100644 index 1978ef7c1..000000000 --- a/apps/nexus-wallet.md +++ /dev/null @@ -1,8 +0,0 @@ -# NEXUS-WALLET - - The official Logical and Interface layers of the Nexus Software Stack. - - SITE: https://github.com/Nexusoft/NexusInterface - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/nfctools b/apps/nfctools new file mode 100644 index 000000000..08327c679 --- /dev/null +++ b/apps/nfctools @@ -0,0 +1,3 @@ +# nfctools +A library which allows userspace application access to NFC devices. +# SITES: https://github.com/nfc-tools/libnfc \ No newline at end of file diff --git a/apps/nfctools.md b/apps/nfctools.md deleted file mode 100644 index b27c1456c..000000000 --- a/apps/nfctools.md +++ /dev/null @@ -1,8 +0,0 @@ -# NFCTOOLS - - A library which allows userspace application access to NFC devices. - - SITE: https://github.com/nfc-tools/libnfc - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/nfsiise b/apps/nfsiise new file mode 100644 index 000000000..c5f073f5a --- /dev/null +++ b/apps/nfsiise @@ -0,0 +1,3 @@ +# nfsiise +Unofficial, Need For Speed™ II SE, cross-platform wrapper with 3D acceleration and TCP protocol. +# SITES: https://github.com/pkgforge-dev/NFSIISE-AppImage \ No newline at end of file diff --git a/apps/nfsiise.md b/apps/nfsiise.md deleted file mode 100644 index 77b1ba96c..000000000 --- a/apps/nfsiise.md +++ /dev/null @@ -1,8 +0,0 @@ -# NFSIISE - - Unofficial, Need For Speed™ II SE, cross-platform wrapper with 3D acceleration and TCP protocol. - - SITE: https://github.com/pkgforge-dev/NFSIISE-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/ngpost b/apps/ngpost new file mode 100644 index 000000000..f60101cf5 --- /dev/null +++ b/apps/ngpost @@ -0,0 +1,3 @@ +# ngpost +Command Line (or minimalist GUI) usenet poster for binaries developped in C++/QT designed to be as fast as possible and offer all the main features to post data easily and safely. Releases for Linux, Windows and MacOS are available. +# SITES: https://github.com/mbruel/ngPost \ No newline at end of file diff --git a/apps/ngpost.md b/apps/ngpost.md deleted file mode 100644 index e931248a9..000000000 --- a/apps/ngpost.md +++ /dev/null @@ -1,7 +0,0 @@ -# NGPOST - - Command Line (or minimalist GUI) usenet poster for binaries developped in C++/QT designed to be as fast as possible and offer all the main features to post data easily and safely. Releases for Linux, Windows and MacOS are available. - - SITE: https://github.com/mbruel/ngPost - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ngrev b/apps/ngrev new file mode 100644 index 000000000..ea4822c31 --- /dev/null +++ b/apps/ngrev @@ -0,0 +1,3 @@ +# ngrev +Reverse Engineering for Angular +# SITES: https://github.com/mgechev/ngrev \ No newline at end of file diff --git a/apps/ngrev.md b/apps/ngrev.md deleted file mode 100644 index 6cbb443a8..000000000 --- a/apps/ngrev.md +++ /dev/null @@ -1,8 +0,0 @@ -# NGREV - - Reverse Engineering for Angular - - SITE: https://github.com/mgechev/ngrev - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/nheko b/apps/nheko new file mode 100644 index 000000000..e84104d10 --- /dev/null +++ b/apps/nheko @@ -0,0 +1,3 @@ +# nheko +Desktop client for Matrix +# SITES: https://github.com/Nheko-Reborn/nheko \ No newline at end of file diff --git a/apps/nheko.md b/apps/nheko.md deleted file mode 100644 index 43daa74db..000000000 --- a/apps/nheko.md +++ /dev/null @@ -1,8 +0,0 @@ -# NHEKO - - Desktop client for Matrix - - SITE: https://github.com/Nheko-Reborn/nheko - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/nice b/apps/nice new file mode 100644 index 000000000..642c47af1 --- /dev/null +++ b/apps/nice @@ -0,0 +1,4 @@ +# nice + Run a program with modified scheduling priority. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/nice.md b/apps/nice.md deleted file mode 100644 index 1baec985f..000000000 --- a/apps/nice.md +++ /dev/null @@ -1,8 +0,0 @@ -# NICE - - Run a program with modified scheduling priority. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/niffler b/apps/niffler new file mode 100644 index 000000000..40bac2dd5 --- /dev/null +++ b/apps/niffler @@ -0,0 +1,3 @@ +# niffler +Niffler, a grin gui wallet +# SITES: https://github.com/grinfans/niffler \ No newline at end of file diff --git a/apps/niffler.md b/apps/niffler.md deleted file mode 100644 index 5ccb63bfc..000000000 --- a/apps/niffler.md +++ /dev/null @@ -1,8 +0,0 @@ -# NIFFLER - - Niffler, a grin gui wallet - - SITE: https://github.com/grinfans/niffler - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/nightpdf b/apps/nightpdf new file mode 100644 index 000000000..10363bb49 --- /dev/null +++ b/apps/nightpdf @@ -0,0 +1,3 @@ +# nightpdf +Dark Mode PDF Reader built using Electron and PDF.js +# SITES: https://github.com/Lunarequest/NightPDF \ No newline at end of file diff --git a/apps/nightpdf.md b/apps/nightpdf.md deleted file mode 100644 index 191abb4e2..000000000 --- a/apps/nightpdf.md +++ /dev/null @@ -1,8 +0,0 @@ -# NIGHTPDF - - Dark Mode PDF Reader built using Electron and PDF.js - - SITE: https://github.com/Lunarequest/NightPDF - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/nightwave-plaza-electron b/apps/nightwave-plaza-electron new file mode 100644 index 000000000..1967a437d --- /dev/null +++ b/apps/nightwave-plaza-electron @@ -0,0 +1,3 @@ +# nightwave-plaza-electron +A https://plaza.one/ radio desktop app. +# SITES: https://github.com/jjoshm/nightwave-plaza-electron \ No newline at end of file diff --git a/apps/nightwave-plaza-electron.md b/apps/nightwave-plaza-electron.md deleted file mode 100644 index e6439da1a..000000000 --- a/apps/nightwave-plaza-electron.md +++ /dev/null @@ -1,8 +0,0 @@ -# NIGHTWAVE-PLAZA-ELECTRON - - A https://plaza.one/ radio desktop app. - - SITE: https://github.com/jjoshm/nightwave-plaza-electron - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/nimbus-weather b/apps/nimbus-weather new file mode 100644 index 000000000..97a7de3ec --- /dev/null +++ b/apps/nimbus-weather @@ -0,0 +1,3 @@ +# nimbus-weather +A beautiful, open source weather app built using the Dark Sky API. +# SITES: https://github.com/tgrowden/nimbus-weather \ No newline at end of file diff --git a/apps/nimbus-weather.md b/apps/nimbus-weather.md deleted file mode 100644 index 849ae409b..000000000 --- a/apps/nimbus-weather.md +++ /dev/null @@ -1,7 +0,0 @@ -# NIMBUS-WEATHER - - A beautiful, open source weather app built using the Dark Sky API. - - SITE: https://github.com/tgrowden/nimbus-weather - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/nine b/apps/nine new file mode 100644 index 000000000..86f35fc7f --- /dev/null +++ b/apps/nine @@ -0,0 +1,3 @@ +# nine +Nine. is an open source desktop application for managing rental properties. +# SITES: https://github.com/xnodeoncode/nine \ No newline at end of file diff --git a/apps/nine.md b/apps/nine.md deleted file mode 100644 index 303a3280a..000000000 --- a/apps/nine.md +++ /dev/null @@ -1,8 +0,0 @@ -# NINE - - Nine. is an open source desktop application for managing rental properties. - - SITE: https://github.com/xnodeoncode/nine - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/nitch b/apps/nitch new file mode 100644 index 000000000..82972b4db --- /dev/null +++ b/apps/nitch @@ -0,0 +1,3 @@ +# nitch +Nitch - incredibly fast system fetch written in nim. +# SITES: https://github.com/ssleert/nitch \ No newline at end of file diff --git a/apps/nitch.md b/apps/nitch.md deleted file mode 100644 index f6cb329b1..000000000 --- a/apps/nitch.md +++ /dev/null @@ -1,8 +0,0 @@ -# NITCH - - Nitch - incredibly fast system fetch written in nim. - - SITE: https://github.com/ssleert/nitch - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/nitrogen b/apps/nitrogen new file mode 100644 index 000000000..d724a974e --- /dev/null +++ b/apps/nitrogen @@ -0,0 +1,4 @@ +# nitrogen + Unofficial AppImage of Nitrogen. +# SITES: https://github.com/pkgforge-dev/nitrogen-appimage +# SOURCES: https://github.com/pkgforge-dev/nitrogen-appimage \ No newline at end of file diff --git a/apps/nitrogen.md b/apps/nitrogen.md deleted file mode 100644 index 1e73229a3..000000000 --- a/apps/nitrogen.md +++ /dev/null @@ -1,8 +0,0 @@ -# NITROGEN - - Unofficial AppImage of Nitrogen. - - SITE: https://github.com/pkgforge-dev/nitrogen-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/nitrokey b/apps/nitrokey new file mode 100644 index 000000000..bddfd298d --- /dev/null +++ b/apps/nitrokey @@ -0,0 +1,3 @@ +# nitrokey +Manage your Nitrokey devices +# SITES: https://github.com/Nitrokey/nitrokey-app \ No newline at end of file diff --git a/apps/nitrokey.md b/apps/nitrokey.md deleted file mode 100644 index cdfeca844..000000000 --- a/apps/nitrokey.md +++ /dev/null @@ -1,8 +0,0 @@ -# NITROKEY - - Manage your Nitrokey devices - - SITE: https://github.com/Nitrokey/nitrokey-app - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/nix-bucks b/apps/nix-bucks new file mode 100644 index 000000000..ee0ba8a78 --- /dev/null +++ b/apps/nix-bucks @@ -0,0 +1,3 @@ +# nix-bucks +A money tracker: Your income and expenses at your control +# SITES: https://github.com/margual56/nix-bucks \ No newline at end of file diff --git a/apps/nix-bucks.md b/apps/nix-bucks.md deleted file mode 100644 index e8dd641c9..000000000 --- a/apps/nix-bucks.md +++ /dev/null @@ -1,8 +0,0 @@ -# NIX-BUCKS - - A money tracker: Your income and expenses at your control - - SITE: https://github.com/margual56/nix-bucks - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/nix-portable b/apps/nix-portable new file mode 100644 index 000000000..e7b86b9c0 --- /dev/null +++ b/apps/nix-portable @@ -0,0 +1,3 @@ +# nix-portable +Nix - Static, Permissionless, Installation-free, Pre-configured. Use nix on any linux system, rootless and configuration free. +# SITES: https://github.com/DavHau/nix-portable \ No newline at end of file diff --git a/apps/nix-portable.md b/apps/nix-portable.md deleted file mode 100644 index 2d15fbf28..000000000 --- a/apps/nix-portable.md +++ /dev/null @@ -1,8 +0,0 @@ -# NIX-PORTABLE - - Nix - Static, Permissionless, Installation-free, Pre-configured. Use nix on any linux system, rootless and configuration free. - - SITE: https://github.com/DavHau/nix-portable - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/nixnote b/apps/nixnote new file mode 100644 index 000000000..91e41ce4f --- /dev/null +++ b/apps/nixnote @@ -0,0 +1,3 @@ +# nixnote +Use with Evernote to remember everything +# SITES: https://github.com/robert7/nixnote2 \ No newline at end of file diff --git a/apps/nixnote.md b/apps/nixnote.md deleted file mode 100644 index e8766da4f..000000000 --- a/apps/nixnote.md +++ /dev/null @@ -1,8 +0,0 @@ -# NIXNOTE - - Use with Evernote to remember everything - - SITE: https://github.com/robert7/nixnote2 - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/nl b/apps/nl new file mode 100644 index 000000000..03195de91 --- /dev/null +++ b/apps/nl @@ -0,0 +1,4 @@ +# nl + Number lines of files. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/nl.md b/apps/nl.md deleted file mode 100644 index a09f4703d..000000000 --- a/apps/nl.md +++ /dev/null @@ -1,8 +0,0 @@ -# NL - - Number lines of files. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/nm b/apps/nm new file mode 100644 index 000000000..3765f21e8 --- /dev/null +++ b/apps/nm @@ -0,0 +1,4 @@ +# nm + From object files. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/nm.md b/apps/nm.md deleted file mode 100644 index 5f49b049e..000000000 --- a/apps/nm.md +++ /dev/null @@ -1,8 +0,0 @@ -# NM - - From object files. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/nmeasimulator b/apps/nmeasimulator new file mode 100644 index 000000000..0ce064933 --- /dev/null +++ b/apps/nmeasimulator @@ -0,0 +1,3 @@ +# nmeasimulator +NMEA sentence generator utility that can broadcast via TCP, Web Socket +# SITES: https://github.com/panaaj/nmeasimulator \ No newline at end of file diff --git a/apps/nmeasimulator.md b/apps/nmeasimulator.md deleted file mode 100644 index ea01ff16f..000000000 --- a/apps/nmeasimulator.md +++ /dev/null @@ -1,8 +0,0 @@ -# NMEASIMULATOR - - NMEA sentence generator utility that can broadcast via TCP, Web Socket - - SITE: https://github.com/panaaj/nmeasimulator - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/nnn b/apps/nnn new file mode 100644 index 000000000..5ac194eb4 --- /dev/null +++ b/apps/nnn @@ -0,0 +1,3 @@ +# nnn +n³ The unorthodox terminal file manager +# SITES: https://github.com/jarun/nnn \ No newline at end of file diff --git a/apps/nnn.md b/apps/nnn.md deleted file mode 100644 index 523064c47..000000000 --- a/apps/nnn.md +++ /dev/null @@ -1,8 +0,0 @@ -# NNN - - n³ The unorthodox terminal file manager - - SITE: https://github.com/jarun/nnn - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/no-fwl b/apps/no-fwl new file mode 100644 index 000000000..0d4cef881 --- /dev/null +++ b/apps/no-fwl @@ -0,0 +1,3 @@ +# no-fwl +NoFWL Desktop Application. +# SITES: https://github.com/lencx/nofwl \ No newline at end of file diff --git a/apps/no-fwl.md b/apps/no-fwl.md deleted file mode 100644 index 6fd962743..000000000 --- a/apps/no-fwl.md +++ /dev/null @@ -1,8 +0,0 @@ -# NO-FWL - - NoFWL Desktop Application. - - SITE: https://github.com/lencx/nofwl - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/node b/apps/node new file mode 100644 index 000000000..34e46da8a --- /dev/null +++ b/apps/node @@ -0,0 +1,3 @@ +# node +Node.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine. +# SITES: https://nodejs.org \ No newline at end of file diff --git a/apps/node.md b/apps/node.md deleted file mode 100644 index 674ceee4d..000000000 --- a/apps/node.md +++ /dev/null @@ -1,13 +0,0 @@ -# NODE - - Node.js® is a free, open-source, cross-platform JavaScript runtime environment that lets developers create servers, web apps, command line tools and scripts. - - In addition to the "node" command, this script provides the following programs: - - - npm : Package manager for Node.js dependencies and modules. - - npx : Runs commands from npm packages without manual installation. - - SITE: https://nodejs.org - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/nodeflow b/apps/nodeflow new file mode 100644 index 000000000..e4050e5e6 --- /dev/null +++ b/apps/nodeflow @@ -0,0 +1,3 @@ +# nodeflow +An Editor for creating simple or complex OCR workflows. +# SITES: https://github.com/maxnth/NodeFlow \ No newline at end of file diff --git a/apps/nodeflow.md b/apps/nodeflow.md deleted file mode 100644 index 92779b9d6..000000000 --- a/apps/nodeflow.md +++ /dev/null @@ -1,8 +0,0 @@ -# NODEFLOW - - An Editor for creating simple or complex OCR workflows. - - SITE: https://github.com/maxnth/NodeFlow - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/nodes b/apps/nodes new file mode 100644 index 000000000..94d8ce625 --- /dev/null +++ b/apps/nodes @@ -0,0 +1,3 @@ +# nodes +A new way to create with code. +# SITES: https://github.com/nodes-io/nodes-io \ No newline at end of file diff --git a/apps/nodes.md b/apps/nodes.md deleted file mode 100644 index 8b98061f6..000000000 --- a/apps/nodes.md +++ /dev/null @@ -1,8 +0,0 @@ -# NODES - - A new way to create with code. - - SITE: https://github.com/nodes-io/nodes-io - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/nohup b/apps/nohup new file mode 100644 index 000000000..869719e06 --- /dev/null +++ b/apps/nohup @@ -0,0 +1,4 @@ +# nohup + Run a command immune to hangups, with output to a. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/nohup.md b/apps/nohup.md deleted file mode 100644 index 5411a6b36..000000000 --- a/apps/nohup.md +++ /dev/null @@ -1,8 +0,0 @@ -# NOHUP - - Run a command immune to hangups, with output to a. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/noi b/apps/noi new file mode 100644 index 000000000..f8b8337c6 --- /dev/null +++ b/apps/noi @@ -0,0 +1,3 @@ +# noi +🚀 an AI-enhanced, customizable browser designed to streamline your digital experience. +# SITES: https://github.com/lencx/Noi \ No newline at end of file diff --git a/apps/noi.md b/apps/noi.md deleted file mode 100644 index 4381e4347..000000000 --- a/apps/noi.md +++ /dev/null @@ -1,8 +0,0 @@ -# NOI - - 🚀 an AI-enhanced, customizable browser designed to streamline your digital experience. - - SITE: https://github.com/lencx/Noi - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/nomacs b/apps/nomacs new file mode 100644 index 000000000..29a010b9a --- /dev/null +++ b/apps/nomacs @@ -0,0 +1,3 @@ +# nomacs +Unofficial, nomacs is a free, open source image viewer, which supports multiple platforms. +# SITES: https://github.com/pkgforge-dev/Nomacs-AppImage \ No newline at end of file diff --git a/apps/nomacs.md b/apps/nomacs.md deleted file mode 100644 index f5c62d1ba..000000000 --- a/apps/nomacs.md +++ /dev/null @@ -1,8 +0,0 @@ -# NOMACS - - Unofficial, nomacs is a free, open source image viewer, which supports multiple platforms. - - SITE: https://github.com/pkgforge-dev/Nomacs-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/nootka b/apps/nootka new file mode 100644 index 000000000..92eabd086 --- /dev/null +++ b/apps/nootka @@ -0,0 +1,3 @@ +# nootka +Application for learning musical score notation +# SITES: https://nootka.sourceforge.io \ No newline at end of file diff --git a/apps/nootka.md b/apps/nootka.md deleted file mode 100644 index ca6660b90..000000000 --- a/apps/nootka.md +++ /dev/null @@ -1,8 +0,0 @@ -# NOOTKA - - Application for learning musical score notation - - SITE: https://nootka.sourceforge.io - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/nora b/apps/nora new file mode 100644 index 000000000..7c6a61ce3 --- /dev/null +++ b/apps/nora @@ -0,0 +1,3 @@ +# nora +An elegant music player built using Electron and React. Inspired by Oto Music for Android by Piyush Mamidwar. +# SITES: https://github.com/Sandakan/Nora \ No newline at end of file diff --git a/apps/nora.md b/apps/nora.md deleted file mode 100644 index ec606da2b..000000000 --- a/apps/nora.md +++ /dev/null @@ -1,8 +0,0 @@ -# NORA - - An elegant music player built using Electron and React. Inspired by Oto Music for Android by Piyush Mamidwar. - - SITE: https://github.com/Sandakan/Nora - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/normcap b/apps/normcap new file mode 100644 index 000000000..57e07b669 --- /dev/null +++ b/apps/normcap @@ -0,0 +1,4 @@ +# normcap +OCR powered screen-capture tool to capture information instead of images. For Linux, macOS and Windows. +# SCREENSHOTS: https://raw.githubusercontent.com/dynobo/normcap/main/assets/normcap.gif +# SITES: https://dynobo.github.io/normcap \ No newline at end of file diff --git a/apps/normcap.md b/apps/normcap.md deleted file mode 100644 index ae2fe6b07..000000000 --- a/apps/normcap.md +++ /dev/null @@ -1,10 +0,0 @@ -# NORMCAP - - OCR powered screen-capture tool to capture information instead of images. For Linux, macOS and Windows. - - ![GIF](https://raw.githubusercontent.com/dynobo/normcap/main/assets/normcap.gif) - - SITE: https://dynobo.github.io/normcap - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/nosqlbooster b/apps/nosqlbooster new file mode 100644 index 000000000..59e60c149 --- /dev/null +++ b/apps/nosqlbooster @@ -0,0 +1,3 @@ +# nosqlbooster +Essential admin GUI for mongodb +# SITES: http://www.nosqlbooster.com \ No newline at end of file diff --git a/apps/nosqlbooster.md b/apps/nosqlbooster.md deleted file mode 100644 index 469e3aaca..000000000 --- a/apps/nosqlbooster.md +++ /dev/null @@ -1,8 +0,0 @@ -# NOSQLBOOSTER - - Essential admin GUI for mongodb - - SITE: http://www.nosqlbooster.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/notable b/apps/notable new file mode 100644 index 000000000..36fffe312 --- /dev/null +++ b/apps/notable @@ -0,0 +1,3 @@ +# notable +The Markdown-based note-taking app that doesn't suck. +# SITES: https://github.com/notable/notable \ No newline at end of file diff --git a/apps/notable.md b/apps/notable.md deleted file mode 100644 index 1c92789f7..000000000 --- a/apps/notable.md +++ /dev/null @@ -1,8 +0,0 @@ -# NOTABLE - - The Markdown-based note-taking app that doesn't suck. - - SITE: https://github.com/notable/notable - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/notedown b/apps/notedown new file mode 100644 index 000000000..bbd23020c --- /dev/null +++ b/apps/notedown @@ -0,0 +1,3 @@ +# notedown +Note taking with react + rust. For windows, mac and linux. +# SITES: https://github.com/ruralad/notedown \ No newline at end of file diff --git a/apps/notedown.md b/apps/notedown.md deleted file mode 100644 index a376c4c01..000000000 --- a/apps/notedown.md +++ /dev/null @@ -1,8 +0,0 @@ -# NOTEDOWN - - Note taking with react + rust. For windows, mac and linux. - - SITE: https://github.com/ruralad/notedown - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/notekit b/apps/notekit new file mode 100644 index 000000000..3c2ff5581 --- /dev/null +++ b/apps/notekit @@ -0,0 +1,3 @@ +# notekit +A GTK3 hierarchical markdown notetaking application with tablet support. +# SITES: https://github.com/blackhole89/notekit \ No newline at end of file diff --git a/apps/notekit.md b/apps/notekit.md deleted file mode 100644 index 7309aaad9..000000000 --- a/apps/notekit.md +++ /dev/null @@ -1,8 +0,0 @@ -# NOTEKIT - - A GTK3 hierarchical markdown notetaking application with tablet support. - - SITE: https://github.com/blackhole89/notekit - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/notemaster b/apps/notemaster new file mode 100644 index 000000000..cbcfba7b7 --- /dev/null +++ b/apps/notemaster @@ -0,0 +1,3 @@ +# notemaster +NoteMaster is a minimalist persistent note-taking app to help boost productivity. +# SITES: https://github.com/LiamRiddell/NoteMaster \ No newline at end of file diff --git a/apps/notemaster.md b/apps/notemaster.md deleted file mode 100644 index bcd86ce80..000000000 --- a/apps/notemaster.md +++ /dev/null @@ -1,8 +0,0 @@ -# NOTEMASTER - - NoteMaster is a minimalist persistent note-taking app to help boost productivity. - - SITE: https://github.com/LiamRiddell/NoteMaster - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/notepad++ b/apps/notepad++ new file mode 100644 index 000000000..b6e9f53f8 --- /dev/null +++ b/apps/notepad++ @@ -0,0 +1,3 @@ +# notepad++ +Unofficial Appimage of Notepad++ (with WINE prefix). +# SITES: https://github.com/mmtrt/notepad-plus-plus_AppImage \ No newline at end of file diff --git a/apps/notepad++.md b/apps/notepad++.md deleted file mode 100644 index 0fc1d9ac5..000000000 --- a/apps/notepad++.md +++ /dev/null @@ -1,8 +0,0 @@ -# NOTEPAD++ - - Unofficial Appimage of Notepad++ (with WINE prefix). - - SITE: https://github.com/mmtrt/notepad-plus-plus_AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/notepadnext b/apps/notepadnext new file mode 100644 index 000000000..8bcd92ad3 --- /dev/null +++ b/apps/notepadnext @@ -0,0 +1,3 @@ +# notepadnext +A cross-platform, reimplementation of Notepad++ +# SITES: https://github.com/dail8859/NotepadNext \ No newline at end of file diff --git a/apps/notepadnext.md b/apps/notepadnext.md deleted file mode 100644 index d050b0680..000000000 --- a/apps/notepadnext.md +++ /dev/null @@ -1,8 +0,0 @@ -# NOTEPADNEXT - - A cross-platform, reimplementation of Notepad++ - - SITE: https://github.com/dail8859/NotepadNext - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/noter b/apps/noter new file mode 100644 index 000000000..6eab6b303 --- /dev/null +++ b/apps/noter @@ -0,0 +1,3 @@ +# noter +Simple serial terminal application +# SITES: https://github.com/PabloF7/noter \ No newline at end of file diff --git a/apps/noter.md b/apps/noter.md deleted file mode 100644 index 4bdfd2831..000000000 --- a/apps/noter.md +++ /dev/null @@ -1,8 +0,0 @@ -# NOTER - - Simple serial terminal application - - SITE: https://github.com/PabloF7/noter - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/notes b/apps/notes new file mode 100644 index 000000000..a1328934f --- /dev/null +++ b/apps/notes @@ -0,0 +1,3 @@ +# notes +Note-taking application, write down your thoughts. +# SITES: https://github.com/nuttyartist/notes \ No newline at end of file diff --git a/apps/notes-nc b/apps/notes-nc new file mode 100644 index 000000000..6cdacfa24 --- /dev/null +++ b/apps/notes-nc @@ -0,0 +1,3 @@ +# notes-nc +Cross-platform Notes desktop application for markdown notes +# SITES: https://github.com/mscharley/notes-nc \ No newline at end of file diff --git a/apps/notes-nc.md b/apps/notes-nc.md deleted file mode 100644 index 4a9d68b94..000000000 --- a/apps/notes-nc.md +++ /dev/null @@ -1,8 +0,0 @@ -# NOTES-NC - - Cross-platform Notes desktop application for markdown notes - - SITE: https://github.com/mscharley/notes-nc - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/notes.md b/apps/notes.md deleted file mode 100644 index f08af3a06..000000000 --- a/apps/notes.md +++ /dev/null @@ -1,8 +0,0 @@ -# NOTES - - Note-taking application, write down your thoughts. - - SITE: https://github.com/nuttyartist/notes - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/noteshrink-qt b/apps/noteshrink-qt new file mode 100644 index 000000000..aadd41a99 --- /dev/null +++ b/apps/noteshrink-qt @@ -0,0 +1,3 @@ +# noteshrink-qt +Qt GUI for noteshrink.py with preview and pre-processing options. +# SITES: https://github.com/clapautius/noteshrink-qt \ No newline at end of file diff --git a/apps/noteshrink-qt.md b/apps/noteshrink-qt.md deleted file mode 100644 index 5718bb1c5..000000000 --- a/apps/noteshrink-qt.md +++ /dev/null @@ -1,8 +0,0 @@ -# NOTESHRINK-QT - - Qt GUI for noteshrink.py with preview and pre-processing options. - - SITE: https://github.com/clapautius/noteshrink-qt - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/notesnook b/apps/notesnook new file mode 100644 index 000000000..6703234e2 --- /dev/null +++ b/apps/notesnook @@ -0,0 +1,3 @@ +# notesnook +A simple & easy to use private note-taking app that encrypts everything on the client side. +# SITES: https://github.com/streetwriters/notesnook \ No newline at end of file diff --git a/apps/notesnook.md b/apps/notesnook.md deleted file mode 100644 index e32ed5672..000000000 --- a/apps/notesnook.md +++ /dev/null @@ -1,8 +0,0 @@ -# NOTESNOOK - - A simple & easy to use private note-taking app that encrypts everything on the client side. - - SITE: https://github.com/streetwriters/notesnook - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/notify-send b/apps/notify-send new file mode 100644 index 000000000..256db7753 --- /dev/null +++ b/apps/notify-send @@ -0,0 +1,3 @@ +# notify-send +A program to send desktop notifications. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/notify-send.md b/apps/notify-send.md deleted file mode 100644 index 826118fa7..000000000 --- a/apps/notify-send.md +++ /dev/null @@ -1,8 +0,0 @@ -# NOTIFY-SEND - - A program to send desktop notifications. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/novelwriter b/apps/novelwriter new file mode 100644 index 000000000..35d4262e8 --- /dev/null +++ b/apps/novelwriter @@ -0,0 +1,3 @@ +# novelwriter +novelWriter is an open source plain text editor designed for writing novels. It supports a minimal markdown-like syntax for formatting text. It is written with Python 3 (3.9+) and Qt 5 (5.15) for cross-platform support. +# SITES: https://github.com/vkbo/novelwriter \ No newline at end of file diff --git a/apps/novelwriter.md b/apps/novelwriter.md deleted file mode 100644 index 5e493d5e9..000000000 --- a/apps/novelwriter.md +++ /dev/null @@ -1,8 +0,0 @@ -# NOVELWRITER - - novelWriter is an open source plain text editor designed for writing novels. It supports a minimal markdown-like syntax for formatting text. It is written with Python 3 (3.9+) and Qt 5 (5.15) for cross-platform support. - - SITE: https://github.com/vkbo/novelwriter - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/npm b/apps/npm new file mode 100644 index 000000000..0630c62fc --- /dev/null +++ b/apps/npm @@ -0,0 +1,3 @@ +# npm +Node.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine. NPM is the package manager of NodeJS. +# SITES: https://nodejs.org \ No newline at end of file diff --git a/apps/npm.md b/apps/npm.md deleted file mode 100644 index 64d47b645..000000000 --- a/apps/npm.md +++ /dev/null @@ -1,13 +0,0 @@ -# NPM - - Node.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine. NPM is the package manager of NodeJS. - - USAGE: npm [arguments] - ./program [arguments] - - This is a transitional script needed to install "node". - - SITE: https://nodejs.org - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/nproc b/apps/nproc new file mode 100644 index 000000000..71b5a41b3 --- /dev/null +++ b/apps/nproc @@ -0,0 +1,4 @@ +# nproc + Print the number of processing units available. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/nproc.md b/apps/nproc.md deleted file mode 100644 index e26e36bde..000000000 --- a/apps/nproc.md +++ /dev/null @@ -1,8 +0,0 @@ -# NPROC - - Print the number of processing units available. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/nrf-connect b/apps/nrf-connect new file mode 100644 index 000000000..4c879b36b --- /dev/null +++ b/apps/nrf-connect @@ -0,0 +1,3 @@ +# nrf-connect +nRF Connect for Desktop is a cross-platform framework for desktop apps for development kits or dongles from Nordic Semiconductor. The framework provides a launcher and the general layout for selecting devices, navigation menus, logging, etc. Apps can decorate the standard components and use built-in libraries in order to create end-user tools. +# SITES: https://github.com/NordicSemiconductor/pc-nrfconnect-launcher \ No newline at end of file diff --git a/apps/nrf-connect.md b/apps/nrf-connect.md deleted file mode 100644 index 8efc7c12a..000000000 --- a/apps/nrf-connect.md +++ /dev/null @@ -1,7 +0,0 @@ -# NRF-CONNECT - - nRF Connect for Desktop is a cross-platform framework for desktop apps for development kits or dongles from Nordic Semiconductor. The framework provides a launcher and the general layout for selecting devices, navigation menus, logging, etc. Apps can decorate the standard components and use built-in libraries in order to create end-user tools. - - SITE: https://github.com/NordicSemiconductor/pc-nrfconnect-launcher - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/nsz b/apps/nsz new file mode 100644 index 000000000..629fc413f --- /dev/null +++ b/apps/nsz @@ -0,0 +1,3 @@ +# nsz +Unofficial, Homebrew compatible NSP/XCI compressor/decompressor. +# SITES: https://github.com/pkgforge-dev/NSZ-AppImage \ No newline at end of file diff --git a/apps/nsz.md b/apps/nsz.md deleted file mode 100644 index 0d6bddfdb..000000000 --- a/apps/nsz.md +++ /dev/null @@ -1,8 +0,0 @@ -# NSZ - - Unofficial, Homebrew compatible NSP/XCI compressor/decompressor. - - SITE: https://github.com/pkgforge-dev/NSZ-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ntfydesktop b/apps/ntfydesktop new file mode 100644 index 000000000..3d27cc380 --- /dev/null +++ b/apps/ntfydesktop @@ -0,0 +1,3 @@ +# ntfydesktop +A desktop client for ntfy. Allows you to subscribe to topics from any ntfy server and recieve notifications natively on the desktop. +# SITES: https://github.com/emmaexe/ntfyDesktop \ No newline at end of file diff --git a/apps/ntfydesktop.md b/apps/ntfydesktop.md deleted file mode 100644 index 524f22eb7..000000000 --- a/apps/ntfydesktop.md +++ /dev/null @@ -1,8 +0,0 @@ -# NTFYDESKTOP - - A desktop client for ntfy. Allows you to subscribe to topics from any ntfy server and recieve notifications natively on the desktop. - - SITE: https://github.com/emmaexe/ntfyDesktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ntsc-rs b/apps/ntsc-rs new file mode 100644 index 000000000..6352acf4c --- /dev/null +++ b/apps/ntsc-rs @@ -0,0 +1,3 @@ +# ntsc-rs +Free, open-source VHS effect. Standalone application + plugin (After Effects, Premiere, and OpenFX). +# SITES: https://github.com/valadaptive/ntsc-rs \ No newline at end of file diff --git a/apps/ntsc-rs.md b/apps/ntsc-rs.md deleted file mode 100644 index 56922704c..000000000 --- a/apps/ntsc-rs.md +++ /dev/null @@ -1,8 +0,0 @@ -# NTSC-RS - - Free, open-source VHS effect. Standalone application + plugin (After Effects, Premiere, and OpenFX). - - SITE: https://github.com/valadaptive/ntsc-rs - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/nu b/apps/nu new file mode 100644 index 000000000..a1c6b4007 --- /dev/null +++ b/apps/nu @@ -0,0 +1,3 @@ +# nu + +# SITES: https://github.com/x86_64-unknown-linux-gnu.tar.gz \ No newline at end of file diff --git a/apps/nu.md b/apps/nu.md deleted file mode 100644 index 1bff654cc..000000000 --- a/apps/nu.md +++ /dev/null @@ -1,8 +0,0 @@ -# NU - - - - SITE: https://github.com/x86_64-unknown-linux-gnu.tar.gz - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/nuclear b/apps/nuclear new file mode 100644 index 000000000..7b56fce6d --- /dev/null +++ b/apps/nuclear @@ -0,0 +1,3 @@ +# nuclear +Streaming music player that finds free music for you +# SITES: https://github.com/nukeop/nuclear \ No newline at end of file diff --git a/apps/nuclear.md b/apps/nuclear.md deleted file mode 100644 index 55b2b1854..000000000 --- a/apps/nuclear.md +++ /dev/null @@ -1,8 +0,0 @@ -# NUCLEAR - - Streaming music player that finds free music for you - - SITE: https://github.com/nukeop/nuclear - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/nuclia b/apps/nuclia new file mode 100644 index 000000000..5dcf9870a --- /dev/null +++ b/apps/nuclia @@ -0,0 +1,3 @@ +# nuclia +A low-code API to build an AI multi-language semantic search engine in minutes. For any data, including audios and videos, and any source. +# SITES: https://nuclia.com/ \ No newline at end of file diff --git a/apps/nuclia.md b/apps/nuclia.md deleted file mode 100644 index cdd9f5e89..000000000 --- a/apps/nuclia.md +++ /dev/null @@ -1,8 +0,0 @@ -# NUCLIA - - A low-code API to build an AI multi-language semantic search engine in minutes. For any data, including audios and videos, and any source. - - SITE: https://nuclia.com/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/nuclino b/apps/nuclino new file mode 100644 index 000000000..dfe9f6f32 --- /dev/null +++ b/apps/nuclino @@ -0,0 +1,3 @@ +# nuclino +A modern, simple, and blazingly fast way to collaborate – bring knowledge, docs, and projects together in one place. +# SITES: https://www.nuclino.com \ No newline at end of file diff --git a/apps/nuclino.md b/apps/nuclino.md deleted file mode 100644 index c16de3403..000000000 --- a/apps/nuclino.md +++ /dev/null @@ -1,8 +0,0 @@ -# NUCLINO - - A modern, simple, and blazingly fast way to collaborate – bring knowledge, docs, and projects together in one place. - - SITE: https://www.nuclino.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/nudelta b/apps/nudelta new file mode 100644 index 000000000..ce80e7279 --- /dev/null +++ b/apps/nudelta @@ -0,0 +1,3 @@ +# nudelta +Open source NuPhy Console alternative. +# SITES: https://github.com/donn/nudelta \ No newline at end of file diff --git a/apps/nudelta.md b/apps/nudelta.md deleted file mode 100644 index 7fa84b85c..000000000 --- a/apps/nudelta.md +++ /dev/null @@ -1,8 +0,0 @@ -# NUDELTA - - Open source NuPhy Console alternative. - - SITE: https://github.com/donn/nudelta - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/nugget-doom b/apps/nugget-doom new file mode 100644 index 000000000..c80ffb1dc --- /dev/null +++ b/apps/nugget-doom @@ -0,0 +1,3 @@ +# nugget-doom +Nugget Doom is a Doom game source port forked from Woof! with additional features. +# SITES: https://github.com/mralaux/nugget-doom \ No newline at end of file diff --git a/apps/nugget-doom-enhanced b/apps/nugget-doom-enhanced new file mode 100644 index 000000000..6edd9b3c5 --- /dev/null +++ b/apps/nugget-doom-enhanced @@ -0,0 +1,3 @@ +# nugget-doom-enhanced +Unofficial, a Doom source port forked from Woof! with additional features. +# SITES: https://github.com/pkgforge-dev/Nugget-Doom-AppImage-Enhanced \ No newline at end of file diff --git a/apps/nugget-doom-enhanced.md b/apps/nugget-doom-enhanced.md deleted file mode 100644 index b9f6f06b3..000000000 --- a/apps/nugget-doom-enhanced.md +++ /dev/null @@ -1,8 +0,0 @@ -# NUGGET-DOOM-ENHANCED - - Unofficial, a Doom source port forked from Woof! with additional features. - - SITE: https://github.com/pkgforge-dev/Nugget-Doom-AppImage-Enhanced - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/nugget-doom.md b/apps/nugget-doom.md deleted file mode 100644 index 9643a6d50..000000000 --- a/apps/nugget-doom.md +++ /dev/null @@ -1,8 +0,0 @@ -# NUGGET-DOOM - - Nugget Doom is a Doom game source port forked from Woof! with additional features. - - SITE: https://github.com/mralaux/nugget-doom - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/numara b/apps/numara new file mode 100644 index 000000000..e87ccfbd8 --- /dev/null +++ b/apps/numara @@ -0,0 +1,3 @@ +# numara +Simple notepad calculator built on Electron, powered by Math.js +# SITES: https://github.com/bornova/numara-calculator \ No newline at end of file diff --git a/apps/numara.md b/apps/numara.md deleted file mode 100644 index c06999502..000000000 --- a/apps/numara.md +++ /dev/null @@ -1,8 +0,0 @@ -# NUMARA - - Simple notepad calculator built on Electron, powered by Math.js - - SITE: https://github.com/bornova/numara-calculator - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/numfmt b/apps/numfmt new file mode 100644 index 000000000..45ef6fb2e --- /dev/null +++ b/apps/numfmt @@ -0,0 +1,4 @@ +# numfmt + From/to human-readable strings. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/numfmt.md b/apps/numfmt.md deleted file mode 100644 index 099d93856..000000000 --- a/apps/numfmt.md +++ /dev/null @@ -1,8 +0,0 @@ -# NUMFMT - - From/to human-readable strings. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/nunchuk b/apps/nunchuk new file mode 100644 index 000000000..9c2aa7c3a --- /dev/null +++ b/apps/nunchuk @@ -0,0 +1,3 @@ +# nunchuk +Desktop bitcoin wallet with multisig, hardware, nfc and air-gapped key support. +# SITES: https://github.com/nunchuk-io/nunchuk-desktop \ No newline at end of file diff --git a/apps/nunchuk.md b/apps/nunchuk.md deleted file mode 100644 index 2ce5a228a..000000000 --- a/apps/nunchuk.md +++ /dev/null @@ -1,8 +0,0 @@ -# NUNCHUK - - Desktop bitcoin wallet with multisig, hardware, nfc and air-gapped key support. - - SITE: https://github.com/nunchuk-io/nunchuk-desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/nvim b/apps/nvim new file mode 100644 index 000000000..6caccecf8 --- /dev/null +++ b/apps/nvim @@ -0,0 +1,3 @@ +# nvim +Vim-fork focused on extensibility and usability. +# SITES: https://github.com/neovim/neovim \ No newline at end of file diff --git a/apps/nvim-nightly b/apps/nvim-nightly new file mode 100644 index 000000000..5e5be89f4 --- /dev/null +++ b/apps/nvim-nightly @@ -0,0 +1,5 @@ +# nvim-nightly +Vim-fork focused on extensibility and usability. + + This is the most recent development build. +# SITES: https://github.com/neovim/neovim \ No newline at end of file diff --git a/apps/nvim-nightly.md b/apps/nvim-nightly.md deleted file mode 100644 index 149b5b8c2..000000000 --- a/apps/nvim-nightly.md +++ /dev/null @@ -1,10 +0,0 @@ -# NVIM-NIGHTLY - - Vim-fork focused on extensibility and usability. - - This is the most recent development build. - - SITE: https://github.com/neovim/neovim - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/nvim.md b/apps/nvim.md deleted file mode 100644 index af61bd3f6..000000000 --- a/apps/nvim.md +++ /dev/null @@ -1,8 +0,0 @@ -# NVIM - - Vim-fork focused on extensibility and usability. - - SITE: https://github.com/neovim/neovim - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/nvtop b/apps/nvtop new file mode 100644 index 000000000..96fc332b4 --- /dev/null +++ b/apps/nvtop @@ -0,0 +1,3 @@ +# nvtop +GPUs process monitoring for AMD, Intel and NVIDIA +# SITES: https://github.com/Syllo/nvtop \ No newline at end of file diff --git a/apps/nvtop.md b/apps/nvtop.md deleted file mode 100644 index 83d7ac75b..000000000 --- a/apps/nvtop.md +++ /dev/null @@ -1,8 +0,0 @@ -# NVTOP - - GPUs process monitoring for AMD, Intel and NVIDIA - - SITE: https://github.com/Syllo/nvtop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/nx-software-center b/apps/nx-software-center new file mode 100644 index 000000000..9bec67a82 --- /dev/null +++ b/apps/nx-software-center @@ -0,0 +1,5 @@ +# nx-software-center +NX Software Center. A GUI to install and manage AppImages. + + From Nitrux OS. +# SITES: https://github.com/Nitrux/nx-software-center \ No newline at end of file diff --git a/apps/nx-software-center.md b/apps/nx-software-center.md deleted file mode 100644 index ff724be38..000000000 --- a/apps/nx-software-center.md +++ /dev/null @@ -1,9 +0,0 @@ -# NX-SOFTWARE-CENTER - - NX Software Center. A GUI to install and manage AppImages. - - From Nitrux OS. - - SITE: https://github.com/Nitrux/nx-software-center - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/nxengine-evo b/apps/nxengine-evo new file mode 100644 index 000000000..9e5046492 --- /dev/null +++ b/apps/nxengine-evo @@ -0,0 +1,3 @@ +# nxengine-evo +A somewhat upgraded/refactored version of NXEngine. +# SITES: https://github.com/nxengine/nxengine-evo \ No newline at end of file diff --git a/apps/nxengine-evo-enhanced b/apps/nxengine-evo-enhanced new file mode 100644 index 000000000..ef60cd76b --- /dev/null +++ b/apps/nxengine-evo-enhanced @@ -0,0 +1,3 @@ +# nxengine-evo-enhanced +Unofficial, a somewhat upgraded/refactored version of NXEngine. +# SITES: https://github.com/pkgforge-dev/NXEngine-evo-AppImage-Enhanced \ No newline at end of file diff --git a/apps/nxengine-evo-enhanced.md b/apps/nxengine-evo-enhanced.md deleted file mode 100644 index c958b9b80..000000000 --- a/apps/nxengine-evo-enhanced.md +++ /dev/null @@ -1,8 +0,0 @@ -# NXENGINE-EVO-ENHANCED - - Unofficial, a somewhat upgraded/refactored version of NXEngine. - - SITE: https://github.com/pkgforge-dev/NXEngine-evo-AppImage-Enhanced - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/nxengine-evo.md b/apps/nxengine-evo.md deleted file mode 100644 index 7e8ac47b2..000000000 --- a/apps/nxengine-evo.md +++ /dev/null @@ -1,8 +0,0 @@ -# NXENGINE-EVO - - A somewhat upgraded/refactored version of NXEngine. - - SITE: https://github.com/nxengine/nxengine-evo - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/nxshell b/apps/nxshell new file mode 100644 index 000000000..bb06f159e --- /dev/null +++ b/apps/nxshell @@ -0,0 +1,3 @@ +# nxshell +An easy to use new terminal for Windows/Linux/MacOS platform. It like Xshell or SecureCRT or PuTTY shell client. +# SITES: https://github.com/nxshell/nxshell \ No newline at end of file diff --git a/apps/nxshell.md b/apps/nxshell.md deleted file mode 100644 index 3515ef281..000000000 --- a/apps/nxshell.md +++ /dev/null @@ -1,7 +0,0 @@ -# NXSHELL - - An easy to use new terminal for Windows/Linux/MacOS platform. It like Xshell or SecureCRT or PuTTY shell client. - - SITE: https://github.com/nxshell/nxshell - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/nyaa b/apps/nyaa new file mode 100644 index 000000000..4668f08c3 --- /dev/null +++ b/apps/nyaa @@ -0,0 +1,3 @@ +# nyaa +A nyaa.si tui tool for browsing and downloading torrents. +# SITES: https://github.com/Beastwick18/nyaa \ No newline at end of file diff --git a/apps/nyaa.md b/apps/nyaa.md deleted file mode 100644 index 2ccc4e3a1..000000000 --- a/apps/nyaa.md +++ /dev/null @@ -1,8 +0,0 @@ -# NYAA - - A nyaa.si tui tool for browsing and downloading torrents. - - SITE: https://github.com/Beastwick18/nyaa - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/nyan b/apps/nyan new file mode 100644 index 000000000..ff3865f20 --- /dev/null +++ b/apps/nyan @@ -0,0 +1,3 @@ +# nyan +Colored `cat` command. +# SITES: https://github.com/toshimaru/nyan \ No newline at end of file diff --git a/apps/nyan.md b/apps/nyan.md deleted file mode 100644 index 4ee1a3fa3..000000000 --- a/apps/nyan.md +++ /dev/null @@ -1,8 +0,0 @@ -# NYAN - - Colored `cat` command. - - SITE: https://github.com/toshimaru/nyan - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/nychess b/apps/nychess new file mode 100644 index 000000000..4f807fd54 --- /dev/null +++ b/apps/nychess @@ -0,0 +1,3 @@ +# nychess +A python Chess Engine and AI. +# SITES: https://github.com/nnisarggada/NyChess \ No newline at end of file diff --git a/apps/nychess.md b/apps/nychess.md deleted file mode 100644 index 5f6ce3f59..000000000 --- a/apps/nychess.md +++ /dev/null @@ -1,8 +0,0 @@ -# NYCHESS - - A python Chess Engine and AI. - - SITE: https://github.com/nnisarggada/NyChess - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/nym-vpn b/apps/nym-vpn new file mode 100644 index 000000000..418274c7b --- /dev/null +++ b/apps/nym-vpn @@ -0,0 +1,4 @@ +# nym-vpn +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. +# SITES: https://nym.com +# SOURCES: https://github.com/nymtech/nym-vpn-client \ No newline at end of file diff --git a/apps/nym-vpn.md b/apps/nym-vpn.md deleted file mode 100644 index 70a1ca826..000000000 --- a/apps/nym-vpn.md +++ /dev/null @@ -1,10 +0,0 @@ -# NYM-VPN - - 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. - - SITE: https://nym.com - - SOURCE: https://github.com/nymtech/nym-vpn-client - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/nym-wallet b/apps/nym-wallet new file mode 100644 index 000000000..675c62bc1 --- /dev/null +++ b/apps/nym-wallet @@ -0,0 +1,3 @@ +# nym-wallet +The Nym desktop wallet enables you to use the Nym network and take advantage of its key capabilities. +# SITES: https://github.com/nymtech/nym/tree/develop/nym-wallet \ No newline at end of file diff --git a/apps/nym-wallet.md b/apps/nym-wallet.md deleted file mode 100644 index 801931928..000000000 --- a/apps/nym-wallet.md +++ /dev/null @@ -1,8 +0,0 @@ -# NYM-WALLET - - The Nym desktop wallet enables you to use the Nym network and take advantage of its key capabilities. - - SITE: https://github.com/nymtech/nym/tree/develop/nym-wallet - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/nyrna b/apps/nyrna new file mode 100644 index 000000000..ae77e1a20 --- /dev/null +++ b/apps/nyrna @@ -0,0 +1,3 @@ +# nyrna +Suspend games and applications. +# SITES: https://github.com/Merrit/nyrna \ No newline at end of file diff --git a/apps/nyrna.md b/apps/nyrna.md deleted file mode 100644 index 4a711f37f..000000000 --- a/apps/nyrna.md +++ /dev/null @@ -1,8 +0,0 @@ -# NYRNA - - Suspend games and applications. - - SITE: https://github.com/Merrit/nyrna - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/objcopy b/apps/objcopy new file mode 100644 index 000000000..6150a1cf0 --- /dev/null +++ b/apps/objcopy @@ -0,0 +1,4 @@ +# objcopy + Translate object files. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/objcopy.md b/apps/objcopy.md deleted file mode 100644 index 00387d940..000000000 --- a/apps/objcopy.md +++ /dev/null @@ -1,8 +0,0 @@ -# OBJCOPY - - Translate object files. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/objdump b/apps/objdump new file mode 100644 index 000000000..3da6d0786 --- /dev/null +++ b/apps/objdump @@ -0,0 +1,4 @@ +# objdump + From object files. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/objdump.md b/apps/objdump.md deleted file mode 100644 index cd3be4d69..000000000 --- a/apps/objdump.md +++ /dev/null @@ -1,8 +0,0 @@ -# OBJDUMP - - From object files. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/obliqoro b/apps/obliqoro new file mode 100644 index 000000000..d9f18a65f --- /dev/null +++ b/apps/obliqoro @@ -0,0 +1,3 @@ +# obliqoro +A cross-platform tauri gui where Oblique Strategies meets Pomodoro +# SITES: https://github.com/mrjackwills/obliqoro \ No newline at end of file diff --git a/apps/obliqoro.md b/apps/obliqoro.md deleted file mode 100644 index 8654c49bd..000000000 --- a/apps/obliqoro.md +++ /dev/null @@ -1,8 +0,0 @@ -# OBLIQORO - - A cross-platform tauri gui where Oblique Strategies meets Pomodoro - - SITE: https://github.com/mrjackwills/obliqoro - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/oblivion-desktop b/apps/oblivion-desktop new file mode 100644 index 000000000..d147d945b --- /dev/null +++ b/apps/oblivion-desktop @@ -0,0 +1,3 @@ +# oblivion-desktop +Unofficial Warp Client, Oblivion provides a secure, optimised internet access. +# SITES: https://github.com/bepass-org/oblivion-desktop \ No newline at end of file diff --git a/apps/oblivion-desktop.md b/apps/oblivion-desktop.md deleted file mode 100644 index e3303202f..000000000 --- a/apps/oblivion-desktop.md +++ /dev/null @@ -1,8 +0,0 @@ -# OBLIVION-DESKTOP - - Unofficial Warp Client, Oblivion provides a secure, optimised internet access. - - SITE: https://github.com/bepass-org/oblivion-desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/obs-studio b/apps/obs-studio new file mode 100644 index 000000000..5a07aa977 --- /dev/null +++ b/apps/obs-studio @@ -0,0 +1,13 @@ +# obs-studio +OBS Studio is a free and open source software for video recording and live streaming. + + High performance real time video/audio capturing and mixing. Create scenes made up of multiple sources including window captures, images, text, browser windows, webcams, capture cards and more. + + This script lets you choose between: + - the unofficial AppImage that also works on musl systems + - the Archimage (AppImage based on JuNest, Arch Linux) which includes libcef and therefore browser support + - the same Archimage without libcef, and therefore about 100 MB smaller + + These are all unofficial builds. And they all work on older distributions too. +# SITES: https://obsproject.com +# SOURCES: https://github.com/pkgforge-dev/OBS-Studio-AppImage \ No newline at end of file diff --git a/apps/obs-studio.md b/apps/obs-studio.md deleted file mode 100644 index 1580a5472..000000000 --- a/apps/obs-studio.md +++ /dev/null @@ -1,21 +0,0 @@ -# OBS-STUDIO - - OBS Studio is a free and open source software for video recording and live streaming. - - High performance real time video/audio capturing and mixing. Create scenes made up of multiple sources including window captures, images, text, browser windows, webcams, capture cards and more. - - This script lets you choose between: - - the unofficial AppImage that also works on musl systems - - the Archimage (AppImage based on JuNest, Arch Linux) which includes libcef and therefore browser support - - the same Archimage without libcef, and therefore about 100 MB smaller - - These are all unofficial builds. And they all work on older distributions too. - - SITE: https://obsproject.com - - APPIMAGE: https://github.com/pkgforge-dev/OBS-Studio-AppImage - - ARCHIMAGE: https://github.com/ivan-hc/OBS-Studio-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/obsidian b/apps/obsidian new file mode 100644 index 000000000..e9b7e8f55 --- /dev/null +++ b/apps/obsidian @@ -0,0 +1,3 @@ +# obsidian +Obsidian is a powerful knowledge base on top of a local folder of plain text Markdown files. +# SITES: https://github.com/obsidianmd/obsidian-releases \ No newline at end of file diff --git a/apps/obsidian-cli b/apps/obsidian-cli new file mode 100644 index 000000000..c5b6710fb --- /dev/null +++ b/apps/obsidian-cli @@ -0,0 +1,3 @@ +# obsidian-cli +Interact with Obsidian in the terminal. Open, search, create, update, move and delete notes! +# SITES: https://github.com/Yakitrak/obsidian-cli \ No newline at end of file diff --git a/apps/obsidian-cli.md b/apps/obsidian-cli.md deleted file mode 100644 index 1b41a2381..000000000 --- a/apps/obsidian-cli.md +++ /dev/null @@ -1,8 +0,0 @@ -# OBSIDIAN-CLI - - Interact with Obsidian in the terminal. Open, search, create, update, move and delete notes! - - SITE: https://github.com/Yakitrak/obsidian-cli - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/obsidian.md b/apps/obsidian.md deleted file mode 100644 index 2a8a992ba..000000000 --- a/apps/obsidian.md +++ /dev/null @@ -1,8 +0,0 @@ -# OBSIDIAN - - Obsidian is a powerful knowledge base on top of a local folder of plain text Markdown files. - - SITE: https://github.com/obsidianmd/obsidian-releases - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/obsidianirc b/apps/obsidianirc new file mode 100644 index 000000000..eec57f5ad --- /dev/null +++ b/apps/obsidianirc @@ -0,0 +1,3 @@ +# obsidianirc +Modern IRC Client for the web, desktop and mobile. +# SITES: https://github.com/ObsidianIRC/ObsidianIRC \ No newline at end of file diff --git a/apps/obsidianirc.md b/apps/obsidianirc.md deleted file mode 100644 index 6c90dd458..000000000 --- a/apps/obsidianirc.md +++ /dev/null @@ -1,8 +0,0 @@ -# OBSIDIANIRC - - Modern IRC Client for the web, desktop and mobile. - - SITE: https://github.com/ObsidianIRC/ObsidianIRC - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/ocat b/apps/ocat new file mode 100644 index 000000000..5db8c97d2 --- /dev/null +++ b/apps/ocat @@ -0,0 +1,3 @@ +# ocat +OpenCore Auxiliary Tools is a GUI-based Configurator for editing config.plist files for Acidanthera's OpenCore Boot Manager. +# SITES: https://github.com/ic005k/OCAuxiliaryTools \ No newline at end of file diff --git a/apps/ocat.md b/apps/ocat.md deleted file mode 100644 index 676efe3ff..000000000 --- a/apps/ocat.md +++ /dev/null @@ -1,8 +0,0 @@ -# OCAT - - OpenCore Auxiliary Tools is a GUI-based Configurator for editing config.plist files for Acidanthera's OpenCore Boot Manager. - - SITE: https://github.com/ic005k/OCAuxiliaryTools - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ocenaudio b/apps/ocenaudio new file mode 100644 index 000000000..d755f148d --- /dev/null +++ b/apps/ocenaudio @@ -0,0 +1,5 @@ +# ocenaudio +OcenAudio - Complete and User friendly Audio Editor. +# SCREENSHOTS: https://user-images.githubusercontent.com/88724353/236297308-01dfc549-1bec-4712-8131-e400d06a9ed8.jpg +# SITES: https://www.ocenaudio.com +# SOURCES: https://github.com/ivan-hc/ocenaudio-appimage \ No newline at end of file diff --git a/apps/ocenaudio.md b/apps/ocenaudio.md deleted file mode 100644 index 260a02cbb..000000000 --- a/apps/ocenaudio.md +++ /dev/null @@ -1,12 +0,0 @@ -# OCENAUDIO - - OcenAudio - Complete and User friendly Audio Editor. - - ![Screenshot](https://user-images.githubusercontent.com/88724353/236297308-01dfc549-1bec-4712-8131-e400d06a9ed8.jpg) - - SITE: https://www.ocenaudio.com - - APPIMAGE: https://github.com/ivan-hc/ocenaudio-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ocrmypdf b/apps/ocrmypdf new file mode 100644 index 000000000..437042e9c --- /dev/null +++ b/apps/ocrmypdf @@ -0,0 +1,4 @@ +# ocrmypdf + Unofficial AppImage of OCRmyPDF. +# SITES: https://github.com/pkgforge-dev/ocrmypdf-appimage +# SOURCES: https://github.com/pkgforge-dev/ocrmypdf-appimage \ No newline at end of file diff --git a/apps/ocrmypdf.md b/apps/ocrmypdf.md deleted file mode 100644 index d1a9599df..000000000 --- a/apps/ocrmypdf.md +++ /dev/null @@ -1,8 +0,0 @@ -# OCRMYPDF - - Unofficial AppImage of OCRmyPDF. - - SITE: https://github.com/pkgforge-dev/ocrmypdf-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/ocvvid2fulldome b/apps/ocvvid2fulldome new file mode 100644 index 000000000..f515bebbe --- /dev/null +++ b/apps/ocvvid2fulldome @@ -0,0 +1,3 @@ +# ocvvid2fulldome +Take flat videos, distort them to fit fulldome masters (180 degree fisheye projection) +# SITES: https://github.com/hn-88/OCVvid2fulldome \ No newline at end of file diff --git a/apps/ocvvid2fulldome.md b/apps/ocvvid2fulldome.md deleted file mode 100644 index 0de6e9bf8..000000000 --- a/apps/ocvvid2fulldome.md +++ /dev/null @@ -1,8 +0,0 @@ -# OCVVID2FULLDOME - - Take flat videos, distort them to fit fulldome masters (180 degree fisheye projection) - - SITE: https://github.com/hn-88/OCVvid2fulldome - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ocvwarp b/apps/ocvwarp new file mode 100644 index 000000000..6ba960d59 --- /dev/null +++ b/apps/ocvwarp @@ -0,0 +1,3 @@ +# ocvwarp +Warping images and videos for planetarium fulldome display using OpenCV +# SITES: https://github.com/hn-88/OCVWarp \ No newline at end of file diff --git a/apps/ocvwarp.md b/apps/ocvwarp.md deleted file mode 100644 index 79828598b..000000000 --- a/apps/ocvwarp.md +++ /dev/null @@ -1,8 +0,0 @@ -# OCVWARP - - Warping images and videos for planetarium fulldome display using OpenCV - - SITE: https://github.com/hn-88/OCVWarp - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/od b/apps/od new file mode 100644 index 000000000..7d0673de1 --- /dev/null +++ b/apps/od @@ -0,0 +1,4 @@ +# od + Dump files in octal and other formats. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/od.md b/apps/od.md deleted file mode 100644 index 6b255d1b9..000000000 --- a/apps/od.md +++ /dev/null @@ -1,8 +0,0 @@ -# OD - - Dump files in octal and other formats. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/odamex b/apps/odamex new file mode 100644 index 000000000..970b1a030 --- /dev/null +++ b/apps/odamex @@ -0,0 +1,3 @@ +# odamex +Unofficial, Online Multiplayer Doom port with a strong focus on the original gameplay while providing a breadth of enhancements. +# SITES: https://github.com/pkgforge-dev/Odamex-AppImage \ No newline at end of file diff --git a/apps/odamex.md b/apps/odamex.md deleted file mode 100644 index 0f3e94b0f..000000000 --- a/apps/odamex.md +++ /dev/null @@ -1,8 +0,0 @@ -# ODAMEX - - Unofficial, Online Multiplayer Doom port with a strong focus on the original gameplay while providing a breadth of enhancements. - - SITE: https://github.com/pkgforge-dev/Odamex-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/odicto b/apps/odicto new file mode 100644 index 000000000..909bd90c4 --- /dev/null +++ b/apps/odicto @@ -0,0 +1,3 @@ +# odicto +An offline English dictionary app for desktop. +# SITES: https://github.com/aandrew-me/odicto \ No newline at end of file diff --git a/apps/odicto.md b/apps/odicto.md deleted file mode 100644 index 0c1d725cb..000000000 --- a/apps/odicto.md +++ /dev/null @@ -1,8 +0,0 @@ -# ODICTO - - An offline English dictionary app for desktop. - - SITE: https://github.com/aandrew-me/odicto - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/oh b/apps/oh new file mode 100644 index 000000000..398f43e11 --- /dev/null +++ b/apps/oh @@ -0,0 +1,3 @@ +# oh +A new Unix shell. +# SITES: https://github.com/michaelmacinnis/oh \ No newline at end of file diff --git a/apps/oh-mymd b/apps/oh-mymd new file mode 100644 index 000000000..f3e2bf414 --- /dev/null +++ b/apps/oh-mymd @@ -0,0 +1,3 @@ +# oh-mymd +A markdown editor,support cloud sync. +# SITES: https://www.ohmymd.app/ \ No newline at end of file diff --git a/apps/oh-mymd.md b/apps/oh-mymd.md deleted file mode 100644 index 7f2431106..000000000 --- a/apps/oh-mymd.md +++ /dev/null @@ -1,8 +0,0 @@ -# OH-MYMD - - A markdown editor,support cloud sync. - - SITE: https://www.ohmymd.app/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/oh.md b/apps/oh.md deleted file mode 100644 index 2c9cafa21..000000000 --- a/apps/oh.md +++ /dev/null @@ -1,8 +0,0 @@ -# OH - - A new Unix shell. - - SITE: https://github.com/michaelmacinnis/oh - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/okteta b/apps/okteta new file mode 100644 index 000000000..4f83bd11a --- /dev/null +++ b/apps/okteta @@ -0,0 +1,3 @@ +# okteta +Unofficial. Hex editor for viewing and editing the raw data of files. +# SITES: https://github.com/pkgforge-dev/Okteta-AppImage \ No newline at end of file diff --git a/apps/okteta.md b/apps/okteta.md deleted file mode 100644 index cf9435a98..000000000 --- a/apps/okteta.md +++ /dev/null @@ -1,8 +0,0 @@ -# OKTETA - - Unofficial. Hex editor for viewing and editing the raw data of files. - - SITE: https://github.com/pkgforge-dev/Okteta-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/olive b/apps/olive new file mode 100644 index 000000000..195e0de5e --- /dev/null +++ b/apps/olive @@ -0,0 +1,5 @@ +# olive +Olive is a free non-linear video editor for Windows, macOS, and Linux. +# SCREENSHOTS: https://www.olivevideoeditor.org/img/020-1.png +# SITES: https://www.olivevideoeditor.org +# SOURCES: https://github.com/olive-editor/olive \ No newline at end of file diff --git a/apps/olive-legacy b/apps/olive-legacy new file mode 100644 index 000000000..005266f1f --- /dev/null +++ b/apps/olive-legacy @@ -0,0 +1,7 @@ +# olive-legacy +Olive is a free non-linear video editor for Windows, macOS, and Linux. + + Release version: Olive 0.1 +# SCREENSHOTS: https://upload.wikimedia.org/wikipedia/commons/2/23/Olive_video_editor_Alpha_0.1.0_2019-10_1e3cf533-fr.png +# SITES: https://olivevideoeditor.org +# SOURCES: https://github.com/olive-editor/olive \ No newline at end of file diff --git a/apps/olive-legacy.md b/apps/olive-legacy.md deleted file mode 100644 index 560f577bf..000000000 --- a/apps/olive-legacy.md +++ /dev/null @@ -1,14 +0,0 @@ -# OLIVE-LEGACY - - Olive is a free non-linear video editor for Windows, macOS, and Linux. - - Release version: Olive 0.1 - - ![Screenshot](https://upload.wikimedia.org/wikipedia/commons/2/23/Olive_video_editor_Alpha_0.1.0_2019-10_1e3cf533-fr.png) - - SITE: https://olivevideoeditor.org - - SOURCE: https://github.com/olive-editor/olive - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/olive.md b/apps/olive.md deleted file mode 100644 index 42462013d..000000000 --- a/apps/olive.md +++ /dev/null @@ -1,12 +0,0 @@ -# OLIVE - - Olive is a free non-linear video editor for Windows, macOS, and Linux. - - ![Screenshot](https://www.olivevideoeditor.org/img/020-1.png) - - SITE: https://www.olivevideoeditor.org - - SOURCE: https://github.com/olive-editor/olive - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ollama b/apps/ollama new file mode 100644 index 000000000..a9b96435d --- /dev/null +++ b/apps/ollama @@ -0,0 +1,3 @@ +# ollama +Get up and running with Llama 3, Mistral, Gemma, and other large language models. +# SITES: https://github.com/ollama/ollama \ No newline at end of file diff --git a/apps/ollama.md b/apps/ollama.md deleted file mode 100644 index b2c32813f..000000000 --- a/apps/ollama.md +++ /dev/null @@ -1,8 +0,0 @@ -# OLLAMA - - Get up and running with Llama 3, Mistral, Gemma, and other large language models. - - SITE: https://github.com/ollama/ollama - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/omekasy b/apps/omekasy new file mode 100644 index 000000000..0e4543486 --- /dev/null +++ b/apps/omekasy @@ -0,0 +1,3 @@ +# omekasy +𝘾𝙤𝙢𝙢𝙖𝙣𝙙 𝙡𝙞𝙣𝙚 𝙖𝙥𝙥𝙡𝙞𝙘𝙖𝙩𝙞𝙤𝙣 𝕥𝕙𝕒𝕥 𝕔𝕠𝕟𝕧𝕖𝕣𝕥𝕤 𝕒𝕝𝕡𝕙𝕒𝕟𝕦𝕞𝕖𝕣𝕚𝕔 𝕔𝕙𝕒𝕣𝕒𝕔𝕥𝕖𝕣𝕤 𝒕𝒐 𝒗𝒂𝒓𝒊𝒐𝒖𝒔 𝒔𝒕𝒚𝒍𝒆𝒔 𝚍𝚎𝚏𝚒𝚗𝚎𝚍 𝚒𝚗 𝚄𝚗𝚒𝚌𝚘𝚍𝚎. +# SITES: https://github.com/ikanago/omekasy \ No newline at end of file diff --git a/apps/omekasy.md b/apps/omekasy.md deleted file mode 100644 index 3ec3298f7..000000000 --- a/apps/omekasy.md +++ /dev/null @@ -1,8 +0,0 @@ -# OMEKASY - - 𝘾𝙤𝙢𝙢𝙖𝙣𝙙 𝙡𝙞𝙣𝙚 𝙖𝙥𝙥𝙡𝙞𝙘𝙖𝙩𝙞𝙤𝙣 𝕥𝕙𝕒𝕥 𝕔𝕠𝕟𝕧𝕖𝕣𝕥𝕤 𝕒𝕝𝕡𝕙𝕒𝕟𝕦𝕞𝕖𝕣𝕚𝕔 𝕔𝕙𝕒𝕣𝕒𝕔𝕥𝕖𝕣𝕤 𝒕𝒐 𝒗𝒂𝒓𝒊𝒐𝒖𝒔 𝒔𝒕𝒚𝒍𝒆𝒔 𝚍𝚎𝚏𝚒𝚗𝚎𝚍 𝚒𝚗 𝚄𝚗𝚒𝚌𝚘𝚍𝚎. - - SITE: https://github.com/ikanago/omekasy - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/omikuji b/apps/omikuji new file mode 100644 index 000000000..a202b6e74 --- /dev/null +++ b/apps/omikuji @@ -0,0 +1,4 @@ +# omikuji + Qt/QML based game launcher for Linux. +# SITES: https://github.com/reakjra/omikuji +# SOURCES: https://github.com/reakjra/omikuji \ No newline at end of file diff --git a/apps/omikuji.md b/apps/omikuji.md deleted file mode 100644 index 080590b6e..000000000 --- a/apps/omikuji.md +++ /dev/null @@ -1,8 +0,0 @@ -# OMIKUJI - - Qt/QML based game launcher for Linux. - - SITE: https://github.com/reakjra/omikuji - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/ommpfritt b/apps/ommpfritt new file mode 100644 index 000000000..e786490b3 --- /dev/null +++ b/apps/ommpfritt @@ -0,0 +1,3 @@ +# ommpfritt +Semantic, procedural, non-destructive vector modelling. +# SITES: https://github.com/pasbi/ommpfritt \ No newline at end of file diff --git a/apps/ommpfritt.md b/apps/ommpfritt.md deleted file mode 100644 index 21da5fada..000000000 --- a/apps/ommpfritt.md +++ /dev/null @@ -1,7 +0,0 @@ -# OMMPFRITT - - Semantic, procedural, non-destructive vector modelling. - - SITE: https://github.com/pasbi/ommpfritt - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/omniget b/apps/omniget new file mode 100644 index 000000000..fdb4990c3 --- /dev/null +++ b/apps/omniget @@ -0,0 +1,3 @@ +# omniget +Media downloader from various websites. +# SITES: https://github.com/tonhowtf/omniget \ No newline at end of file diff --git a/apps/omniget.md b/apps/omniget.md deleted file mode 100644 index bb5fc9a9f..000000000 --- a/apps/omniget.md +++ /dev/null @@ -1,8 +0,0 @@ -# OMNIGET - - Media downloader from various websites. - - SITE: https://github.com/tonhowtf/omniget - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/omnipull b/apps/omnipull new file mode 100644 index 000000000..36427aff1 --- /dev/null +++ b/apps/omnipull @@ -0,0 +1,3 @@ +# omnipull +Pull Everything. Everywhere. OmniPull is a powerful, cross-platform download manager. +# SITES: https://github.com/Annor-Gyimah/OmniPull \ No newline at end of file diff --git a/apps/omnipull.md b/apps/omnipull.md deleted file mode 100644 index d711273d1..000000000 --- a/apps/omnipull.md +++ /dev/null @@ -1,8 +0,0 @@ -# OMNIPULL - - Pull Everything. Everywhere. OmniPull is a powerful, cross-platform download manager. - - SITE: https://github.com/Annor-Gyimah/OmniPull - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/omniroute b/apps/omniroute new file mode 100644 index 000000000..b1c0c8281 --- /dev/null +++ b/apps/omniroute @@ -0,0 +1,3 @@ +# omniroute +OmniRoute is an AI gateway for multi-provider LLMs: an OpenAI-compatible endpoint with smart routing, load balancing, retries, and fallbacks. Add policies, rate limits, caching, and observability for reliable, cost-aware inference. +# SITES: https://github.com/diegosouzapw/OmniRoute \ No newline at end of file diff --git a/apps/omniroute.md b/apps/omniroute.md deleted file mode 100644 index 8e468ba41..000000000 --- a/apps/omniroute.md +++ /dev/null @@ -1,8 +0,0 @@ -# OMNIROUTE - - OmniRoute is an AI gateway for multi-provider LLMs: an OpenAI-compatible endpoint with smart routing, load balancing, retries, and fallbacks. Add policies, rate limits, caching, and observability for reliable, cost-aware inference. - - SITE: https://github.com/diegosouzapw/OmniRoute - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/omnispeak b/apps/omnispeak new file mode 100644 index 000000000..177bca841 --- /dev/null +++ b/apps/omnispeak @@ -0,0 +1,3 @@ +# omnispeak +An open-source re-implementation of "Commander Keen in Goodbye Galaxy". +# SITES: https://github.com/mantralunar/omnispeak \ No newline at end of file diff --git a/apps/omnispeak.md b/apps/omnispeak.md deleted file mode 100644 index e5e5dfdc5..000000000 --- a/apps/omnispeak.md +++ /dev/null @@ -1,8 +0,0 @@ -# OMNISPEAK - - An open-source re-implementation of "Commander Keen in Goodbye Galaxy". - - SITE: https://github.com/mantralunar/omnispeak - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/one-gpt b/apps/one-gpt new file mode 100644 index 000000000..cedb8f54a --- /dev/null +++ b/apps/one-gpt @@ -0,0 +1,3 @@ +# one-gpt +聚合ChatGPT官方版、ChatGPT免费版、文心一言、Poe、chatchat等多平台,支持自定义导入平台 +# SITES: https://github.com/1595901624/gpt-aggregated-edition \ No newline at end of file diff --git a/apps/one-gpt.md b/apps/one-gpt.md deleted file mode 100644 index 9903f4437..000000000 --- a/apps/one-gpt.md +++ /dev/null @@ -1,8 +0,0 @@ -# ONE-GPT - - 聚合ChatGPT官方版、ChatGPT免费版、文心一言、Poe、chatchat等多平台,支持自定义导入平台 - - SITE: https://github.com/1595901624/gpt-aggregated-edition - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/oneanime b/apps/oneanime new file mode 100644 index 000000000..a15486fbd --- /dev/null +++ b/apps/oneanime @@ -0,0 +1,3 @@ +# oneanime +A clean, ad-free anime viewing app. A third-party client for Anime1 with subtitles and a Material You-compliant interface. +# SITES: https://github.com/Predidit/oneAnime \ No newline at end of file diff --git a/apps/oneanime.md b/apps/oneanime.md deleted file mode 100644 index 4fc31e9e9..000000000 --- a/apps/oneanime.md +++ /dev/null @@ -1,8 +0,0 @@ -# ONEANIME - - A clean, ad-free anime viewing app. A third-party client for Anime1 with subtitles and a Material You-compliant interface. - - SITE: https://github.com/Predidit/oneAnime - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/onedrive-gui b/apps/onedrive-gui new file mode 100644 index 000000000..32b658f9e --- /dev/null +++ b/apps/onedrive-gui @@ -0,0 +1,3 @@ +# onedrive-gui +A simple GUI for OneDrive Linux client, with multi-account support. +# SITES: https://github.com/bpozdena/OneDriveGUI \ No newline at end of file diff --git a/apps/onedrive-gui.md b/apps/onedrive-gui.md deleted file mode 100644 index de6df6916..000000000 --- a/apps/onedrive-gui.md +++ /dev/null @@ -1,8 +0,0 @@ -# ONEDRIVE-GUI - - A simple GUI for OneDrive Linux client, with multi-account support. - - SITE: https://github.com/bpozdena/OneDriveGUI - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/onefetch b/apps/onefetch new file mode 100644 index 000000000..290dc0ecf --- /dev/null +++ b/apps/onefetch @@ -0,0 +1,3 @@ +# onefetch +Command-line Git information tool +# SITES: https://github.com/o2sh/onefetch \ No newline at end of file diff --git a/apps/onefetch.md b/apps/onefetch.md deleted file mode 100644 index 139600bdf..000000000 --- a/apps/onefetch.md +++ /dev/null @@ -1,8 +0,0 @@ -# ONEFETCH - - Command-line Git information tool - - SITE: https://github.com/o2sh/onefetch - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/onekey-wallet b/apps/onekey-wallet new file mode 100644 index 000000000..017e5553b --- /dev/null +++ b/apps/onekey-wallet @@ -0,0 +1,3 @@ +# onekey-wallet +Open source crypto wallet. +# SITES: https://www.onekey.so/ \ No newline at end of file diff --git a/apps/onekey-wallet.md b/apps/onekey-wallet.md deleted file mode 100644 index 4f446dd5e..000000000 --- a/apps/onekey-wallet.md +++ /dev/null @@ -1,8 +0,0 @@ -# ONEKEY-WALLET - - Open source crypto wallet. - - SITE: https://www.onekey.so/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/onenote b/apps/onenote new file mode 100644 index 000000000..ad5aa9d7b --- /dev/null +++ b/apps/onenote @@ -0,0 +1,3 @@ +# onenote +P3X Onenote Linux +# SITES: https://github.com/patrikx3/onenote \ No newline at end of file diff --git a/apps/onenote.md b/apps/onenote.md deleted file mode 100644 index dc4565541..000000000 --- a/apps/onenote.md +++ /dev/null @@ -1,8 +0,0 @@ -# ONENOTE - - P3X Onenote Linux - - SITE: https://github.com/patrikx3/onenote - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/oneweb b/apps/oneweb new file mode 100644 index 000000000..4c301fbd4 --- /dev/null +++ b/apps/oneweb @@ -0,0 +1,3 @@ +# oneweb +OneWeb - free, private and secure web browser! POLSKA GUROM. +# SITES: https://github.com/OneDevelopmentPL/oneweb \ No newline at end of file diff --git a/apps/oneweb.md b/apps/oneweb.md deleted file mode 100644 index 3f9e394ab..000000000 --- a/apps/oneweb.md +++ /dev/null @@ -1,8 +0,0 @@ -# ONEWEB - - OneWeb - free, private and secure web browser! POLSKA GUROM. - - SITE: https://github.com/OneDevelopmentPL/oneweb - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/onionhop b/apps/onionhop new file mode 100644 index 000000000..0b2c1aa2c --- /dev/null +++ b/apps/onionhop @@ -0,0 +1,3 @@ +# onionhop +Privacy-first Desktop app that routes your traffic through Tor - Anonymous browsing made simple. +# SITES: https://github.com/center2055/onionhop \ No newline at end of file diff --git a/apps/onionhop.md b/apps/onionhop.md deleted file mode 100644 index 108b23b5b..000000000 --- a/apps/onionhop.md +++ /dev/null @@ -1,8 +0,0 @@ -# ONIONHOP - - Privacy-first Desktop app that routes your traffic through Tor - Anonymous browsing made simple. - - SITE: https://github.com/center2055/onionhop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/onionmediax b/apps/onionmediax new file mode 100644 index 000000000..ff242baa0 --- /dev/null +++ b/apps/onionmediax @@ -0,0 +1,3 @@ +# onionmediax +OnionMedia X - The Free Media Converter and Downloader. Converts and downloads videos and music quickly and easily. +# SITES: https://github.com/onionware-github/OnionMedia-X \ No newline at end of file diff --git a/apps/onionmediax.md b/apps/onionmediax.md deleted file mode 100644 index 8f4bdf805..000000000 --- a/apps/onionmediax.md +++ /dev/null @@ -1,8 +0,0 @@ -# ONIONMEDIAX - - OnionMedia X - The Free Media Converter and Downloader. Converts and downloads videos and music quickly and easily. - - SITE: https://github.com/onionware-github/OnionMedia-X - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/onlyoffice b/apps/onlyoffice new file mode 100644 index 000000000..620208c75 --- /dev/null +++ b/apps/onlyoffice @@ -0,0 +1,5 @@ +# onlyoffice +ONLYOFFICE is an online office suite that enables you to manage documents, projects, team and customer relations in one place. + ONLYOFFICE is a cross-platform office suite and has the best support for MS Windows formats and online documents on GNU/Linux. +# SCREENSHOTS: https://static-www.onlyoffice.com/v9.5.0/images/solutions/desktopmobileapps/tour/en/connect_portal2.png https://static-www.onlyoffice.com/v9.5.0/images/solutions/desktopmobileapps/tour/en/plugins.png +# SITES: https://www.onlyoffice.com \ No newline at end of file diff --git a/apps/onlyoffice.md b/apps/onlyoffice.md deleted file mode 100644 index ac2ca7bcd..000000000 --- a/apps/onlyoffice.md +++ /dev/null @@ -1,12 +0,0 @@ -# ONLYOFFICE - - ONLYOFFICE is an online office suite that enables you to manage documents, projects, team and customer relations in one place. - ONLYOFFICE is a cross-platform office suite and has the best support for MS Windows formats and online documents on GNU/Linux. - - ![Screenshot](https://static-www.onlyoffice.com/v9.5.0/images/solutions/desktopmobileapps/tour/en/connect_portal2.png) - ![Screenshot](https://static-www.onlyoffice.com/v9.5.0/images/solutions/desktopmobileapps/tour/en/plugins.png) - - SITE: https://www.onlyoffice.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/onlyrefs b/apps/onlyrefs new file mode 100644 index 000000000..8d0884255 --- /dev/null +++ b/apps/onlyrefs @@ -0,0 +1,3 @@ +# onlyrefs +Organize all of your references, notes, bookmarks and more ... 🌃 (wip) +# SITES: https://github.com/Fantasy-programming/Onlyrefs \ No newline at end of file diff --git a/apps/onlyrefs.md b/apps/onlyrefs.md deleted file mode 100644 index f6186639a..000000000 --- a/apps/onlyrefs.md +++ /dev/null @@ -1,8 +0,0 @@ -# ONLYREFS - - Organize all of your references, notes, bookmarks and more ... 🌃 (wip) - - SITE: https://github.com/Fantasy-programming/Onlyrefs - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/onnx2bnn b/apps/onnx2bnn new file mode 100644 index 000000000..7ffac44fe --- /dev/null +++ b/apps/onnx2bnn @@ -0,0 +1,3 @@ +# onnx2bnn +dabnn is an accelerated binary neural networks inference framework for mobile platform +# SITES: https://github.com/JDAI-CV/dabnn \ No newline at end of file diff --git a/apps/onnx2bnn.md b/apps/onnx2bnn.md deleted file mode 100644 index cd48b1204..000000000 --- a/apps/onnx2bnn.md +++ /dev/null @@ -1,8 +0,0 @@ -# ONNX2BNN - - dabnn is an accelerated binary neural networks inference framework for mobile platform - - SITE: https://github.com/JDAI-CV/dabnn - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/onnx2daq b/apps/onnx2daq new file mode 100644 index 000000000..cc7e25a5c --- /dev/null +++ b/apps/onnx2daq @@ -0,0 +1,3 @@ +# onnx2daq +DNNLibrary is a wrapper of NNAPI ("DNNLibrary" is for "daquexian's NNAPI library). +# SITES: https://github.com/JDAI-CV/DNNLibrary \ No newline at end of file diff --git a/apps/onnx2daq.md b/apps/onnx2daq.md deleted file mode 100644 index 6f625259c..000000000 --- a/apps/onnx2daq.md +++ /dev/null @@ -1,7 +0,0 @@ -# ONNX2DAQ - - DNNLibrary is a wrapper of NNAPI ("DNNLibrary" is for "daquexian's NNAPI library). - - SITE: https://github.com/JDAI-CV/DNNLibrary - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/onshape b/apps/onshape new file mode 100644 index 000000000..dd5c00d4c --- /dev/null +++ b/apps/onshape @@ -0,0 +1,3 @@ +# onshape +Onshape desktop app (web application shell) +# SITES: https://github.com/develar/onshape-desktop-shell \ No newline at end of file diff --git a/apps/onshape.md b/apps/onshape.md deleted file mode 100644 index 2b37f8695..000000000 --- a/apps/onshape.md +++ /dev/null @@ -1,8 +0,0 @@ -# ONSHAPE - - Onshape desktop app (web application shell) - - SITE: https://github.com/develar/onshape-desktop-shell - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/onthespot b/apps/onthespot new file mode 100644 index 000000000..65cef4ec8 --- /dev/null +++ b/apps/onthespot @@ -0,0 +1,3 @@ +# onthespot +A GUI music downloader for Apple Music, Bandcamp, Deezer, Qobuz, Spotify, Tidal, and More. +# SITES: https://github.com/justin025/onthespot \ No newline at end of file diff --git a/apps/onthespot.md b/apps/onthespot.md deleted file mode 100644 index 560536227..000000000 --- a/apps/onthespot.md +++ /dev/null @@ -1,8 +0,0 @@ -# ONTHESPOT - - A GUI music downloader for Apple Music, Bandcamp, Deezer, Qobuz, Spotify, Tidal, and More. - - SITE: https://github.com/justin025/onthespot - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/onyx b/apps/onyx new file mode 100644 index 000000000..f2a56cd59 --- /dev/null +++ b/apps/onyx @@ -0,0 +1,3 @@ +# onyx +Decentralized messaging application based on PSS +# SITES: https://github.com/MainframeHQ/onyx \ No newline at end of file diff --git a/apps/onyx.md b/apps/onyx.md deleted file mode 100644 index 069ac0c8a..000000000 --- a/apps/onyx.md +++ /dev/null @@ -1,8 +0,0 @@ -# ONYX - - Decentralized messaging application based on PSS - - SITE: https://github.com/MainframeHQ/onyx - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/opal b/apps/opal new file mode 100644 index 000000000..6c44c6fca --- /dev/null +++ b/apps/opal @@ -0,0 +1,3 @@ +# opal +Plays relaxing music in the background. +# SITES: https://codedead.com/ \ No newline at end of file diff --git a/apps/opal.md b/apps/opal.md deleted file mode 100644 index 90bc0c54d..000000000 --- a/apps/opal.md +++ /dev/null @@ -1,8 +0,0 @@ -# OPAL - - Plays relaxing music in the background. - - SITE: https://codedead.com/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/open-ai-translator b/apps/open-ai-translator new file mode 100644 index 000000000..68eb87731 --- /dev/null +++ b/apps/open-ai-translator @@ -0,0 +1,3 @@ +# open-ai-translator +基于 ChatGPT API 的划词翻译浏览器插件和跨平台桌面端应用 - Browser extension and cross-platform desktop application for translation based on ChatGPT API. +# SITES: https://github.com/nextai-translator/nextai-translator \ No newline at end of file diff --git a/apps/open-ai-translator.md b/apps/open-ai-translator.md deleted file mode 100644 index c33f88c09..000000000 --- a/apps/open-ai-translator.md +++ /dev/null @@ -1,8 +0,0 @@ -# OPEN-AI-TRANSLATOR - - 基于 ChatGPT API 的划词翻译浏览器插件和跨平台桌面端应用 - Browser extension and cross-platform desktop application for translation based on ChatGPT API. - - SITE: https://github.com/nextai-translator/nextai-translator - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/open-markup-editor b/apps/open-markup-editor new file mode 100644 index 000000000..e809ad849 --- /dev/null +++ b/apps/open-markup-editor @@ -0,0 +1,3 @@ +# open-markup-editor +Pluggable markup editor +# SITES: https://github.com/kettek/open-markup-editor \ No newline at end of file diff --git a/apps/open-markup-editor.md b/apps/open-markup-editor.md deleted file mode 100644 index 2b8747390..000000000 --- a/apps/open-markup-editor.md +++ /dev/null @@ -1,8 +0,0 @@ -# OPEN-MARKUP-EDITOR - - Pluggable markup editor - - SITE: https://github.com/kettek/open-markup-editor - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/open-pencil b/apps/open-pencil new file mode 100644 index 000000000..cf892b33a --- /dev/null +++ b/apps/open-pencil @@ -0,0 +1,3 @@ +# open-pencil +Open-source design editor. +# SITES: https://github.com/open-pencil/open-pencil \ No newline at end of file diff --git a/apps/open-pencil.md b/apps/open-pencil.md deleted file mode 100644 index a82efc9c3..000000000 --- a/apps/open-pencil.md +++ /dev/null @@ -1,8 +0,0 @@ -# OPEN-PENCIL - - Open-source design editor. - - SITE: https://github.com/open-pencil/open-pencil - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/open-typer b/apps/open-typer new file mode 100644 index 000000000..8116364d8 --- /dev/null +++ b/apps/open-typer @@ -0,0 +1,3 @@ +# open-typer +A free and open source typing tutor program +# SITES: https://github.com/Open-Typer/Open-Typer \ No newline at end of file diff --git a/apps/open-typer.md b/apps/open-typer.md deleted file mode 100644 index b5d7d511f..000000000 --- a/apps/open-typer.md +++ /dev/null @@ -1,8 +0,0 @@ -# OPEN-TYPER - - A free and open source typing tutor program - - SITE: https://github.com/Open-Typer/Open-Typer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/open-video-downloader b/apps/open-video-downloader new file mode 100644 index 000000000..e6a33b234 --- /dev/null +++ b/apps/open-video-downloader @@ -0,0 +1,3 @@ +# open-video-downloader +A cross-platform GUI for youtube-dl made in Electron and node.js +# SITES: https://github.com/StefanLobbenmeier/youtube-dl-gui \ No newline at end of file diff --git a/apps/open-video-downloader.md b/apps/open-video-downloader.md deleted file mode 100644 index 542516be8..000000000 --- a/apps/open-video-downloader.md +++ /dev/null @@ -1,8 +0,0 @@ -# OPEN-VIDEO-DOWNLOADER - - A cross-platform GUI for youtube-dl made in Electron and node.js - - SITE: https://github.com/StefanLobbenmeier/youtube-dl-gui - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/open-webui b/apps/open-webui new file mode 100644 index 000000000..527f709b7 --- /dev/null +++ b/apps/open-webui @@ -0,0 +1,3 @@ +# open-webui +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. +# SITES: https://github.com/open-webui/desktop \ No newline at end of file diff --git a/apps/open-webui.md b/apps/open-webui.md deleted file mode 100644 index 71715c384..000000000 --- a/apps/open-webui.md +++ /dev/null @@ -1,8 +0,0 @@ -# OPEN-WEBUI - - 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. - - SITE: https://github.com/open-webui/desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/openapi-tui b/apps/openapi-tui new file mode 100644 index 000000000..0169cd0da --- /dev/null +++ b/apps/openapi-tui @@ -0,0 +1,3 @@ +# openapi-tui +Terminal UI to list, browse and run APIs defined with openapi spec. +# SITES: https://github.com/zaghaghi/openapi-tui \ No newline at end of file diff --git a/apps/openapi-tui.md b/apps/openapi-tui.md deleted file mode 100644 index 66020e755..000000000 --- a/apps/openapi-tui.md +++ /dev/null @@ -1,8 +0,0 @@ -# OPENAPI-TUI - - Terminal UI to list, browse and run APIs defined with openapi spec. - - SITE: https://github.com/zaghaghi/openapi-tui - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/openarena b/apps/openarena new file mode 100644 index 000000000..0cb2c624a --- /dev/null +++ b/apps/openarena @@ -0,0 +1,4 @@ +# openarena +A violent, sexy, multiplayer first person shooter based on the ioquake3 engine +# SCREENSHOTS: http://www.openarena.ws/e107_images/custom/085-16.jpg +# SITES: http://openarena.ws/ \ No newline at end of file diff --git a/apps/openarena.md b/apps/openarena.md deleted file mode 100644 index a50492f3c..000000000 --- a/apps/openarena.md +++ /dev/null @@ -1,10 +0,0 @@ -# OPENARENA - - A violent, sexy, multiplayer first person shooter based on the ioquake3 engine - - ![Screenshot](http://www.openarena.ws/e107_images/custom/085-16.jpg) - - SITE: http://openarena.ws/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/openaudible b/apps/openaudible new file mode 100644 index 000000000..354b70cd5 --- /dev/null +++ b/apps/openaudible @@ -0,0 +1,3 @@ +# openaudible +A cross-platform desktop application for downloading and managing your Audible audiobooks. +# SITES: https://github.com/openaudible/openaudible \ No newline at end of file diff --git a/apps/openaudible.md b/apps/openaudible.md deleted file mode 100644 index b26706234..000000000 --- a/apps/openaudible.md +++ /dev/null @@ -1,8 +0,0 @@ -# OPENAUDIBLE - - A cross-platform desktop application for downloading and managing your Audible audiobooks. - - SITE: https://github.com/openaudible/openaudible - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/openblok b/apps/openblok new file mode 100644 index 000000000..165214fc6 --- /dev/null +++ b/apps/openblok @@ -0,0 +1,3 @@ +# openblok +A falling block puzzle game, like Tetris. +# SITES: https://github.com/mmatyas/openblok \ No newline at end of file diff --git a/apps/openblok.md b/apps/openblok.md deleted file mode 100644 index 729b3a754..000000000 --- a/apps/openblok.md +++ /dev/null @@ -1,7 +0,0 @@ -# OPENBLOK - - A falling block puzzle game, like Tetris. - - SITE: https://github.com/mmatyas/openblok - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/openboardview b/apps/openboardview new file mode 100644 index 000000000..ee700e023 --- /dev/null +++ b/apps/openboardview @@ -0,0 +1,4 @@ +# openboardview + Unofficial AppImage of Open Board Viewer. +# SITES: https://github.com/pkgforge-dev/openboardview-appimage +# SOURCES: https://github.com/pkgforge-dev/openboardview-appimage \ No newline at end of file diff --git a/apps/openboardview.md b/apps/openboardview.md deleted file mode 100644 index 595df9ba5..000000000 --- a/apps/openboardview.md +++ /dev/null @@ -1,8 +0,0 @@ -# OPENBOARDVIEW - - Unofficial AppImage of Open Board Viewer. - - SITE: https://github.com/pkgforge-dev/openboardview-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/openbor b/apps/openbor new file mode 100644 index 000000000..72fff2923 --- /dev/null +++ b/apps/openbor @@ -0,0 +1,3 @@ +# openbor +OpenBOR is the ultimate 2D side scrolling engine for beat em' ups, shooters, and more! +# SITES: https://github.com/mantralunar/openbor \ No newline at end of file diff --git a/apps/openbor.md b/apps/openbor.md deleted file mode 100644 index 261003d5a..000000000 --- a/apps/openbor.md +++ /dev/null @@ -1,8 +0,0 @@ -# OPENBOR - - OpenBOR is the ultimate 2D side scrolling engine for beat em' ups, shooters, and more! - - SITE: https://github.com/mantralunar/openbor - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/openclaw b/apps/openclaw new file mode 100644 index 000000000..8512d6474 --- /dev/null +++ b/apps/openclaw @@ -0,0 +1,3 @@ +# openclaw +Reimplementation of Captain Claw (1997) platformer. +# SITES: https://github.com/pkgforge-dev/OpenClaw-AppImage \ No newline at end of file diff --git a/apps/openclaw.md b/apps/openclaw.md deleted file mode 100644 index 46aeff033..000000000 --- a/apps/openclaw.md +++ /dev/null @@ -1,8 +0,0 @@ -# OPENCLAW - - Reimplementation of Captain Claw (1997) platformer. - - SITE: https://github.com/pkgforge-dev/OpenClaw-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/opencloud b/apps/opencloud new file mode 100644 index 000000000..92c742c21 --- /dev/null +++ b/apps/opencloud @@ -0,0 +1,3 @@ +# opencloud +Desktop application to synchronize files from OpenCloud with your computer. +# SITES: https://github.com/opencloud-eu/desktop \ No newline at end of file diff --git a/apps/opencloud.md b/apps/opencloud.md deleted file mode 100644 index 7cfb9375c..000000000 --- a/apps/opencloud.md +++ /dev/null @@ -1,8 +0,0 @@ -# OPENCLOUD - - Desktop application to synchronize files from OpenCloud with your computer. - - SITE: https://github.com/opencloud-eu/desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/opencode b/apps/opencode new file mode 100644 index 000000000..e07bc9424 --- /dev/null +++ b/apps/opencode @@ -0,0 +1,3 @@ +# opencode +Unofficial, The open source coding agent. +# SITES: https://github.com/pkgforge-dev/opencode-AppImage-Enhanced \ No newline at end of file diff --git a/apps/opencode-cli b/apps/opencode-cli new file mode 100644 index 000000000..88db8f98b --- /dev/null +++ b/apps/opencode-cli @@ -0,0 +1,4 @@ +# opencode-cli + Unofficial AppImage of the opencode CLI utility. The open source coding agent. +# SITES: https://github.com/pkgforge-dev/opencode-cli-AppImage +# SOURCES: https://github.com/pkgforge-dev/opencode-cli-AppImage \ No newline at end of file diff --git a/apps/opencode-cli.md b/apps/opencode-cli.md deleted file mode 100644 index 5b1ce9554..000000000 --- a/apps/opencode-cli.md +++ /dev/null @@ -1,8 +0,0 @@ -# OPENCODE-CLI - - Unofficial AppImage of the opencode CLI utility. The open source coding agent. - - SITE: https://github.com/pkgforge-dev/opencode-cli-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/opencode-desktop b/apps/opencode-desktop new file mode 100644 index 000000000..25826187e --- /dev/null +++ b/apps/opencode-desktop @@ -0,0 +1,4 @@ +# opencode-desktop + Desktop application for opencode, the open source coding agent. +# SITES: https://github.com/anomalyco/opencode +# SOURCES: https://github.com/anomalyco/opencode \ No newline at end of file diff --git a/apps/opencode-desktop.md b/apps/opencode-desktop.md deleted file mode 100644 index 18b64d474..000000000 --- a/apps/opencode-desktop.md +++ /dev/null @@ -1,8 +0,0 @@ -# OPENCODE-DESKTOP - - Desktop application for opencode, the open source coding agent. - - SITE: https://github.com/anomalyco/opencode - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/opencode-enhanced b/apps/opencode-enhanced new file mode 100644 index 000000000..b20e8f183 --- /dev/null +++ b/apps/opencode-enhanced @@ -0,0 +1,4 @@ +# opencode-enhanced + Unofficial, improved AppImage of opencode, the open source coding agent. +# SITES: https://github.com/pkgforge-dev/opencode-AppImage-Enhanced +# SOURCES: https://github.com/pkgforge-dev/opencode-AppImage-Enhanced \ No newline at end of file diff --git a/apps/opencode-enhanced.md b/apps/opencode-enhanced.md deleted file mode 100644 index d7786dde9..000000000 --- a/apps/opencode-enhanced.md +++ /dev/null @@ -1,8 +0,0 @@ -# OPENCODE-ENHANCED - - Unofficial, improved AppImage of opencode, the open source coding agent. - - SITE: https://github.com/pkgforge-dev/opencode-AppImage-Enhanced - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/opencode.md b/apps/opencode.md deleted file mode 100644 index a59d9ef3c..000000000 --- a/apps/opencode.md +++ /dev/null @@ -1,8 +0,0 @@ -# OPENCODE - - The open source coding agent. - - SITE: https://github.com/anomalyco/opencode - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/opencomic b/apps/opencomic new file mode 100644 index 000000000..c294e3fc4 --- /dev/null +++ b/apps/opencomic @@ -0,0 +1,3 @@ +# opencomic +Comic and Manga reader, written with Node.js and using Electron +# SITES: https://github.com/ollm/OpenComic \ No newline at end of file diff --git a/apps/opencomic.md b/apps/opencomic.md deleted file mode 100644 index a0b407bcb..000000000 --- a/apps/opencomic.md +++ /dev/null @@ -1,8 +0,0 @@ -# OPENCOMIC - - Comic and Manga reader, written with Node.js and using Electron - - SITE: https://github.com/ollm/OpenComic - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/opengothic b/apps/opengothic new file mode 100644 index 000000000..1fcb71c4d --- /dev/null +++ b/apps/opengothic @@ -0,0 +1,4 @@ +# opengothic + Unofficial AppImage of OpenGothic. +# SITES: https://github.com/pkgforge-dev/opengothic-appimage +# SOURCES: https://github.com/pkgforge-dev/opengothic-appimage \ No newline at end of file diff --git a/apps/opengothic.md b/apps/opengothic.md deleted file mode 100644 index c927e3cc0..000000000 --- a/apps/opengothic.md +++ /dev/null @@ -1,8 +0,0 @@ -# OPENGOTHIC - - Unofficial AppImage of OpenGothic. - - SITE: https://github.com/pkgforge-dev/opengothic-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/openhv b/apps/openhv new file mode 100644 index 000000000..7a7d50830 --- /dev/null +++ b/apps/openhv @@ -0,0 +1,5 @@ +# openhv +A mod for OpenRA based on the Hard Vacuum design by Daniel Cook. It aims to be an open content game with no exceptions. +# SCREENSHOTS: https://www.openhv.net/images/portable-linux-apps/fractional-freezing.png +# SITES: https://www.openhv.net +# SOURCES: https://github.com/OpenHV/OpenHV \ No newline at end of file diff --git a/apps/openhv.md b/apps/openhv.md deleted file mode 100644 index f803fd5ec..000000000 --- a/apps/openhv.md +++ /dev/null @@ -1,12 +0,0 @@ -# OPENHV - - A mod for OpenRA based on the Hard Vacuum design by Daniel Cook. It aims to be an open content game with no exceptions. - - ![Screenshot](https://www.openhv.net/images/portable-linux-apps/fractional-freezing.png) - - SITE: https://www.openhv.net - - SOURCE: https://github.com/OpenHV/OpenHV - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/openjazz b/apps/openjazz new file mode 100644 index 000000000..3f68e0799 --- /dev/null +++ b/apps/openjazz @@ -0,0 +1,3 @@ +# openjazz +A free, open-source version of the classic Jazz Jackrabbit™ games. +# SITES: https://github.com/pkgforge-dev/OpenJazz-AppImage \ No newline at end of file diff --git a/apps/openjazz.md b/apps/openjazz.md deleted file mode 100644 index eb0d4c345..000000000 --- a/apps/openjazz.md +++ /dev/null @@ -1,8 +0,0 @@ -# OPENJAZZ - - A free, open-source version of the classic Jazz Jackrabbit™ games. - - SITE: https://github.com/pkgforge-dev/OpenJazz-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/openlara b/apps/openlara new file mode 100644 index 000000000..039ebdc82 --- /dev/null +++ b/apps/openlara @@ -0,0 +1,3 @@ +# openlara +Classic Tomb Raider open-source engine. +# SITES: https://github.com/pkgforge-dev/OpenLara-AppImage \ No newline at end of file diff --git a/apps/openlara.md b/apps/openlara.md deleted file mode 100644 index 2d923cd73..000000000 --- a/apps/openlara.md +++ /dev/null @@ -1,8 +0,0 @@ -# OPENLARA - - Classic Tomb Raider open-source engine. - - SITE: https://github.com/pkgforge-dev/OpenLara-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/openlens b/apps/openlens new file mode 100644 index 000000000..dfc7f44ba --- /dev/null +++ b/apps/openlens @@ -0,0 +1,3 @@ +# openlens +OpenLens Binary Build Repository. +# SITES: https://github.com/MuhammedKalkan/OpenLens \ No newline at end of file diff --git a/apps/openlens.md b/apps/openlens.md deleted file mode 100644 index f4dab0f29..000000000 --- a/apps/openlens.md +++ /dev/null @@ -1,8 +0,0 @@ -# OPENLENS - - OpenLens Binary Build Repository. - - SITE: https://github.com/MuhammedKalkan/OpenLens - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/openlibextended b/apps/openlibextended new file mode 100644 index 000000000..7b34f2c43 --- /dev/null +++ b/apps/openlibextended @@ -0,0 +1,3 @@ +# openlibextended +An Open source app to download and read books from shadow library (Anna’s Archive). +# SITES: https://github.com/warreth/OpenlibExtended \ No newline at end of file diff --git a/apps/openlibextended.md b/apps/openlibextended.md deleted file mode 100644 index 45dd31683..000000000 --- a/apps/openlibextended.md +++ /dev/null @@ -1,8 +0,0 @@ -# OPENLIBEXTENDED - - An Open source app to download and read books from shadow library (Anna’s Archive). - - SITE: https://github.com/warreth/OpenlibExtended - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/openloco b/apps/openloco new file mode 100644 index 000000000..dfd43b920 --- /dev/null +++ b/apps/openloco @@ -0,0 +1,3 @@ +# openloco +Unofficial, an open source re-implementation of Chris Sawyer's Locomotion. +# SITES: https://github.com/pkgforge-dev/OpenLoco-AppImage \ No newline at end of file diff --git a/apps/openloco.md b/apps/openloco.md deleted file mode 100644 index 803bfd5b9..000000000 --- a/apps/openloco.md +++ /dev/null @@ -1,8 +0,0 @@ -# OPENLOCO - - Unofficial, an open source re-implementation of Chris Sawyer's Locomotion. - - SITE: https://github.com/pkgforge-dev/OpenLoco-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/openmsx b/apps/openmsx new file mode 100644 index 000000000..383934fe3 --- /dev/null +++ b/apps/openmsx @@ -0,0 +1,3 @@ +# openmsx +Unofficial, the MSX emulator that aims for perfection. +# SITES: https://github.com/pkgforge-dev/openMSX-AppImage \ No newline at end of file diff --git a/apps/openmsx.md b/apps/openmsx.md deleted file mode 100644 index f481aa938..000000000 --- a/apps/openmsx.md +++ /dev/null @@ -1,8 +0,0 @@ -# OPENMSX - - Unofficial, the MSX emulator that aims for perfection. - - SITE: https://github.com/pkgforge-dev/openMSX-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/openmw b/apps/openmw new file mode 100644 index 000000000..666dcccb0 --- /dev/null +++ b/apps/openmw @@ -0,0 +1,3 @@ +# openmw +OpenMW is an open-source open-world RPG game engine that supports playing Morrowind. Main repo and issue tracker can be found here: https://gitlab.com/OpenMW/openmw/ +# SITES: https://github.com/OpenMW/openmw \ No newline at end of file diff --git a/apps/openmw.md b/apps/openmw.md deleted file mode 100644 index e4daf0a1a..000000000 --- a/apps/openmw.md +++ /dev/null @@ -1,8 +0,0 @@ -# OPENMW - - OpenMW is an open-source open-world RPG game engine that supports playing Morrowind. Main repo and issue tracker can be found here: https://gitlab.com/OpenMW/openmw/ - - SITE: https://github.com/OpenMW/openmw - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/openop2 b/apps/openop2 new file mode 100644 index 000000000..54fa53b66 --- /dev/null +++ b/apps/openop2 @@ -0,0 +1,3 @@ +# openop2 +OpenOP2 is a re-implementation of the gameplay inspired by colony building games like Outpost 2, using the OpenRA engine. The gameplay follows the colony simulation and combat flow, concepts and gameplay mechanics. It features the modernized controls and customization of the OpenRA engine. +# SITES: https://github.com/OpenOP2/OpenOP2 \ No newline at end of file diff --git a/apps/openop2.md b/apps/openop2.md deleted file mode 100644 index fb5d1b8d5..000000000 --- a/apps/openop2.md +++ /dev/null @@ -1,8 +0,0 @@ -# OPENOP2 - - OpenOP2 is a re-implementation of the gameplay inspired by colony building games like Outpost 2, using the OpenRA engine. The gameplay follows the colony simulation and combat flow, concepts and gameplay mechanics. It features the modernized controls and customization of the OpenRA engine. - - SITE: https://github.com/OpenOP2/OpenOP2 - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/openosrs-launcher b/apps/openosrs-launcher new file mode 100644 index 000000000..bc1e664a7 --- /dev/null +++ b/apps/openosrs-launcher @@ -0,0 +1,3 @@ +# openosrs-launcher +Open-source client for Old School RuneScape with more functionality and less restrictions. AppImage Launcher. +# SITES: https://github.com/open-osrs/launcher \ No newline at end of file diff --git a/apps/openosrs-launcher.md b/apps/openosrs-launcher.md deleted file mode 100644 index bc8d5349e..000000000 --- a/apps/openosrs-launcher.md +++ /dev/null @@ -1,8 +0,0 @@ -# OPENOSRS-LAUNCHER - - Open-source client for Old School RuneScape with more functionality and less restrictions. AppImage Launcher. - - SITE: https://github.com/open-osrs/launcher - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/openpilot-workbench b/apps/openpilot-workbench new file mode 100644 index 000000000..69aac0436 --- /dev/null +++ b/apps/openpilot-workbench @@ -0,0 +1,3 @@ +# openpilot-workbench +The Openpilot Workbench is to help people fix problems with EON, Openpilot. +# SITES: https://github.com/openpilot-community/workbench \ No newline at end of file diff --git a/apps/openpilot-workbench.md b/apps/openpilot-workbench.md deleted file mode 100644 index bd817797a..000000000 --- a/apps/openpilot-workbench.md +++ /dev/null @@ -1,8 +0,0 @@ -# OPENPILOT-WORKBENCH - - The Openpilot Workbench is to help people fix problems with EON, Openpilot. - - SITE: https://github.com/openpilot-community/workbench - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/openra-dune b/apps/openra-dune new file mode 100644 index 000000000..b7f9e522c --- /dev/null +++ b/apps/openra-dune @@ -0,0 +1,6 @@ +# openra-dune +Open Source real-time strategy game engine for early Westwood games such as Command & Conquer: Red Alert written in C# using SDL and OpenGL. Runs on Windows, Linux, *BSD and Mac OS X. + + This is the MOD "Dune 2000" +# SITES: https://www.openra.net/ +# SOURCES: https://github.com/OpenRA/OpenRA \ No newline at end of file diff --git a/apps/openra-dune.md b/apps/openra-dune.md deleted file mode 100644 index 0b02cefac..000000000 --- a/apps/openra-dune.md +++ /dev/null @@ -1,12 +0,0 @@ -# OPENRA-DUNE - - Open Source real-time strategy game engine for early Westwood games such as Command & Conquer: Red Alert written in C# using SDL and OpenGL. Runs on Windows, Linux, *BSD and Mac OS X. - - This is the MOD "Dune 2000" - - SITE: https://www.openra.net/ - - SOURCE: https://github.com/OpenRA/OpenRA - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/openra-enhanced b/apps/openra-enhanced new file mode 100644 index 000000000..cf0692728 --- /dev/null +++ b/apps/openra-enhanced @@ -0,0 +1,4 @@ +# openra-enhanced + Unofficial AppImage of OpenRA containing all 3 game modes. +# SITES: https://github.com/pkgforge-dev/openra-appimage-enhanced +# SOURCES: https://github.com/pkgforge-dev/openra-appimage-enhanced \ No newline at end of file diff --git a/apps/openra-enhanced.md b/apps/openra-enhanced.md deleted file mode 100644 index 974142744..000000000 --- a/apps/openra-enhanced.md +++ /dev/null @@ -1,8 +0,0 @@ -# OPENRA-ENHANCED - - Unofficial AppImage of OpenRA containing all 3 game modes. - - SITE: https://github.com/pkgforge-dev/openra-appimage-enhanced - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/openra-red-alert b/apps/openra-red-alert new file mode 100644 index 000000000..a768e4757 --- /dev/null +++ b/apps/openra-red-alert @@ -0,0 +1,6 @@ +# openra-red-alert +Open Source real-time strategy game engine for early Westwood games such as Command & Conquer: Red Alert written in C# using SDL and OpenGL. Runs on Windows, Linux, *BSD and Mac OS X. + + This is the MOD "Red Alert" +# SITES: https://www.openra.net/ +# SOURCES: https://github.com/OpenRA/OpenRA \ No newline at end of file diff --git a/apps/openra-red-alert.md b/apps/openra-red-alert.md deleted file mode 100644 index 481421ee5..000000000 --- a/apps/openra-red-alert.md +++ /dev/null @@ -1,12 +0,0 @@ -# OPENRA-RED-ALERT - - Open Source real-time strategy game engine for early Westwood games such as Command & Conquer: Red Alert written in C# using SDL and OpenGL. Runs on Windows, Linux, *BSD and Mac OS X. - - This is the MOD "Red Alert" - - SITE: https://www.openra.net/ - - SOURCE: https://github.com/OpenRA/OpenRA - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/openra-tiberian-dawn b/apps/openra-tiberian-dawn new file mode 100644 index 000000000..d48174da9 --- /dev/null +++ b/apps/openra-tiberian-dawn @@ -0,0 +1,6 @@ +# openra-tiberian-dawn +Open Source real-time strategy game engine for early Westwood games such as Command & Conquer: Red Alert written in C# using SDL and OpenGL. Runs on Windows, Linux, *BSD and Mac OS X. + + This is the MOD "Tiberian Dawn" +# SITES: https://www.openra.net/ +# SOURCES: https://github.com/OpenRA/OpenRA \ No newline at end of file diff --git a/apps/openra-tiberian-dawn.md b/apps/openra-tiberian-dawn.md deleted file mode 100644 index e7779c2e5..000000000 --- a/apps/openra-tiberian-dawn.md +++ /dev/null @@ -1,12 +0,0 @@ -# OPENRA-TIBERIAN-DAWN - - Open Source real-time strategy game engine for early Westwood games such as Command & Conquer: Red Alert written in C# using SDL and OpenGL. Runs on Windows, Linux, *BSD and Mac OS X. - - This is the MOD "Tiberian Dawn" - - SITE: https://www.openra.net/ - - SOURCE: https://github.com/OpenRA/OpenRA - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/openramodsdk b/apps/openramodsdk new file mode 100644 index 000000000..be2c63ef3 --- /dev/null +++ b/apps/openramodsdk @@ -0,0 +1,3 @@ +# openramodsdk +Software Development Kit for building your own games using the OpenRA engine. +# SITES: https://github.com/OpenRA/OpenRAModSDK \ No newline at end of file diff --git a/apps/openramodsdk.md b/apps/openramodsdk.md deleted file mode 100644 index a02fba42a..000000000 --- a/apps/openramodsdk.md +++ /dev/null @@ -1,8 +0,0 @@ -# OPENRAMODSDK - - Software Development Kit for building your own games using the OpenRA engine. - - SITE: https://github.com/OpenRA/OpenRAModSDK - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/openrct2 b/apps/openrct2 new file mode 100644 index 000000000..ef9dd158b --- /dev/null +++ b/apps/openrct2 @@ -0,0 +1,3 @@ +# openrct2 +OpenRCT2 is an open-source re-implementation of RollerCoaster Tycoon 2 (RCT2), expanding the game with new features, fixing bugs and raising game limits. The gameplay revolves around building and maintaining an amusement park containing attractions, shops and facilities. The player must try to make a profit and maintain a good park reputation whilst keeping the guests happy. +# SITES: https://openrct2.org \ No newline at end of file diff --git a/apps/openrct2-enhanced b/apps/openrct2-enhanced new file mode 100644 index 000000000..bbce51394 --- /dev/null +++ b/apps/openrct2-enhanced @@ -0,0 +1,3 @@ +# openrct2-enhanced +Unofficial, Re-implementation of RollerCoaster Tycoon 2 (RCT2), expanding the game with new features. +# SITES: https://github.com/pkgforge-dev/OpenRCT2-AppImage-Enhanced \ No newline at end of file diff --git a/apps/openrct2-enhanced.md b/apps/openrct2-enhanced.md deleted file mode 100644 index 61c6d2864..000000000 --- a/apps/openrct2-enhanced.md +++ /dev/null @@ -1,8 +0,0 @@ -# OPENRCT2-ENHANCED - - Unofficial, Re-implementation of RollerCoaster Tycoon 2 (RCT2), expanding the game with new features. - - SITE: https://github.com/pkgforge-dev/OpenRCT2-AppImage-Enhanced - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/openrct2.md b/apps/openrct2.md deleted file mode 100644 index 9d637c33c..000000000 --- a/apps/openrct2.md +++ /dev/null @@ -1,8 +0,0 @@ -# OPENRCT2 - - OpenRCT2 is an open-source re-implementation of RollerCoaster Tycoon 2 (RCT2), expanding the game with new features, fixing bugs and raising game limits. The gameplay revolves around building and maintaining an amusement park containing attractions, shops and facilities. The player must try to make a profit and maintain a good park reputation whilst keeping the guests happy. - - SITE: https://openrct2.org - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/openrgb b/apps/openrgb new file mode 100644 index 000000000..33fa88158 --- /dev/null +++ b/apps/openrgb @@ -0,0 +1,3 @@ +# openrgb +Open source RGB lighting control that doesn't depend on manufacturer software. +# SITES: https://openrgb.org/ \ No newline at end of file diff --git a/apps/openrgb.md b/apps/openrgb.md deleted file mode 100644 index 8c2bf81dc..000000000 --- a/apps/openrgb.md +++ /dev/null @@ -1,8 +0,0 @@ -# OPENRGB - - Open source RGB lighting control that doesn't depend on manufacturer software. - - SITE: https://openrgb.org/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/openscad b/apps/openscad new file mode 100644 index 000000000..6a2ca8fcf --- /dev/null +++ b/apps/openscad @@ -0,0 +1,3 @@ +# openscad +The Programmers Solid 3D CAD Modeller +# SITES: https://github.com/openscad/openscad \ No newline at end of file diff --git a/apps/openscad.md b/apps/openscad.md deleted file mode 100644 index 779daf5d3..000000000 --- a/apps/openscad.md +++ /dev/null @@ -1,8 +0,0 @@ -# OPENSCAD - - The Programmers Solid 3D CAD Modeller - - SITE: https://github.com/openscad/openscad - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/openscreen b/apps/openscreen new file mode 100644 index 000000000..7d6227dd6 --- /dev/null +++ b/apps/openscreen @@ -0,0 +1,3 @@ +# openscreen +Create stunning screen recordings for free. Open-source, no subscriptions, no watermarks, and free for commercial use. An alternative to Screen Studio. +# SITES: https://github.com/siddharthvaddem/openscreen \ No newline at end of file diff --git a/apps/openscreen.md b/apps/openscreen.md deleted file mode 100644 index 7a311a7f1..000000000 --- a/apps/openscreen.md +++ /dev/null @@ -1,8 +0,0 @@ -# OPENSCREEN - - Create stunning screen recordings for free. Open-source, no subscriptions, no watermarks, and free for commercial use. An alternative to Screen Studio. - - SITE: https://github.com/siddharthvaddem/openscreen - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/openshot b/apps/openshot new file mode 100644 index 000000000..54947126c --- /dev/null +++ b/apps/openshot @@ -0,0 +1,4 @@ +# openshot +OpenShot is a cross-platform video editor, with support for Linux, Mac and Windows. This is the official x86_64 AppImage of the project. +# SITES: https://www.openshot.org +# SOURCES: https://github.com/OpenShot/openshot-qt \ No newline at end of file diff --git a/apps/openshot.md b/apps/openshot.md deleted file mode 100644 index e3cb479b6..000000000 --- a/apps/openshot.md +++ /dev/null @@ -1,21 +0,0 @@ -# OPENSHOT - - OpenShot is a cross-platform video editor, with support for Linux, Mac and Windows. This is the official x86_64 AppImage of the project. - - KNOWN ISSUE: the desktop integration prompt is enabled by default, so if you click "Yes" the launcher of the app will appear doubled in the application menu. To remove this one, copy/paste this command: - - - rm ~/.local/share/applications/appimagekit-openshot-qt.desktop - - To prevent the AppImage from always prompting for desktop integration when you run it, just copy/paste the following two commands: - - - mkdir ~/.local/share/appimagekit - - touch ~/.local/share/appimagekit/no_desktopintegration - - ![Screenshot](https://cdn.openshot.org/static/img/gallery/ui-example.jpg) - - SITE: https://www.openshot.org - - SOURCE: https://github.com/OpenShot/openshot-qt - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/openstickies b/apps/openstickies new file mode 100644 index 000000000..25b9a1058 --- /dev/null +++ b/apps/openstickies @@ -0,0 +1,3 @@ +# openstickies +Sticky notes for your desktop. Simple, fast, private. Drop files, paste screenshots, set reminders, keep things visible where you work. +# SITES: https://github.com/HimaSphere/OpenStickies \ No newline at end of file diff --git a/apps/openstickies.md b/apps/openstickies.md deleted file mode 100644 index ebc42d016..000000000 --- a/apps/openstickies.md +++ /dev/null @@ -1,8 +0,0 @@ -# OPENSTICKIES - - Sticky notes for your desktop. Simple, fast, private. Drop files, paste screenshots, set reminders, keep things visible where you work. - - SITE: https://github.com/HimaSphere/OpenStickies - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/openstream-music b/apps/openstream-music new file mode 100644 index 000000000..3cbc00e09 --- /dev/null +++ b/apps/openstream-music @@ -0,0 +1,3 @@ +# openstream-music +The OpenStream Music source. +# SITES: https://github.com/openstreamorg/openstreammusic \ No newline at end of file diff --git a/apps/openstream-music.md b/apps/openstream-music.md deleted file mode 100644 index 5e42c6579..000000000 --- a/apps/openstream-music.md +++ /dev/null @@ -1,8 +0,0 @@ -# OPENSTREAM-MUSIC - - The OpenStream Music source. - - SITE: https://github.com/openstreamorg/openstreammusic - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/openswe1r b/apps/openswe1r new file mode 100644 index 000000000..a3fce2921 --- /dev/null +++ b/apps/openswe1r @@ -0,0 +1,3 @@ +# openswe1r +Unofficial, an open-source port of the 1999 game Star Wars Episode 1: Racer. +# SITES: https://github.com/pkgforge-dev/OpenSWE1R-AppImage \ No newline at end of file diff --git a/apps/openswe1r.md b/apps/openswe1r.md deleted file mode 100644 index 51c86f236..000000000 --- a/apps/openswe1r.md +++ /dev/null @@ -1,8 +0,0 @@ -# OPENSWE1R - - Unofficial, an open-source port of the 1999 game Star Wars Episode 1: Racer. - - SITE: https://github.com/pkgforge-dev/OpenSWE1R-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/openterface-qt b/apps/openterface-qt new file mode 100644 index 000000000..b043eabce --- /dev/null +++ b/apps/openterface-qt @@ -0,0 +1,3 @@ +# openterface-qt +Openterface Mini-KVM. +# SITES: https://github.com/TechxArtisanStudio/Openterface_QT \ No newline at end of file diff --git a/apps/openterface-qt.md b/apps/openterface-qt.md deleted file mode 100644 index d1cc5c487..000000000 --- a/apps/openterface-qt.md +++ /dev/null @@ -1,8 +0,0 @@ -# OPENTERFACE-QT - - Openterface Mini-KVM. - - SITE: https://github.com/TechxArtisanStudio/Openterface_QT - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/opentodolist b/apps/opentodolist new file mode 100644 index 000000000..d8a6f0b2e --- /dev/null +++ b/apps/opentodolist @@ -0,0 +1,3 @@ +# opentodolist +A note and task managing application +# SITES: https://github.com/mhoeher/opentodolist \ No newline at end of file diff --git a/apps/opentodolist.md b/apps/opentodolist.md deleted file mode 100644 index f919ea9fe..000000000 --- a/apps/opentodolist.md +++ /dev/null @@ -1,8 +0,0 @@ -# OPENTODOLIST - - A note and task managing application - - SITE: https://github.com/mhoeher/opentodolist - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/opentrons b/apps/opentrons new file mode 100644 index 000000000..be7b49895 --- /dev/null +++ b/apps/opentrons @@ -0,0 +1,3 @@ +# opentrons +Opentrons desktop application +# SITES: https://github.com/Opentrons/opentrons \ No newline at end of file diff --git a/apps/opentrons.md b/apps/opentrons.md deleted file mode 100644 index 6e31f9b3a..000000000 --- a/apps/opentrons.md +++ /dev/null @@ -1,8 +0,0 @@ -# OPENTRONS - - Opentrons desktop application - - SITE: https://github.com/Opentrons/opentrons - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/openttd b/apps/openttd new file mode 100644 index 000000000..2dfde8f76 --- /dev/null +++ b/apps/openttd @@ -0,0 +1,3 @@ +# openttd +Unofficial, an open source simulation game based upon Transport Tycoon Deluxe. +# SITES: https://github.com/pkgforge-dev/OpenTTD-AppImage \ No newline at end of file diff --git a/apps/openttd.md b/apps/openttd.md deleted file mode 100644 index 04b6c2d9d..000000000 --- a/apps/openttd.md +++ /dev/null @@ -1,8 +0,0 @@ -# OPENTTD - - Unofficial, an open source simulation game based upon Transport Tycoon Deluxe. - - SITE: https://github.com/pkgforge-dev/OpenTTD-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/opentubex b/apps/opentubex new file mode 100644 index 000000000..dd976b210 --- /dev/null +++ b/apps/opentubex @@ -0,0 +1,4 @@ +# opentubex + A FreeTube fork with extra features for privacy. +# SITES: https://github.com/opentubex/opentubex +# SOURCES: https://github.com/opentubex/opentubex \ No newline at end of file diff --git a/apps/opentubex.md b/apps/opentubex.md deleted file mode 100644 index 89e64a542..000000000 --- a/apps/opentubex.md +++ /dev/null @@ -1,8 +0,0 @@ -# OPENTUBEX - - A FreeTube fork with extra features for privacy. - - SITE: https://github.com/opentubex/opentubex - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/opentyrian2000 b/apps/opentyrian2000 new file mode 100644 index 000000000..511b49e2d --- /dev/null +++ b/apps/opentyrian2000 @@ -0,0 +1,3 @@ +# opentyrian2000 +An open-source port of the DOS shoot-em-up Tyrian. +# SITES: https://github.com/pkgforge-dev/OpenTyrian2000-AppImage \ No newline at end of file diff --git a/apps/opentyrian2000.md b/apps/opentyrian2000.md deleted file mode 100644 index 7c1441a9f..000000000 --- a/apps/opentyrian2000.md +++ /dev/null @@ -1,8 +0,0 @@ -# OPENTYRIAN2000 - - An open-source port of the DOS shoot-em-up Tyrian. - - SITE: https://github.com/pkgforge-dev/OpenTyrian2000-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/openxcom b/apps/openxcom new file mode 100644 index 000000000..0afdfcef6 --- /dev/null +++ b/apps/openxcom @@ -0,0 +1,3 @@ +# openxcom +Open-source clone of the original UFO: Enemy Unknown licensed under the GPL and written in C++ / SDL. +# SITES: https://openxcom.org \ No newline at end of file diff --git a/apps/openxcom-extended b/apps/openxcom-extended new file mode 100644 index 000000000..0657f7946 --- /dev/null +++ b/apps/openxcom-extended @@ -0,0 +1,3 @@ +# openxcom-extended +OXCE, extended version of openXcom provide better mod support, QoL improvements, new game mechanics, improved and new GUIs. +# SITES: https://openxcom.org \ No newline at end of file diff --git a/apps/openxcom-extended.md b/apps/openxcom-extended.md deleted file mode 100644 index 96039c6ae..000000000 --- a/apps/openxcom-extended.md +++ /dev/null @@ -1,8 +0,0 @@ -# OPENXCOM-EXTENDED - - OXCE, extended version of openXcom provide better mod support, QoL improvements, new game mechanics, improved and new GUIs. - - SITE: https://openxcom.org - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/openxcom.md b/apps/openxcom.md deleted file mode 100644 index 223c73bdc..000000000 --- a/apps/openxcom.md +++ /dev/null @@ -1,8 +0,0 @@ -# OPENXCOM - - Open-source clone of the original UFO: Enemy Unknown licensed under the GPL and written in C++ / SDL. - - SITE: https://openxcom.org - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/openxray b/apps/openxray new file mode 100644 index 000000000..4fc7a7f06 --- /dev/null +++ b/apps/openxray @@ -0,0 +1,4 @@ +# openxray + Unofficial AppImage of OpenXRay. +# SITES: https://github.com/pkgforge-dev/openxray-appimage +# SOURCES: https://github.com/pkgforge-dev/openxray-appimage \ No newline at end of file diff --git a/apps/openxray.md b/apps/openxray.md deleted file mode 100644 index 4e95cccc6..000000000 --- a/apps/openxray.md +++ /dev/null @@ -1,8 +0,0 @@ -# OPENXRAY - - Unofficial AppImage of OpenXRay. - - SITE: https://github.com/pkgforge-dev/openxray-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/opera b/apps/opera new file mode 100644 index 000000000..6f7d84234 --- /dev/null +++ b/apps/opera @@ -0,0 +1,7 @@ +# opera +Opera - Fast and secure web browser (Stable version). + + This is the Unofficial AppImage built from the official deb/snap package. +# SCREENSHOTS: https://www-static-blogs.operacdn.com/news/wp-content/uploads/sites/2/2016/05/full-page-screenshot-joxi-addon.jpg +# SITES: https://www.opera.com +# SOURCES: https://github.com/ivan-hc/Opera-appimage \ No newline at end of file diff --git a/apps/opera-beta b/apps/opera-beta new file mode 100644 index 000000000..c581281f0 --- /dev/null +++ b/apps/opera-beta @@ -0,0 +1,7 @@ +# opera-beta +Opera - Fast and secure web browser (Beta version). + + This is the Unofficial AppImage built from the official deb/snap package. +# SCREENSHOTS: https://www-static-blogs.operacdn.com/news/wp-content/uploads/sites/2/2016/05/full-page-screenshot-joxi-addon.jpg +# SITES: https://www.opera.com +# SOURCES: https://github.com/ivan-hc/Opera-appimage \ No newline at end of file diff --git a/apps/opera-beta.md b/apps/opera-beta.md deleted file mode 100644 index c179095e3..000000000 --- a/apps/opera-beta.md +++ /dev/null @@ -1,14 +0,0 @@ -# OPERA-BETA - - Opera - Fast and secure web browser (Beta version). - - This is the Unofficial AppImage built from the official deb/snap package. - - ![Screenshot](https://www-static-blogs.operacdn.com/news/wp-content/uploads/sites/2/2016/05/full-page-screenshot-joxi-addon.jpg) - - SITE: https://www.opera.com - - SOURCE: https://github.com/ivan-hc/Opera-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/opera-dev b/apps/opera-dev new file mode 100644 index 000000000..340d0c96d --- /dev/null +++ b/apps/opera-dev @@ -0,0 +1,7 @@ +# opera-dev +Opera - Fast and secure web browser (Developer version). + + This is the Unofficial AppImage built from the official deb/snap package. +# SCREENSHOTS: https://www-static-blogs.operacdn.com/news/wp-content/uploads/sites/2/2016/05/full-page-screenshot-joxi-addon.jpg +# SITES: https://www.opera.com +# SOURCES: https://github.com/ivan-hc/Opera-appimage \ No newline at end of file diff --git a/apps/opera-dev.md b/apps/opera-dev.md deleted file mode 100644 index e1abcb05a..000000000 --- a/apps/opera-dev.md +++ /dev/null @@ -1,14 +0,0 @@ -# OPERA-DEV - - Opera - Fast and secure web browser (Developer version). - - This is the Unofficial AppImage built from the official deb/snap package. - - ![Screenshot](https://www-static-blogs.operacdn.com/news/wp-content/uploads/sites/2/2016/05/full-page-screenshot-joxi-addon.jpg) - - SITE: https://www.opera.com - - SOURCE: https://github.com/ivan-hc/Opera-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/opera.md b/apps/opera.md deleted file mode 100644 index 83be3d836..000000000 --- a/apps/opera.md +++ /dev/null @@ -1,14 +0,0 @@ -# OPERA - - Opera - Fast and secure web browser (Stable version). - - This is the Unofficial AppImage built from the official deb/snap package. - - ![Screenshot](https://www-static-blogs.operacdn.com/news/wp-content/uploads/sites/2/2016/05/full-page-screenshot-joxi-addon.jpg) - - SITE: https://www.opera.com - - SOURCE: https://github.com/ivan-hc/Opera-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/optiimage b/apps/optiimage new file mode 100644 index 000000000..a062dff17 --- /dev/null +++ b/apps/optiimage @@ -0,0 +1,3 @@ +# optiimage +Unofficial, optimize your images with OptiImage, a useful image compressor that supports PNG, JPEG, WebP and SVG file types. +# SITES: https://github.com/pkgforge-dev/OptiImage-AppImage \ No newline at end of file diff --git a/apps/optiimage.md b/apps/optiimage.md deleted file mode 100644 index d9bc61bec..000000000 --- a/apps/optiimage.md +++ /dev/null @@ -1,8 +0,0 @@ -# OPTIIMAGE - - Unofficial, optimize your images with OptiImage, a useful image compressor that supports PNG, JPEG, WebP and SVG file types. - - SITE: https://github.com/pkgforge-dev/OptiImage-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/orange b/apps/orange new file mode 100644 index 000000000..61f2bf878 --- /dev/null +++ b/apps/orange @@ -0,0 +1,3 @@ +# orange +Cross-platform local file search engine. +# SITES: https://github.com/naaive/orange \ No newline at end of file diff --git a/apps/orange.md b/apps/orange.md deleted file mode 100644 index 07c6423ac..000000000 --- a/apps/orange.md +++ /dev/null @@ -1,8 +0,0 @@ -# ORANGE - - Cross-platform local file search engine. - - SITE: https://github.com/naaive/orange - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/oras b/apps/oras new file mode 100644 index 000000000..a96da31b0 --- /dev/null +++ b/apps/oras @@ -0,0 +1,3 @@ +# oras +OCI registry client - managing content like artifacts, images, packages +# SITES: https://github.com/oras-project/oras \ No newline at end of file diff --git a/apps/oras.md b/apps/oras.md deleted file mode 100644 index 411fbd9b4..000000000 --- a/apps/oras.md +++ /dev/null @@ -1,8 +0,0 @@ -# ORAS - - OCI registry client - managing content like artifacts, images, packages - - SITE: https://github.com/oras-project/oras - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/orca-note b/apps/orca-note new file mode 100644 index 000000000..e286fd96b --- /dev/null +++ b/apps/orca-note @@ -0,0 +1,3 @@ +# orca-note +A note taking application that is good both for outlining and long-form writing. +# SITES: https://github.com/sethyuan/orca-note \ No newline at end of file diff --git a/apps/orca-note.md b/apps/orca-note.md deleted file mode 100644 index f8c6ab66e..000000000 --- a/apps/orca-note.md +++ /dev/null @@ -1,8 +0,0 @@ -# ORCA-NOTE - - A note taking application that is good both for outlining and long-form writing. - - SITE: https://github.com/sethyuan/orca-note - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/orcaslicer b/apps/orcaslicer new file mode 100644 index 000000000..994b66dd4 --- /dev/null +++ b/apps/orcaslicer @@ -0,0 +1,5 @@ +# orcaslicer +G-code generator for 3D printers (Bambu, Prusa, Voron, VzBot, RatRig, Creality, etc.). + + This is the latest Stable release. +# SITES: https://github.com/OrcaSlicer/OrcaSlicer \ No newline at end of file diff --git a/apps/orcaslicer-devel b/apps/orcaslicer-devel new file mode 100644 index 000000000..e0ec1f417 --- /dev/null +++ b/apps/orcaslicer-devel @@ -0,0 +1,5 @@ +# orcaslicer-devel +G-code generator for 3D printers (Bambu, Prusa, Voron, VzBot, RatRig, Creality, etc.). + + This is the more recent development release (Nightly, Alpha, Beta, RC). +# SITES: https://github.com/OrcaSlicer/OrcaSlicer \ No newline at end of file diff --git a/apps/orcaslicer-devel.md b/apps/orcaslicer-devel.md deleted file mode 100644 index 0dcf06ee9..000000000 --- a/apps/orcaslicer-devel.md +++ /dev/null @@ -1,10 +0,0 @@ -# ORCASLICER-DEVEL - - G-code generator for 3D printers (Bambu, Prusa, Voron, VzBot, RatRig, Creality, etc.). - - This is the more recent development release (Nightly, Alpha, Beta, RC). - - SITE: https://github.com/OrcaSlicer/OrcaSlicer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/orcaslicer.md b/apps/orcaslicer.md deleted file mode 100644 index fbc47a142..000000000 --- a/apps/orcaslicer.md +++ /dev/null @@ -1,10 +0,0 @@ -# ORCASLICER - - G-code generator for 3D printers (Bambu, Prusa, Voron, VzBot, RatRig, Creality, etc.). - - This is the latest Stable release. - - SITE: https://github.com/OrcaSlicer/OrcaSlicer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/osrs-tools b/apps/osrs-tools new file mode 100644 index 000000000..fcfd055bb --- /dev/null +++ b/apps/osrs-tools @@ -0,0 +1,3 @@ +# osrs-tools +Several tools for OSRS +# SITES: https://github.com/EricTurf/osrs-tools \ No newline at end of file diff --git a/apps/osrs-tools.md b/apps/osrs-tools.md deleted file mode 100644 index d63fd9558..000000000 --- a/apps/osrs-tools.md +++ /dev/null @@ -1,8 +0,0 @@ -# OSRS-TOOLS - - Several tools for OSRS - - SITE: https://github.com/EricTurf/osrs-tools - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ossia-score b/apps/ossia-score new file mode 100644 index 000000000..b2d270f87 --- /dev/null +++ b/apps/ossia-score @@ -0,0 +1,3 @@ +# ossia-score +ossia score is a sequencer for audio-visual artists, designed to create interactive shows. +# SITES: https://github.com/OSSIA/score \ No newline at end of file diff --git a/apps/ossia-score.md b/apps/ossia-score.md deleted file mode 100644 index 32ae56d3f..000000000 --- a/apps/ossia-score.md +++ /dev/null @@ -1,8 +0,0 @@ -# OSSIA-SCORE - - ossia score is a sequencer for audio-visual artists, designed to create interactive shows. - - SITE: https://github.com/OSSIA/score - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ostara b/apps/ostara new file mode 100644 index 000000000..71372725e --- /dev/null +++ b/apps/ostara @@ -0,0 +1,3 @@ +# ostara +A desktop application that provides various features to monitor and interact with Spring Boot Applications via Actuator. +# SITES: https://ostara.dev/ \ No newline at end of file diff --git a/apps/ostara.md b/apps/ostara.md deleted file mode 100644 index 35278c102..000000000 --- a/apps/ostara.md +++ /dev/null @@ -1,8 +0,0 @@ -# OSTARA - - A desktop application that provides various features to monitor and interact with Spring Boot Applications via Actuator. - - SITE: https://ostara.dev/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/osu b/apps/osu new file mode 100644 index 000000000..20f6f19d5 --- /dev/null +++ b/apps/osu @@ -0,0 +1,3 @@ +# osu +A free-to-win rhythm game. Rhythm is just a click away! The future of osu! and the beginning of an open era! Currently known by and released under the codename "lazer". As in sharper than cutting-edge. +# SITES: https://github.com/ppy/osu \ No newline at end of file diff --git a/apps/osu.md b/apps/osu.md deleted file mode 100644 index a8c106325..000000000 --- a/apps/osu.md +++ /dev/null @@ -1,8 +0,0 @@ -# OSU - - A free-to-win rhythm game. Rhythm is just a click away! The future of osu! and the beginning of an open era! Currently known by and released under the codename "lazer". As in sharper than cutting-edge. - - SITE: https://github.com/ppy/osu - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ots b/apps/ots new file mode 100644 index 000000000..00a0f70fa --- /dev/null +++ b/apps/ots @@ -0,0 +1,3 @@ +# ots +🔐 Share end-to-end encrypted secrets with others via a one-time URL +# SITES: https://github.com/sniptt-official/ots \ No newline at end of file diff --git a/apps/ots.md b/apps/ots.md deleted file mode 100644 index fd058ec65..000000000 --- a/apps/ots.md +++ /dev/null @@ -1,8 +0,0 @@ -# OTS - - 🔐 Share end-to-end encrypted secrets with others via a one-time URL - - SITE: https://github.com/sniptt-official/ots - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ottomatic b/apps/ottomatic new file mode 100644 index 000000000..8739ae403 --- /dev/null +++ b/apps/ottomatic @@ -0,0 +1,9 @@ +# ottomatic +The year is 1957 and a fleet of flying saucers from Planet X have come to Earth. These saucers are under the control of the evil Brain Aliens who are abducting helpless human beings to become slaves of The Giant Brain. + + You are Otto Matic, the robot who is given the job of saving Earth from the clutches of The Giant Brain from Planet X. You must rescue as many humans as you can while defeating the Brain Aliens and all of their evil followers. + + Your mission will take you to strange and fantastic alien worlds which are often treacherous and will require Otto to perform amazing feats. +# SCREENSHOTS: https://raw.githubusercontent.com/jorio/OttoMatic/master/docs/screenshot.webp +# SITES: https://pangeasoft.net/otto +# SOURCES: https://github.com/jorio/OttoMatic \ No newline at end of file diff --git a/apps/ottomatic.md b/apps/ottomatic.md deleted file mode 100644 index cdff13dde..000000000 --- a/apps/ottomatic.md +++ /dev/null @@ -1,16 +0,0 @@ -# OTTOMATIC - - The year is 1957 and a fleet of flying saucers from Planet X have come to Earth. These saucers are under the control of the evil Brain Aliens who are abducting helpless human beings to become slaves of The Giant Brain. - - You are Otto Matic, the robot who is given the job of saving Earth from the clutches of The Giant Brain from Planet X. You must rescue as many humans as you can while defeating the Brain Aliens and all of their evil followers. - - Your mission will take you to strange and fantastic alien worlds which are often treacherous and will require Otto to perform amazing feats. - - ![Screenshot](https://raw.githubusercontent.com/jorio/OttoMatic/master/docs/screenshot.webp) - - SITE: https://pangeasoft.net/otto - - SOURCE: https://github.com/jorio/OttoMatic - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/outer-wilds-mod-manager b/apps/outer-wilds-mod-manager new file mode 100644 index 000000000..26fb0edb0 --- /dev/null +++ b/apps/outer-wilds-mod-manager @@ -0,0 +1,3 @@ +# outer-wilds-mod-manager +The mod manager for the Outer Wilds Mod Loader +# SITES: https://github.com/Bwc9876/ow-mod-man \ No newline at end of file diff --git a/apps/outer-wilds-mod-manager.md b/apps/outer-wilds-mod-manager.md deleted file mode 100644 index 818094a54..000000000 --- a/apps/outer-wilds-mod-manager.md +++ /dev/null @@ -1,8 +0,0 @@ -# OUTER-WILDS-MOD-MANAGER - - The mod manager for the Outer Wilds Mod Loader - - SITE: https://github.com/Bwc9876/ow-mod-man - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/outline-client b/apps/outline-client new file mode 100644 index 000000000..fa7742674 --- /dev/null +++ b/apps/outline-client @@ -0,0 +1,3 @@ +# outline-client +The Outline clients use the popular Shadowsocks protocol, and lean on the Cordova and Electron frameworks. +# SITES: https://getoutline.org \ No newline at end of file diff --git a/apps/outline-client.md b/apps/outline-client.md deleted file mode 100644 index 6b26af255..000000000 --- a/apps/outline-client.md +++ /dev/null @@ -1,8 +0,0 @@ -# OUTLINE-CLIENT - - The Outline clients use the popular Shadowsocks protocol, and lean on the Cordova and Electron frameworks. - - SITE: https://getoutline.org - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/outline-manager b/apps/outline-manager new file mode 100644 index 000000000..ee5694026 --- /dev/null +++ b/apps/outline-manager @@ -0,0 +1,3 @@ +# outline-manager +Create and manage access to Outline servers +# SITES: https://github.com/Jigsaw-Code/outline-server \ No newline at end of file diff --git a/apps/outline-manager.md b/apps/outline-manager.md deleted file mode 100644 index bb2919962..000000000 --- a/apps/outline-manager.md +++ /dev/null @@ -1,8 +0,0 @@ -# OUTLINE-MANAGER - - Create and manage access to Outline servers - - SITE: https://github.com/Jigsaw-Code/outline-server - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/overbind b/apps/overbind new file mode 100644 index 000000000..3bdba15ab --- /dev/null +++ b/apps/overbind @@ -0,0 +1,5 @@ +# overbind +A utility that allows binding keyboard buttons to virtual Xbox360 controller joystick outputs. Makes use of ViGEmBus and ViGEmClient. Keybinds are easily customizeable within the app's UI. + + Built specifically with Hollow Knight speedruns in mind. +# SITES: https://github.com/cjonas1999/OverBind \ No newline at end of file diff --git a/apps/overbind.md b/apps/overbind.md deleted file mode 100644 index c0a1f96da..000000000 --- a/apps/overbind.md +++ /dev/null @@ -1,10 +0,0 @@ -# OVERBIND - - A utility that allows binding keyboard buttons to virtual Xbox360 controller joystick outputs. Makes use of ViGEmBus and ViGEmClient. Keybinds are easily customizeable within the app's UI. - - Built specifically with Hollow Knight speedruns in mind. - - SITE: https://github.com/cjonas1999/OverBind - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/overlayed b/apps/overlayed new file mode 100644 index 000000000..112c8fb65 --- /dev/null +++ b/apps/overlayed @@ -0,0 +1,3 @@ +# overlayed +A modern, open-source, and free voice chat overlay for Discord that supports Mac, Linux, and Windows +# SITES: https://github.com/overlayeddev/overlayed \ No newline at end of file diff --git a/apps/overlayed.md b/apps/overlayed.md deleted file mode 100644 index 73fa9120f..000000000 --- a/apps/overlayed.md +++ /dev/null @@ -1,8 +0,0 @@ -# OVERLAYED - - A modern, open-source, and free voice chat overlay for Discord that supports Mac, Linux, and Windows - - SITE: https://github.com/overlayeddev/overlayed - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/oversteer b/apps/oversteer new file mode 100644 index 000000000..795e310ff --- /dev/null +++ b/apps/oversteer @@ -0,0 +1,3 @@ +# oversteer +Unofficial, Steering Wheel Manager for Linux. +# SITES: https://github.com/pkgforge-dev/Oversteer-AppImage \ No newline at end of file diff --git a/apps/oversteer.md b/apps/oversteer.md deleted file mode 100644 index b19e0d1a3..000000000 --- a/apps/oversteer.md +++ /dev/null @@ -1,8 +0,0 @@ -# OVERSTEER - - Unofficial, Steering Wheel Manager for Linux. - - SITE: https://github.com/pkgforge-dev/Oversteer-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/overte b/apps/overte new file mode 100644 index 000000000..97c186b9b --- /dev/null +++ b/apps/overte @@ -0,0 +1,3 @@ +# overte +Overte open source virtual worlds platform. +# SITES: https://github.com/overte-org/overte \ No newline at end of file diff --git a/apps/overte.md b/apps/overte.md deleted file mode 100644 index fbef1ac78..000000000 --- a/apps/overte.md +++ /dev/null @@ -1,26 +0,0 @@ -# OVERTE - - Overte open source virtual worlds and social-VR platform. - - Overte is an open source virtual worlds and social-VR software which enables you to create and share virtual worlds as virtual reality (VR) and desktop experiences. You can create and host your own virtual world, explore other worlds, meet and connect with other users, attend or host live VR events, and much more. - - The Overte software provides the following key features: - * Collaborative world creation and editing - * VR support, including body tracking - * Scalability for up to 500 users in a single world - * Scripting in JavaScript, which allows creation of games, interactables, UI elements, and custom applications - * High quality low latency spatial audio - * Powerful physics through Bullet physics engine - * Fully open-source under the permissive Apache 2.0 license - * No central authority. You can run your own server from home. - * No user account required - * Supported by a democratic non-profit organization - - ![Screenshot of a Maker Meeting, on the "El Papa Viejo"](https://docs.overte.org/en/latest/_images/el_papa_viejo.jpg "Maker Meeting, on the El Papa Viejo") - -SITE: https://overte.org - -DONATE: https://overte.org/donate.html - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ovideo b/apps/ovideo new file mode 100644 index 000000000..8d7afa7be --- /dev/null +++ b/apps/ovideo @@ -0,0 +1,3 @@ +# ovideo +Video Editor +# SITES: https://github.com/colin-i/ostream \ No newline at end of file diff --git a/apps/ovideo.md b/apps/ovideo.md deleted file mode 100644 index fffdc6a5b..000000000 --- a/apps/ovideo.md +++ /dev/null @@ -1,8 +0,0 @@ -# OVIDEO - - Video Editor - - SITE: https://github.com/colin-i/ostream - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ow-mod-man b/apps/ow-mod-man new file mode 100644 index 000000000..df5c697e5 --- /dev/null +++ b/apps/ow-mod-man @@ -0,0 +1,3 @@ +# ow-mod-man +The mod manager for the Outer Wilds Mod Loader +# SITES: https://github.com/ow-mods/ow-mod-man \ No newline at end of file diff --git a/apps/ow-mod-man.md b/apps/ow-mod-man.md deleted file mode 100644 index 523a217b1..000000000 --- a/apps/ow-mod-man.md +++ /dev/null @@ -1,8 +0,0 @@ -# OW-MOD-MAN - - The mod manager for the Outer Wilds Mod Loader - - SITE: https://github.com/ow-mods/ow-mod-man - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/owallet b/apps/owallet new file mode 100644 index 000000000..a4598dcb0 --- /dev/null +++ b/apps/owallet @@ -0,0 +1,3 @@ +# owallet +OWallet is a comprehensive Ontology desktop wallet +# SITES: https://github.com/ontio/OWallet \ No newline at end of file diff --git a/apps/owallet.md b/apps/owallet.md deleted file mode 100644 index a809b383e..000000000 --- a/apps/owallet.md +++ /dev/null @@ -1,8 +0,0 @@ -# OWALLET - - OWallet is a comprehensive Ontology desktop wallet - - SITE: https://github.com/ontio/OWallet - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/owncloud b/apps/owncloud new file mode 100644 index 000000000..246a9e22d --- /dev/null +++ b/apps/owncloud @@ -0,0 +1,3 @@ +# owncloud +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. +# SITES: https://github.com/https://owncloud.com \ No newline at end of file diff --git a/apps/owncloud.md b/apps/owncloud.md deleted file mode 100644 index 435deeaac..000000000 --- a/apps/owncloud.md +++ /dev/null @@ -1,8 +0,0 @@ -# OWNCLOUD - - 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. - - SITE: https://github.com/https://owncloud.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/owte b/apps/owte new file mode 100644 index 000000000..beface665 --- /dev/null +++ b/apps/owte @@ -0,0 +1,3 @@ +# owte +Anime girl dancing on your screen. +# SITES: https://github.com/sumit-poudel/oWtE \ No newline at end of file diff --git a/apps/owte.md b/apps/owte.md deleted file mode 100644 index 22877a053..000000000 --- a/apps/owte.md +++ /dev/null @@ -1,8 +0,0 @@ -# OWTE - - Anime girl dancing on your screen. - - SITE: https://github.com/sumit-poudel/oWtE - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/oxen-gui-wallet b/apps/oxen-gui-wallet new file mode 100644 index 000000000..68fd2096a --- /dev/null +++ b/apps/oxen-gui-wallet @@ -0,0 +1,3 @@ +# oxen-gui-wallet +Oxen electron GUI wallet +# SITES: https://github.com/oxen-io/oxen-electron-gui-wallet \ No newline at end of file diff --git a/apps/oxen-gui-wallet.md b/apps/oxen-gui-wallet.md deleted file mode 100644 index f58a4856c..000000000 --- a/apps/oxen-gui-wallet.md +++ /dev/null @@ -1,8 +0,0 @@ -# OXEN-GUI-WALLET - - Oxen electron GUI wallet - - SITE: https://github.com/oxen-io/oxen-electron-gui-wallet - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/p2p-chat b/apps/p2p-chat new file mode 100644 index 000000000..f978982b9 --- /dev/null +++ b/apps/p2p-chat @@ -0,0 +1,3 @@ +# p2p-chat +P2P LAN chatting and file sharing tool. +# SITES: https://github.com/dgeibi/p2p-chat \ No newline at end of file diff --git a/apps/p2p-chat.md b/apps/p2p-chat.md deleted file mode 100644 index 04026b823..000000000 --- a/apps/p2p-chat.md +++ /dev/null @@ -1,7 +0,0 @@ -# P2P-CHAT - - P2P LAN chatting and file sharing tool. - - SITE: https://github.com/dgeibi/p2p-chat - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/p2pderivatives b/apps/p2pderivatives new file mode 100644 index 000000000..7d0c528fc --- /dev/null +++ b/apps/p2pderivatives @@ -0,0 +1,3 @@ +# p2pderivatives +P2PDerivatives is an application that enables users to enter into Discreet Log Contracts with each others. +# SITES: https://github.com/p2pderivatives/p2pderivatives-client \ No newline at end of file diff --git a/apps/p2pderivatives.md b/apps/p2pderivatives.md deleted file mode 100644 index 1d1ad707f..000000000 --- a/apps/p2pderivatives.md +++ /dev/null @@ -1,8 +0,0 @@ -# P2PDERIVATIVES - - P2PDerivatives is an application that enables users to enter into Discreet Log Contracts with each others. - - SITE: https://github.com/p2pderivatives/p2pderivatives-client - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/p3x-redis-ui b/apps/p3x-redis-ui new file mode 100644 index 000000000..c5339dbe5 --- /dev/null +++ b/apps/p3x-redis-ui @@ -0,0 +1,3 @@ +# p3x-redis-ui +A very functional handy database GUI and works in your pocket on the responsive web or as a desktop app. +# SITES: https://www.corifeus.com/redis-ui \ No newline at end of file diff --git a/apps/p3x-redis-ui.md b/apps/p3x-redis-ui.md deleted file mode 100644 index af25d4db4..000000000 --- a/apps/p3x-redis-ui.md +++ /dev/null @@ -1,8 +0,0 @@ -# P3X-REDIS-UI - - A very functional handy database GUI and works in your pocket on the responsive web or as a desktop app. - - SITE: https://www.corifeus.com/redis-ui - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/packetsender b/apps/packetsender new file mode 100644 index 000000000..19b87139e --- /dev/null +++ b/apps/packetsender @@ -0,0 +1,3 @@ +# packetsender +Network utility for sending / receiving TCP, UDP, SSL, HTTP +# SITES: https://github.com/dannagle/PacketSender \ No newline at end of file diff --git a/apps/packetsender.md b/apps/packetsender.md deleted file mode 100644 index fc1a9eb78..000000000 --- a/apps/packetsender.md +++ /dev/null @@ -1,8 +0,0 @@ -# PACKETSENDER - - Network utility for sending / receiving TCP, UDP, SSL, HTTP - - SITE: https://github.com/dannagle/PacketSender - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/packsquash b/apps/packsquash new file mode 100644 index 000000000..b31387c78 --- /dev/null +++ b/apps/packsquash @@ -0,0 +1,3 @@ +# packsquash +A Minecraft: Java Edition resource and data pack optimizer which aims to achieve the best possible compression, performance and protection, improving pack distribution, storage and in-game load times. +# SITES: https://github.com/ComunidadAylas/PackSquash \ No newline at end of file diff --git a/apps/packsquash.md b/apps/packsquash.md deleted file mode 100644 index 22c852cdc..000000000 --- a/apps/packsquash.md +++ /dev/null @@ -1,8 +0,0 @@ -# PACKSQUASH - - A Minecraft: Java Edition resource and data pack optimizer which aims to achieve the best possible compression, performance and protection, improving pack distribution, storage and in-game load times. - - SITE: https://github.com/ComunidadAylas/PackSquash - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/paclear b/apps/paclear new file mode 100644 index 000000000..a09416186 --- /dev/null +++ b/apps/paclear @@ -0,0 +1,3 @@ +# paclear +👾paclear is a clear command with PAC-MAN animation👾 +# SITES: https://github.com/orangekame3/paclear \ No newline at end of file diff --git a/apps/paclear.md b/apps/paclear.md deleted file mode 100644 index 1bc070e42..000000000 --- a/apps/paclear.md +++ /dev/null @@ -1,8 +0,0 @@ -# PACLEAR - - 👾paclear is a clear command with PAC-MAN animation👾 - - SITE: https://github.com/orangekame3/paclear - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/padloc b/apps/padloc new file mode 100644 index 000000000..11c31e89d --- /dev/null +++ b/apps/padloc @@ -0,0 +1,3 @@ +# padloc +Electron Wrapper for Padloc app +# SITES: https://github.com/padloc/padloc \ No newline at end of file diff --git a/apps/padloc.md b/apps/padloc.md deleted file mode 100644 index 229d9402f..000000000 --- a/apps/padloc.md +++ /dev/null @@ -1,8 +0,0 @@ -# PADLOC - - Electron Wrapper for Padloc app - - SITE: https://github.com/padloc/padloc - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pageedit b/apps/pageedit new file mode 100644 index 000000000..fe3359ece --- /dev/null +++ b/apps/pageedit @@ -0,0 +1,3 @@ +# pageedit +EPub XHTML Visual Editor. +# SITES: https://github.com/Sigil-Ebook/PageEdit \ No newline at end of file diff --git a/apps/pageedit.md b/apps/pageedit.md deleted file mode 100644 index 0cb8c888e..000000000 --- a/apps/pageedit.md +++ /dev/null @@ -1,8 +0,0 @@ -# PAGEEDIT - - EPub XHTML Visual Editor. - - SITE: https://github.com/Sigil-Ebook/PageEdit - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/painel-web b/apps/painel-web new file mode 100644 index 000000000..3685690a0 --- /dev/null +++ b/apps/painel-web @@ -0,0 +1,3 @@ +# painel-web +Novo SGA panel +# SITES: https://github.com/novosga/painel-web \ No newline at end of file diff --git a/apps/painel-web.md b/apps/painel-web.md deleted file mode 100644 index 25e225024..000000000 --- a/apps/painel-web.md +++ /dev/null @@ -1,8 +0,0 @@ -# PAINEL-WEB - - Novo SGA panel - - SITE: https://github.com/novosga/painel-web - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/paket b/apps/paket new file mode 100644 index 000000000..e51ddc535 --- /dev/null +++ b/apps/paket @@ -0,0 +1,3 @@ +# paket +A simple and fast package manager for the Fish shell written in Rust. +# SITES: https://github.com/joseluisq/paket \ No newline at end of file diff --git a/apps/paket.md b/apps/paket.md deleted file mode 100644 index e889efd0a..000000000 --- a/apps/paket.md +++ /dev/null @@ -1,8 +0,0 @@ -# PAKET - - A simple and fast package manager for the Fish shell written in Rust. - - SITE: https://github.com/joseluisq/paket - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/palapeli b/apps/palapeli new file mode 100644 index 000000000..38390d1ba --- /dev/null +++ b/apps/palapeli @@ -0,0 +1,12 @@ +# palapeli +Palapeli is a jigsaw puzzle game. Unlike other games in that genre, you are not limited to aligning pieces on imaginary grids. The pieces are freely moveable. + + This game is part of the KDE Games suite. + + USAGE (from the command line): + + kdegames -h (shows the list of games) + kdegames $GAME (launches the selected game) +# SCREENSHOTS: https://www.kde.org/images/screenshots/palapeli.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-games-suite-appimage \ No newline at end of file diff --git a/apps/palapeli.md b/apps/palapeli.md deleted file mode 100644 index 5d42ef4ea..000000000 --- a/apps/palapeli.md +++ /dev/null @@ -1,19 +0,0 @@ -# PALAPELI - - Palapeli is a jigsaw puzzle game. Unlike other games in that genre, you are not limited to aligning pieces on imaginary grids. The pieces are freely moveable. - - This game is part of the KDE Games suite. - - USAGE (from the command line): - - kdegames -h (shows the list of games) - kdegames $GAME (launches the selected game) - - ![Screenshot](https://www.kde.org/images/screenshots/palapeli.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-games-suite-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/palemoon b/apps/palemoon new file mode 100644 index 000000000..a841a0423 --- /dev/null +++ b/apps/palemoon @@ -0,0 +1,6 @@ +# palemoon +Pale Moon is an Open Source, Goanna-based web browser available for Microsoft Windows and Linux. Pale Moon is a fork of an old build of Mozilla Firefox, independently developed to merge a classic browsing experience with modern web APIs. + + This is the portable official version converted to an AppImage by our team, "Portable Linux Apps" , no additional changes have been made. +# SCREENSHOTS: https://tipsonubuntu.com/wp-content/uploads/2016/07/palemoon-browser.jpg +# SITES: https://www.palemoon.org \ No newline at end of file diff --git a/apps/palemoon-legacy b/apps/palemoon-legacy new file mode 100644 index 000000000..18f795fce --- /dev/null +++ b/apps/palemoon-legacy @@ -0,0 +1,4 @@ +# palemoon-legacy + 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. +# SITES: https://github.com/ivan-hc/PaleMoon-appimage +# SOURCES: https://github.com/ivan-hc/PaleMoon-appimage \ No newline at end of file diff --git a/apps/palemoon-legacy.md b/apps/palemoon-legacy.md deleted file mode 100644 index 02c2c2550..000000000 --- a/apps/palemoon-legacy.md +++ /dev/null @@ -1,8 +0,0 @@ -# PALEMOON-LEGACY - - 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. - - SITE: https://github.com/ivan-hc/PaleMoon-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/palemoon.md b/apps/palemoon.md deleted file mode 100644 index f39de9910..000000000 --- a/apps/palemoon.md +++ /dev/null @@ -1,8 +0,0 @@ -# PALEMOON - - Unofficial. Pale Moon is a fully-independent web browser built on its own maintained platform and rendering engine (Goanna), focusing on user customization. - - SITE: https://github.com/ivan-hc/PaleMoon-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/pandoralauncher b/apps/pandoralauncher new file mode 100644 index 000000000..eb8dd522d --- /dev/null +++ b/apps/pandoralauncher @@ -0,0 +1,3 @@ +# pandoralauncher +Pandora is a modern Minecraft launcher that balances ease-of-use with powerful instance management features. +# SITES: https://github.com/Moulberry/PandoraLauncher \ No newline at end of file diff --git a/apps/pandoralauncher.md b/apps/pandoralauncher.md deleted file mode 100644 index f9378ab5f..000000000 --- a/apps/pandoralauncher.md +++ /dev/null @@ -1,8 +0,0 @@ -# PANDORALAUNCHER - - Pandora is a modern Minecraft launcher that balances ease-of-use with powerful instance management features. - - SITE: https://github.com/Moulberry/PandoraLauncher - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/pandoralaunchercrack b/apps/pandoralaunchercrack new file mode 100644 index 000000000..5854c1590 --- /dev/null +++ b/apps/pandoralaunchercrack @@ -0,0 +1,3 @@ +# pandoralaunchercrack +Customized version of Pandora, a modern Minecraft launcher that balances ease-of-use with powerful instance management features. +# SITES: https://github.com/khanhtimn/PandoraLauncherCrack \ No newline at end of file diff --git a/apps/pandoralaunchercrack.md b/apps/pandoralaunchercrack.md deleted file mode 100644 index f77c075bc..000000000 --- a/apps/pandoralaunchercrack.md +++ /dev/null @@ -1,8 +0,0 @@ -# PANDORALAUNCHERCRACK - - Customized version of Pandora, a modern Minecraft launcher that balances ease-of-use with powerful instance management features. - - SITE: https://github.com/khanhtimn/PandoraLauncherCrack - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/panini b/apps/panini new file mode 100644 index 000000000..e6dbff2ab --- /dev/null +++ b/apps/panini @@ -0,0 +1,3 @@ +# panini +Perspective views from panoramic images +# SITES: https://github.com/lazarus-pkgs \ No newline at end of file diff --git a/apps/panini.md b/apps/panini.md deleted file mode 100644 index 6ace56b8b..000000000 --- a/apps/panini.md +++ /dev/null @@ -1,8 +0,0 @@ -# PANINI - - Perspective views from panoramic images - - SITE: https://github.com/lazarus-pkgs - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pano-scrobbler b/apps/pano-scrobbler new file mode 100644 index 000000000..d99600bf8 --- /dev/null +++ b/apps/pano-scrobbler @@ -0,0 +1,3 @@ +# pano-scrobbler +Feature packed cross-platform music tracker for Last.fm, ListenBrainz, Libre.fm, Pleroma and other compatible services. +# SITES: https://github.com/kawaiiDango/pano-scrobbler \ No newline at end of file diff --git a/apps/pano-scrobbler.md b/apps/pano-scrobbler.md deleted file mode 100644 index 02dd6aab4..000000000 --- a/apps/pano-scrobbler.md +++ /dev/null @@ -1,8 +0,0 @@ -# PANO-SCROBBLER - - Feature packed cross-platform music tracker for Last.fm, ListenBrainz, Libre.fm, Pleroma and other compatible services. - - SITE: https://github.com/kawaiiDango/pano-scrobbler - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/panwriter b/apps/panwriter new file mode 100644 index 000000000..e212cb67e --- /dev/null +++ b/apps/panwriter @@ -0,0 +1,3 @@ +# panwriter +Markdown editor with pandoc integration and paginated preview +# SITES: https://github.com/mb21/panwriter \ No newline at end of file diff --git a/apps/panwriter.md b/apps/panwriter.md deleted file mode 100644 index 7c079ac85..000000000 --- a/apps/panwriter.md +++ /dev/null @@ -1,8 +0,0 @@ -# PANWRITER - - Markdown editor with pandoc integration and paginated preview - - SITE: https://github.com/mb21/panwriter - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/paper b/apps/paper new file mode 100644 index 000000000..7da4d2b3c --- /dev/null +++ b/apps/paper @@ -0,0 +1,3 @@ +# paper +A CLI Tool to set a random wallpaper from Unsplash.com +# SITES: https://github.com/anupam-git/paper \ No newline at end of file diff --git a/apps/paper-design b/apps/paper-design new file mode 100644 index 000000000..39c9b65e1 --- /dev/null +++ b/apps/paper-design @@ -0,0 +1,3 @@ +# paper-design +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. +# SITES: https://paper.design \ No newline at end of file diff --git a/apps/paper-design.md b/apps/paper-design.md deleted file mode 100644 index ac8a4e292..000000000 --- a/apps/paper-design.md +++ /dev/null @@ -1,8 +0,0 @@ -# PAPER-DESIGN - - 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. - - SITE: https://paper.design - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/paper.md b/apps/paper.md deleted file mode 100644 index a47ba9b9d..000000000 --- a/apps/paper.md +++ /dev/null @@ -1,8 +0,0 @@ -# PAPER - - A CLI Tool to set a random wallpaper from Unsplash.com - - SITE: https://github.com/anupam-git/paper - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/papercraft b/apps/papercraft new file mode 100644 index 000000000..db99948c3 --- /dev/null +++ b/apps/papercraft @@ -0,0 +1,3 @@ +# papercraft +Papercraft is a tool to unwrap 3D models. +# SITES: https://github.com/rodrigorc/papercraft \ No newline at end of file diff --git a/apps/papercraft.md b/apps/papercraft.md deleted file mode 100644 index 69558cf4f..000000000 --- a/apps/papercraft.md +++ /dev/null @@ -1,8 +0,0 @@ -# PAPERCRAFT - - Papercraft is a tool to unwrap 3D models. - - SITE: https://github.com/rodrigorc/papercraft - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/paperlib b/apps/paperlib new file mode 100644 index 000000000..397098670 --- /dev/null +++ b/apps/paperlib @@ -0,0 +1,3 @@ +# paperlib +An open-source academic paper management tool. +# SITES: https://github.com/Future-Scholars/paperlib \ No newline at end of file diff --git a/apps/paperlib.md b/apps/paperlib.md deleted file mode 100644 index 49c26f8c6..000000000 --- a/apps/paperlib.md +++ /dev/null @@ -1,8 +0,0 @@ -# PAPERLIB - - An open-source academic paper management tool. - - SITE: https://github.com/Future-Scholars/paperlib - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/paperweight b/apps/paperweight new file mode 100644 index 000000000..b619d94f8 --- /dev/null +++ b/apps/paperweight @@ -0,0 +1,4 @@ +# paperweight + Paperweight scans your inbox to map your digital footprint, then helps you take back control and delete your data. +# SITES: https://github.com/wslyvh/paperweight +# SOURCES: https://github.com/wslyvh/paperweight \ No newline at end of file diff --git a/apps/paperweight.md b/apps/paperweight.md deleted file mode 100644 index a3fc5900f..000000000 --- a/apps/paperweight.md +++ /dev/null @@ -1,8 +0,0 @@ -# PAPERWEIGHT - - Paperweight scans your inbox to map your digital footprint, then helps you take back control and delete your data. - - SITE: https://github.com/wslyvh/paperweight - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/parabolic b/apps/parabolic new file mode 100644 index 000000000..5c4bf9621 --- /dev/null +++ b/apps/parabolic @@ -0,0 +1,3 @@ +# parabolic +Unofficial, Download web video and audio. +# SITES: https://github.com/pkgforge-dev/Parabolic-AppImage \ No newline at end of file diff --git a/apps/parabolic.md b/apps/parabolic.md deleted file mode 100644 index 163cf89f7..000000000 --- a/apps/parabolic.md +++ /dev/null @@ -1,8 +0,0 @@ -# PARABOLIC - - Unofficial, Download web video and audio. - - SITE: https://github.com/pkgforge-dev/Parabolic-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/parallelcoin b/apps/parallelcoin new file mode 100644 index 000000000..dea309e3c --- /dev/null +++ b/apps/parallelcoin @@ -0,0 +1,3 @@ +# parallelcoin +Parallelcoin qt wallet appimage binary +# SITES: https://github.com/parallelcointeam/parallelcoin \ No newline at end of file diff --git a/apps/parallelcoin.md b/apps/parallelcoin.md deleted file mode 100644 index 636458665..000000000 --- a/apps/parallelcoin.md +++ /dev/null @@ -1,8 +0,0 @@ -# PARALLELCOIN - - Parallelcoin qt wallet appimage binary - - SITE: https://github.com/parallelcointeam/parallelcoin - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/parchment b/apps/parchment new file mode 100644 index 000000000..e8ec6a234 --- /dev/null +++ b/apps/parchment @@ -0,0 +1,3 @@ +# parchment +A minimal minimal text editor written using web technologies for Windows, Linux and MacOS +# SITES: https://github.com/tywil04/parchment \ No newline at end of file diff --git a/apps/parchment.md b/apps/parchment.md deleted file mode 100644 index 0cd7f97ad..000000000 --- a/apps/parchment.md +++ /dev/null @@ -1,8 +0,0 @@ -# PARCHMENT - - A minimal minimal text editor written using web technologies for Windows, Linux and MacOS - - SITE: https://github.com/tywil04/parchment - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/parity-fether b/apps/parity-fether new file mode 100644 index 000000000..e322d2694 --- /dev/null +++ b/apps/parity-fether @@ -0,0 +1,3 @@ +# parity-fether +Fether Wallet +# SITES: https://github.com/paritytech/fether \ No newline at end of file diff --git a/apps/parity-fether.md b/apps/parity-fether.md deleted file mode 100644 index 36823ec54..000000000 --- a/apps/parity-fether.md +++ /dev/null @@ -1,8 +0,0 @@ -# PARITY-FETHER - - Fether Wallet - - SITE: https://github.com/paritytech/fether - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/parsec b/apps/parsec new file mode 100644 index 000000000..b4585eb0d --- /dev/null +++ b/apps/parsec @@ -0,0 +1,3 @@ +# parsec +Open source Dropbox-like file sharing with full client encryption! +# SITES: https://github.com/Scille/parsec-cloud \ No newline at end of file diff --git a/apps/parsec-linux b/apps/parsec-linux new file mode 100644 index 000000000..0df2d3a9b --- /dev/null +++ b/apps/parsec-linux @@ -0,0 +1,3 @@ +# parsec-linux +Parsec game streaming client +# SITES: https://github.com/E5ten/parsec-linux-AppImage \ No newline at end of file diff --git a/apps/parsec-linux.md b/apps/parsec-linux.md deleted file mode 100644 index 78cc1999a..000000000 --- a/apps/parsec-linux.md +++ /dev/null @@ -1,8 +0,0 @@ -# PARSEC-LINUX - - Parsec game streaming client - - SITE: https://github.com/E5ten/parsec-linux-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/parsec.md b/apps/parsec.md deleted file mode 100644 index b6e73df08..000000000 --- a/apps/parsec.md +++ /dev/null @@ -1,8 +0,0 @@ -# PARSEC - - Open source Dropbox-like file sharing with full client encryption! - - SITE: https://github.com/Scille/parsec-cloud - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/passky b/apps/passky new file mode 100644 index 000000000..03fc6bd19 --- /dev/null +++ b/apps/passky @@ -0,0 +1,3 @@ +# passky +Simple and secure password manager +# SITES: https://github.com/Rabbit-Company/Passky-Desktop \ No newline at end of file diff --git a/apps/passky.md b/apps/passky.md deleted file mode 100644 index 6e7aaae5b..000000000 --- a/apps/passky.md +++ /dev/null @@ -1,8 +0,0 @@ -# PASSKY - - Simple and secure password manager - - SITE: https://github.com/Rabbit-Company/Passky-Desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/passphraser b/apps/passphraser new file mode 100644 index 000000000..9243c356d --- /dev/null +++ b/apps/passphraser @@ -0,0 +1,3 @@ +# passphraser +Phrase-based password generator that can use your own list of words available on Windows, macOS, and Linux +# SITES: https://github.com/zevlee/passphraser \ No newline at end of file diff --git a/apps/passphraser.md b/apps/passphraser.md deleted file mode 100644 index 734d7aeae..000000000 --- a/apps/passphraser.md +++ /dev/null @@ -1,8 +0,0 @@ -# PASSPHRASER - - Phrase-based password generator that can use your own list of words available on Windows, macOS, and Linux - - SITE: https://github.com/zevlee/passphraser - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/paste b/apps/paste new file mode 100644 index 000000000..d83de1ec3 --- /dev/null +++ b/apps/paste @@ -0,0 +1,4 @@ +# paste + Merge lines of files. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/paste.md b/apps/paste.md deleted file mode 100644 index 20d881acd..000000000 --- a/apps/paste.md +++ /dev/null @@ -1,8 +0,0 @@ -# PASTE - - Merge lines of files. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/pastel b/apps/pastel new file mode 100644 index 000000000..59357bb52 --- /dev/null +++ b/apps/pastel @@ -0,0 +1,3 @@ +# pastel +A command-line tool to generate, analyze, convert and manipulate colors +# SITES: https://github.com/sharkdp/pastel \ No newline at end of file diff --git a/apps/pastel.md b/apps/pastel.md deleted file mode 100644 index b61de13d1..000000000 --- a/apps/pastel.md +++ /dev/null @@ -1,8 +0,0 @@ -# PASTEL - - A command-line tool to generate, analyze, convert and manipulate colors - - SITE: https://github.com/sharkdp/pastel - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/patchbay b/apps/patchbay new file mode 100644 index 000000000..a813c7841 --- /dev/null +++ b/apps/patchbay @@ -0,0 +1,3 @@ +# patchbay +An alternative Secure Scuttlebutt client interface that is fully compatible with Patchwork. +# SITES: https://github.com/ssbc/patchbay \ No newline at end of file diff --git a/apps/patchbay.md b/apps/patchbay.md deleted file mode 100644 index 919468167..000000000 --- a/apps/patchbay.md +++ /dev/null @@ -1,7 +0,0 @@ -# PATCHBAY - - An alternative Secure Scuttlebutt client interface that is fully compatible with Patchwork. - - SITE: https://github.com/ssbc/patchbay - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/patchelf b/apps/patchelf new file mode 100644 index 000000000..d462282d9 --- /dev/null +++ b/apps/patchelf @@ -0,0 +1,3 @@ +# patchelf +PatchELF packaged as an AppImage, it is an utility to modify the dynamic linker and RPATH of ELF executables. +# SITES: https://github.com/niess/patchelf.appimage \ No newline at end of file diff --git a/apps/patchelf.md b/apps/patchelf.md deleted file mode 100644 index 993abb462..000000000 --- a/apps/patchelf.md +++ /dev/null @@ -1,8 +0,0 @@ -# PATCHELF - - PatchELF packaged as an AppImage, it is an utility to modify the dynamic linker and RPATH of ELF executables. - - SITE: https://github.com/niess/patchelf.appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/patchwork b/apps/patchwork new file mode 100644 index 000000000..aadaa26c4 --- /dev/null +++ b/apps/patchwork @@ -0,0 +1,3 @@ +# patchwork +A decentralized messaging and sharing app built on top of Secure Scuttlebutt +# SITES: https://github.com/ssbc/patchwork \ No newline at end of file diff --git a/apps/patchwork.md b/apps/patchwork.md deleted file mode 100644 index cdf8b6a84..000000000 --- a/apps/patchwork.md +++ /dev/null @@ -1,8 +0,0 @@ -# PATCHWORK - - A decentralized messaging and sharing app built on top of Secure Scuttlebutt - - SITE: https://github.com/ssbc/patchwork - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pathchk b/apps/pathchk new file mode 100644 index 000000000..df9fd51e9 --- /dev/null +++ b/apps/pathchk @@ -0,0 +1,4 @@ +# pathchk + File names are valid or portable. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/pathchk.md b/apps/pathchk.md deleted file mode 100644 index 140cea239..000000000 --- a/apps/pathchk.md +++ /dev/null @@ -1,8 +0,0 @@ -# PATHCHK - - File names are valid or portable. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/pathephone b/apps/pathephone new file mode 100644 index 000000000..669b47081 --- /dev/null +++ b/apps/pathephone @@ -0,0 +1,3 @@ +# pathephone +Distributed audio player +# SITES: https://github.com/pathephone/pathephone-desktop \ No newline at end of file diff --git a/apps/pathephone.md b/apps/pathephone.md deleted file mode 100644 index 081180c85..000000000 --- a/apps/pathephone.md +++ /dev/null @@ -1,8 +0,0 @@ -# PATHEPHONE - - Distributed audio player - - SITE: https://github.com/pathephone/pathephone-desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pattypan b/apps/pattypan new file mode 100644 index 000000000..2d0629696 --- /dev/null +++ b/apps/pattypan @@ -0,0 +1,4 @@ +# pattypan + Unofficial AppImage of Pattypan. +# SITES: https://github.com/pkgforge-dev/pattypan-appimage +# SOURCES: https://github.com/pkgforge-dev/pattypan-appimage \ No newline at end of file diff --git a/apps/pattypan.md b/apps/pattypan.md deleted file mode 100644 index 39fc232c9..000000000 --- a/apps/pattypan.md +++ /dev/null @@ -1,8 +0,0 @@ -# PATTYPAN - - Unofficial AppImage of Pattypan. - - SITE: https://github.com/pkgforge-dev/pattypan-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/pavo b/apps/pavo new file mode 100644 index 000000000..7413e3944 --- /dev/null +++ b/apps/pavo @@ -0,0 +1,3 @@ +# pavo +a mini desktop wallpaper application +# SITES: https://github.com/zhanglun/pavo \ No newline at end of file diff --git a/apps/pavo.md b/apps/pavo.md deleted file mode 100644 index a2c966084..000000000 --- a/apps/pavo.md +++ /dev/null @@ -1,8 +0,0 @@ -# PAVO - - a mini desktop wallpaper application - - SITE: https://github.com/zhanglun/pavo - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pavucontrol-qt b/apps/pavucontrol-qt new file mode 100644 index 000000000..2bac95a89 --- /dev/null +++ b/apps/pavucontrol-qt @@ -0,0 +1,5 @@ +# pavucontrol-qt +A small .pdf management tool with a command-line UI. + + Unofficial AppImage of pavucontrol-qt +# SITES: https://github.com/Samueru-sama/pavucontrol-qt-AppImage \ No newline at end of file diff --git a/apps/pavucontrol-qt.md b/apps/pavucontrol-qt.md deleted file mode 100644 index 6177f1d5d..000000000 --- a/apps/pavucontrol-qt.md +++ /dev/null @@ -1,10 +0,0 @@ -# PAVUCONTROL-QT - - A small .pdf management tool with a command-line UI. - - Unofficial AppImage of pavucontrol-qt - - SITE: https://github.com/Samueru-sama/pavucontrol-qt-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pay-respects b/apps/pay-respects new file mode 100644 index 000000000..c3d19f9dc --- /dev/null +++ b/apps/pay-respects @@ -0,0 +1,3 @@ +# pay-respects +Terminal command correction, alternative to thefuck written in Rust +# SITES: https://github.com/iffse/pay-respects \ No newline at end of file diff --git a/apps/pay-respects.md b/apps/pay-respects.md deleted file mode 100644 index 754780600..000000000 --- a/apps/pay-respects.md +++ /dev/null @@ -1,8 +0,0 @@ -# PAY-RESPECTS - - Terminal command correction, alternative to thefuck written in Rust - - SITE: https://github.com/iffse/pay-respects - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pb-for-desktop b/apps/pb-for-desktop new file mode 100644 index 000000000..35b4d45f2 --- /dev/null +++ b/apps/pb-for-desktop @@ -0,0 +1,3 @@ +# pb-for-desktop +Pushbullet Desktop app for macOS, Windows and Linux. +# SITES: https://github.com/sidneys/pb-for-desktop \ No newline at end of file diff --git a/apps/pb-for-desktop.md b/apps/pb-for-desktop.md deleted file mode 100644 index 1ebcfcfdc..000000000 --- a/apps/pb-for-desktop.md +++ /dev/null @@ -1,7 +0,0 @@ -# PB-FOR-DESKTOP - - Pushbullet Desktop app for macOS, Windows and Linux. - - SITE: https://github.com/sidneys/pb-for-desktop - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pboy b/apps/pboy new file mode 100644 index 000000000..13071c846 --- /dev/null +++ b/apps/pboy @@ -0,0 +1,3 @@ +# pboy +A small .pdf management tool with a command-line UI +# SITES: https://github.com/2mol/pboy \ No newline at end of file diff --git a/apps/pboy.md b/apps/pboy.md deleted file mode 100644 index a67d9cef2..000000000 --- a/apps/pboy.md +++ /dev/null @@ -1,8 +0,0 @@ -# PBOY - - A small .pdf management tool with a command-line UI - - SITE: https://github.com/2mol/pboy - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pcexhumed b/apps/pcexhumed new file mode 100644 index 000000000..03cedbe3f --- /dev/null +++ b/apps/pcexhumed @@ -0,0 +1,3 @@ +# pcexhumed +Port of the PC version of Exhumed based on EDuke32. +# SITES: https://github.com/pkgforge-dev/PCExhumed-AppImage \ No newline at end of file diff --git a/apps/pcexhumed.md b/apps/pcexhumed.md deleted file mode 100644 index 3aa98cfb1..000000000 --- a/apps/pcexhumed.md +++ /dev/null @@ -1,8 +0,0 @@ -# PCEXHUMED - - Port of the PC version of Exhumed based on EDuke32. - - SITE: https://github.com/pkgforge-dev/PCExhumed-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/pcloud b/apps/pcloud new file mode 100644 index 000000000..99fa24e01 --- /dev/null +++ b/apps/pcloud @@ -0,0 +1,3 @@ +# pcloud +pCloud Drive Client, cloud service, built using electron and node.js. +# SITES: https://www.pcloud.com \ No newline at end of file diff --git a/apps/pcloud.md b/apps/pcloud.md deleted file mode 100644 index 8d57d8d3d..000000000 --- a/apps/pcloud.md +++ /dev/null @@ -1,8 +0,0 @@ -# PCLOUD - - pCloud Drive Client, cloud service, built using electron and node.js. - - SITE: https://www.pcloud.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/pcsx-redux-enhanced b/apps/pcsx-redux-enhanced new file mode 100644 index 000000000..167237b0e --- /dev/null +++ b/apps/pcsx-redux-enhanced @@ -0,0 +1,3 @@ +# pcsx-redux-enhanced +Unofficial, modern fork of the pcsxr PlayStation 1 emulator focused on reverse engineering and homebrew development. +# SITES: https://github.com/pkgforge-dev/PCSX-Redux-AppImage-Enhanced \ No newline at end of file diff --git a/apps/pcsx-redux-enhanced.md b/apps/pcsx-redux-enhanced.md deleted file mode 100644 index 1aeb7a04e..000000000 --- a/apps/pcsx-redux-enhanced.md +++ /dev/null @@ -1,8 +0,0 @@ -# PCSX-REDUX-ENHANCED - - Unofficial, modern fork of the pcsxr PlayStation 1 emulator focused on reverse engineering and homebrew development. - - SITE: https://github.com/pkgforge-dev/PCSX-Redux-AppImage-Enhanced - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/pcsx2 b/apps/pcsx2 new file mode 100644 index 000000000..8274461d0 --- /dev/null +++ b/apps/pcsx2 @@ -0,0 +1,3 @@ +# pcsx2 +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. +# SITES: https://github.com/PCSX2/pcsx2 \ No newline at end of file diff --git a/apps/pcsx2-nightly b/apps/pcsx2-nightly new file mode 100644 index 000000000..b33ad7474 --- /dev/null +++ b/apps/pcsx2-nightly @@ -0,0 +1,3 @@ +# pcsx2-nightly +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. +# SITES: https://github.com/PCSX2/pcsx2 \ No newline at end of file diff --git a/apps/pcsx2-nightly.md b/apps/pcsx2-nightly.md deleted file mode 100644 index 017c4e949..000000000 --- a/apps/pcsx2-nightly.md +++ /dev/null @@ -1,8 +0,0 @@ -# PCSX2-NIGHTLY - - 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. - - SITE: https://github.com/PCSX2/pcsx2 - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/pcsx2.md b/apps/pcsx2.md deleted file mode 100644 index 25ccf9a3d..000000000 --- a/apps/pcsx2.md +++ /dev/null @@ -1,8 +0,0 @@ -# PCSX2 - - 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. - - SITE: https://github.com/PCSX2/pcsx2 - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/pdf-arranger b/apps/pdf-arranger new file mode 100644 index 000000000..233a501aa --- /dev/null +++ b/apps/pdf-arranger @@ -0,0 +1,3 @@ +# pdf-arranger +Unofficial, a small python-gtk application, which helps the user to merge or split PDF documents and rotate, crop and rearrange their pages. +# SITES: https://github.com/pkgforge-dev/PDF-Arranger-AppImage \ No newline at end of file diff --git a/apps/pdf-arranger.md b/apps/pdf-arranger.md deleted file mode 100644 index 0e962e288..000000000 --- a/apps/pdf-arranger.md +++ /dev/null @@ -1,8 +0,0 @@ -# PDF-ARRANGER - - Unofficial, a small python-gtk application, which helps the user to merge or split PDF documents and rotate, crop and rearrange their pages. - - SITE: https://github.com/pkgforge-dev/PDF-Arranger-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/pdf-diff b/apps/pdf-diff new file mode 100644 index 000000000..e271d125b --- /dev/null +++ b/apps/pdf-diff @@ -0,0 +1,3 @@ +# pdf-diff +A tool for visualizing differences between two pdf files. +# SITES: https://github.com/serhack/pdf-diff \ No newline at end of file diff --git a/apps/pdf-diff.md b/apps/pdf-diff.md deleted file mode 100644 index a922e6aed..000000000 --- a/apps/pdf-diff.md +++ /dev/null @@ -1,8 +0,0 @@ -# PDF-DIFF - - A tool for visualizing differences between two pdf files. - - SITE: https://github.com/serhack/pdf-diff - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pdf-sync b/apps/pdf-sync new file mode 100644 index 000000000..f40fa58b6 --- /dev/null +++ b/apps/pdf-sync @@ -0,0 +1,3 @@ +# pdf-sync +PDF Reader in JavaScript with Sync. +# SITES: https://github.com/sherylynn/pdf-sync \ No newline at end of file diff --git a/apps/pdf-sync.md b/apps/pdf-sync.md deleted file mode 100644 index b5ef0f27d..000000000 --- a/apps/pdf-sync.md +++ /dev/null @@ -1,7 +0,0 @@ -# PDF-SYNC - - PDF Reader in JavaScript with Sync. - - SITE: https://github.com/sherylynn/pdf-sync - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pdf-tricks b/apps/pdf-tricks new file mode 100644 index 000000000..de4ca1f5c --- /dev/null +++ b/apps/pdf-tricks @@ -0,0 +1,3 @@ +# pdf-tricks +Unofficial, a simple, efficient application for small manipulations in PDF files. +# SITES: https://github.com/pkgforge-dev/PDF-Tricks-AppImage \ No newline at end of file diff --git a/apps/pdf-tricks.md b/apps/pdf-tricks.md deleted file mode 100644 index 72ef3ed97..000000000 --- a/apps/pdf-tricks.md +++ /dev/null @@ -1,8 +0,0 @@ -# PDF-TRICKS - - Unofficial, a simple, efficient application for small manipulations in PDF files. - - SITE: https://github.com/pkgforge-dev/PDF-Tricks-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/pdf2htmlex b/apps/pdf2htmlex new file mode 100644 index 000000000..7638303cf --- /dev/null +++ b/apps/pdf2htmlex @@ -0,0 +1,3 @@ +# pdf2htmlex +Convert PDF to HTML without losing text or format. +# SITES: https://github.com/pdf2htmlEX/pdf2htmlEX \ No newline at end of file diff --git a/apps/pdf2htmlex.md b/apps/pdf2htmlex.md deleted file mode 100644 index 68160d76a..000000000 --- a/apps/pdf2htmlex.md +++ /dev/null @@ -1,8 +0,0 @@ -# PDF2HTMLEX - - Convert PDF to HTML without losing text or format. - - SITE: https://github.com/pdf2htmlEX/pdf2htmlEX - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pdf4qt b/apps/pdf4qt new file mode 100644 index 000000000..24f2c7948 --- /dev/null +++ b/apps/pdf4qt @@ -0,0 +1,3 @@ +# pdf4qt +Open source PDF editor. +# SITES: https://github.com/JakubMelka/PDF4QT \ No newline at end of file diff --git a/apps/pdf4qt.md b/apps/pdf4qt.md deleted file mode 100644 index 0969117cb..000000000 --- a/apps/pdf4qt.md +++ /dev/null @@ -1,8 +0,0 @@ -# PDF4QT - - Open source PDF editor. - - SITE: https://github.com/JakubMelka/PDF4QT - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pdfcompress b/apps/pdfcompress new file mode 100644 index 000000000..6d9a3cc56 --- /dev/null +++ b/apps/pdfcompress @@ -0,0 +1,3 @@ +# pdfcompress +A utility to compress PDF documentas based on Ghostscript and YAD. +# SITES: https://github.com/moonline/Utility.PdfCompress \ No newline at end of file diff --git a/apps/pdfcompress.md b/apps/pdfcompress.md deleted file mode 100644 index f4db8ed69..000000000 --- a/apps/pdfcompress.md +++ /dev/null @@ -1,8 +0,0 @@ -# PDFCOMPRESS - - A utility to compress PDF documentas based on Ghostscript and YAD. - - SITE: https://github.com/moonline/Utility.PdfCompress - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pdfcrackgui b/apps/pdfcrackgui new file mode 100644 index 000000000..c09f2071c --- /dev/null +++ b/apps/pdfcrackgui @@ -0,0 +1,3 @@ +# pdfcrackgui +PDF Crack GUI is an open-source GUI overlay for the popular and highly regarded pdfcrack. +# SITES: https://sourceforge.net/projects/pdfcrackgui/ \ No newline at end of file diff --git a/apps/pdfcrackgui.md b/apps/pdfcrackgui.md deleted file mode 100644 index 4dbf8d784..000000000 --- a/apps/pdfcrackgui.md +++ /dev/null @@ -1,8 +0,0 @@ -# PDFCRACKGUI - - PDF Crack GUI is an open-source GUI overlay for the popular and highly regarded pdfcrack. - - SITE: https://sourceforge.net/projects/pdfcrackgui/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pdfquirk b/apps/pdfquirk new file mode 100644 index 000000000..59a756276 --- /dev/null +++ b/apps/pdfquirk @@ -0,0 +1,3 @@ +# pdfquirk +Creating PDFs from images or scanner made easy. +# SITES: https://github.com/dragotin/pdfquirk \ No newline at end of file diff --git a/apps/pdfquirk.md b/apps/pdfquirk.md deleted file mode 100644 index 90f86eadc..000000000 --- a/apps/pdfquirk.md +++ /dev/null @@ -1,8 +0,0 @@ -# PDFQUIRK - - Creating PDFs from images or scanner made easy. - - SITE: https://github.com/dragotin/pdfquirk - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pdmaner b/apps/pdmaner new file mode 100644 index 000000000..2c3bc1ce7 --- /dev/null +++ b/apps/pdmaner @@ -0,0 +1,5 @@ +# pdmaner +A multi operating system open source and free desktop version relational database modeling tool. + + 一款多操作系统开源免费的桌面版关系数据库模型建模工具 +# SITES: http://www.pdmaner.com \ No newline at end of file diff --git a/apps/pdmaner.md b/apps/pdmaner.md deleted file mode 100644 index c3e8312de..000000000 --- a/apps/pdmaner.md +++ /dev/null @@ -1,10 +0,0 @@ -# PDMANER - - A multi operating system open source and free desktop version relational database modeling tool. - - 一款多操作系统开源免费的桌面版关系数据库模型建模工具 - - SITE: http://www.pdmaner.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pear-desktop b/apps/pear-desktop new file mode 100644 index 000000000..64d19279c --- /dev/null +++ b/apps/pear-desktop @@ -0,0 +1,3 @@ +# pear-desktop +An extension for music player. +# SITES: https://github.com/pear-devs/pear-desktop \ No newline at end of file diff --git a/apps/pear-desktop.md b/apps/pear-desktop.md deleted file mode 100644 index bd7a658b8..000000000 --- a/apps/pear-desktop.md +++ /dev/null @@ -1,8 +0,0 @@ -# PEAR-DESKTOP - - An extension for music player. - - SITE: https://github.com/pear-devs/pear-desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/pearpass b/apps/pearpass new file mode 100644 index 000000000..3e9f812c7 --- /dev/null +++ b/apps/pearpass @@ -0,0 +1,3 @@ +# pearpass +An open-source, privacy-first password manager with peer-to-peer syncing and end-to-end encryption. +# SITES: https://github.com/tetherto/pearpass-app-desktop \ No newline at end of file diff --git a/apps/pearpass.md b/apps/pearpass.md deleted file mode 100644 index 6542476d2..000000000 --- a/apps/pearpass.md +++ /dev/null @@ -1,8 +0,0 @@ -# PEARPASS - - An open-source, privacy-first password manager with peer-to-peer syncing and end-to-end encryption. - - SITE: https://github.com/tetherto/pearpass-app-desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/peazip b/apps/peazip new file mode 100644 index 000000000..3f5d9d240 --- /dev/null +++ b/apps/peazip @@ -0,0 +1,3 @@ +# peazip +PeaZip Appimage for linux 64bits +# SITES: https://github.com/ferion11/PeaZip_Appimage \ No newline at end of file diff --git a/apps/peazip.md b/apps/peazip.md deleted file mode 100644 index 4e9d38f69..000000000 --- a/apps/peazip.md +++ /dev/null @@ -1,8 +0,0 @@ -# PEAZIP - - PeaZip Appimage for linux 64bits - - SITE: https://github.com/ferion11/PeaZip_Appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/peep b/apps/peep new file mode 100644 index 000000000..a2beb04dc --- /dev/null +++ b/apps/peep @@ -0,0 +1,3 @@ +# peep +The CLI text viewer tool that works like less command on small pane within the terminal window. +# SITES: https://github.com/ryochack/peep \ No newline at end of file diff --git a/apps/peep.md b/apps/peep.md deleted file mode 100644 index b3d3b6e54..000000000 --- a/apps/peep.md +++ /dev/null @@ -1,8 +0,0 @@ -# PEEP - - The CLI text viewer tool that works like less command on small pane within the terminal window. - - SITE: https://github.com/ryochack/peep - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pelusica b/apps/pelusica new file mode 100644 index 000000000..d3242f7b2 --- /dev/null +++ b/apps/pelusica @@ -0,0 +1,3 @@ +# pelusica +An action game in which you can control the blue dot with your keyboard to create music and avoid colliding with other dots. +# SITES: https://github.com/VitoVan/pelusica \ No newline at end of file diff --git a/apps/pelusica.md b/apps/pelusica.md deleted file mode 100644 index fbf7be0e5..000000000 --- a/apps/pelusica.md +++ /dev/null @@ -1,8 +0,0 @@ -# PELUSICA - - An action game in which you can control the blue dot with your keyboard to create music and avoid colliding with other dots. - - SITE: https://github.com/VitoVan/pelusica - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pencil b/apps/pencil new file mode 100644 index 000000000..18465850b --- /dev/null +++ b/apps/pencil @@ -0,0 +1,3 @@ +# pencil +Pencil2D is an easy, intuitive tool to make 2D hand-drawn animations. Pencil2D is open source and cross-platform. +# SITES: https://github.com/pencil2d/pencil \ No newline at end of file diff --git a/apps/pencil.md b/apps/pencil.md deleted file mode 100644 index 755103de5..000000000 --- a/apps/pencil.md +++ /dev/null @@ -1,8 +0,0 @@ -# PENCIL - - Pencil2D is an easy, intuitive tool to make 2D hand-drawn animations. Pencil2D is open source and cross-platform. - - SITE: https://github.com/pencil2d/pencil - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/penguins-eggs b/apps/penguins-eggs new file mode 100644 index 000000000..ac56f2b9a --- /dev/null +++ b/apps/penguins-eggs @@ -0,0 +1,3 @@ +# penguins-eggs +A professional and universal remastering tool for all major distributions. +# SITES: https://github.com/pieroproietti/penguins-eggs \ No newline at end of file diff --git a/apps/penguins-eggs.md b/apps/penguins-eggs.md deleted file mode 100644 index 2ea3856fe..000000000 --- a/apps/penguins-eggs.md +++ /dev/null @@ -1,8 +0,0 @@ -# PENGUINS-EGGS - - A professional and universal remastering tool for all major distributions. - - SITE: https://github.com/pieroproietti/penguins-eggs - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/pennywise b/apps/pennywise new file mode 100644 index 000000000..a39250d8a --- /dev/null +++ b/apps/pennywise @@ -0,0 +1,3 @@ +# pennywise +Cross-platform application to open any website or media in a floating window +# SITES: https://github.com/kamranahmedse/pennywise \ No newline at end of file diff --git a/apps/pennywise.md b/apps/pennywise.md deleted file mode 100644 index e1d4353cb..000000000 --- a/apps/pennywise.md +++ /dev/null @@ -1,8 +0,0 @@ -# PENNYWISE - - Cross-platform application to open any website or media in a floating window - - SITE: https://github.com/kamranahmedse/pennywise - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/perfect-dark b/apps/perfect-dark new file mode 100644 index 000000000..271d292a2 --- /dev/null +++ b/apps/perfect-dark @@ -0,0 +1,3 @@ +# perfect-dark +Unofficial, work in progress port of n64decomp/perfect_dark to modern platforms. +# SITES: https://github.com/pkgforge-dev/Perfect-Dark-AppImage \ No newline at end of file diff --git a/apps/perfect-dark.md b/apps/perfect-dark.md deleted file mode 100644 index ce3c81716..000000000 --- a/apps/perfect-dark.md +++ /dev/null @@ -1,8 +0,0 @@ -# PERFECT-DARK - - Unofficial, work in progress port of n64decomp/perfect_dark to modern platforms. - - SITE: https://github.com/pkgforge-dev/Perfect-Dark-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/perl-executing-browser b/apps/perl-executing-browser new file mode 100644 index 000000000..ccfd8c135 --- /dev/null +++ b/apps/perl-executing-browser @@ -0,0 +1,3 @@ +# perl-executing-browser +HTML5 user interface for Perl 5 desktop applications +# SITES: https://github.com/ddmitov/perl-executing-browser \ No newline at end of file diff --git a/apps/perl-executing-browser.md b/apps/perl-executing-browser.md deleted file mode 100644 index e8db8e5d5..000000000 --- a/apps/perl-executing-browser.md +++ /dev/null @@ -1,8 +0,0 @@ -# PERL-EXECUTING-BROWSER - - HTML5 user interface for Perl 5 desktop applications - - SITE: https://github.com/ddmitov/perl-executing-browser - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/permastead b/apps/permastead new file mode 100644 index 000000000..35b644cdb --- /dev/null +++ b/apps/permastead @@ -0,0 +1,3 @@ +# permastead +Desktop software for managing a homestead using permaculture design. +# SITES: https://github.com/curvedspace/Permastead \ No newline at end of file diff --git a/apps/permastead.md b/apps/permastead.md deleted file mode 100644 index 9860632ed..000000000 --- a/apps/permastead.md +++ /dev/null @@ -1,8 +0,0 @@ -# PERMASTEAD - - Desktop software for managing a homestead using permaculture design. - - SITE: https://github.com/curvedspace/Permastead - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/perplexity-ai-app b/apps/perplexity-ai-app new file mode 100644 index 000000000..719fcca05 --- /dev/null +++ b/apps/perplexity-ai-app @@ -0,0 +1,3 @@ +# perplexity-ai-app +Perplexity AI Desktop app eases the process to access Perplexity AI. +# SITES: https://sourceforge.net/p/perplexity-ai-desktop-app \ No newline at end of file diff --git a/apps/perplexity-ai-app.md b/apps/perplexity-ai-app.md deleted file mode 100644 index b0a17d3b0..000000000 --- a/apps/perplexity-ai-app.md +++ /dev/null @@ -1,8 +0,0 @@ -# PERPLEXITY-AI-APP - - Perplexity AI Desktop app eases the process to access Perplexity AI. - - SITE: https://sourceforge.net/p/perplexity-ai-desktop-app - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/pet b/apps/pet new file mode 100644 index 000000000..64dabbb09 --- /dev/null +++ b/apps/pet @@ -0,0 +1,3 @@ +# pet +Simple command-line snippet manager +# SITES: https://github.com/knqyf263/pet \ No newline at end of file diff --git a/apps/pet.md b/apps/pet.md deleted file mode 100644 index e6923e8bd..000000000 --- a/apps/pet.md +++ /dev/null @@ -1,8 +0,0 @@ -# PET - - Simple command-line snippet manager - - SITE: https://github.com/knqyf263/pet - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pext b/apps/pext new file mode 100644 index 000000000..8f34c6c7f --- /dev/null +++ b/apps/pext @@ -0,0 +1,3 @@ +# pext +Python-based extendable tool +# SITES: https://github.com/Pext/Pext \ No newline at end of file diff --git a/apps/pext.md b/apps/pext.md deleted file mode 100644 index 285cfec12..000000000 --- a/apps/pext.md +++ /dev/null @@ -1,8 +0,0 @@ -# PEXT - - Python-based extendable tool - - SITE: https://github.com/Pext/Pext - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pfetch-rs b/apps/pfetch-rs new file mode 100644 index 000000000..d3b0d336b --- /dev/null +++ b/apps/pfetch-rs @@ -0,0 +1,3 @@ +# pfetch-rs +A rewrite of the pfetch system information tool in Rust +# SITES: https://github.com/Gobidev/pfetch-rs \ No newline at end of file diff --git a/apps/pfetch-rs.md b/apps/pfetch-rs.md deleted file mode 100644 index 2bb693260..000000000 --- a/apps/pfetch-rs.md +++ /dev/null @@ -1,8 +0,0 @@ -# PFETCH-RS - - A rewrite of the pfetch system information tool in Rust - - SITE: https://github.com/Gobidev/pfetch-rs - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pget b/apps/pget new file mode 100644 index 000000000..7b5895466 --- /dev/null +++ b/apps/pget @@ -0,0 +1,3 @@ +# pget +The fastest, resumable file download client +# SITES: https://github.com/Code-Hex/pget \ No newline at end of file diff --git a/apps/pget.md b/apps/pget.md deleted file mode 100644 index 37f47fbdb..000000000 --- a/apps/pget.md +++ /dev/null @@ -1,8 +0,0 @@ -# PGET - - The fastest, resumable file download client - - SITE: https://github.com/Code-Hex/pget - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/phantom-satellite b/apps/phantom-satellite new file mode 100644 index 000000000..c2ca34749 --- /dev/null +++ b/apps/phantom-satellite @@ -0,0 +1,3 @@ +# phantom-satellite +Unofficial, a fork of Pale Moon that aims to support older/niche platforms, without sacrificing support for more common/modern platforms. +# SITES: https://github.com/pkgforge-dev/Phantom-Satellite-AppImage \ No newline at end of file diff --git a/apps/phantom-satellite.md b/apps/phantom-satellite.md deleted file mode 100644 index b26486834..000000000 --- a/apps/phantom-satellite.md +++ /dev/null @@ -1,8 +0,0 @@ -# PHANTOM-SATELLITE - - Unofficial, a fork of Pale Moon that aims to support older/niche platforms, without sacrificing support for more common/modern platforms. - - SITE: https://github.com/pkgforge-dev/Phantom-Satellite-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/phinch b/apps/phinch new file mode 100644 index 000000000..f9ac7c325 --- /dev/null +++ b/apps/phinch @@ -0,0 +1,3 @@ +# phinch +Phinch is an open-source framework for visualizing biological data +# SITES: https://github.com/PhinchApp/Phinch \ No newline at end of file diff --git a/apps/phinch.md b/apps/phinch.md deleted file mode 100644 index 5d08277f7..000000000 --- a/apps/phinch.md +++ /dev/null @@ -1,8 +0,0 @@ -# PHINCH - - Phinch is an open-source framework for visualizing biological data - - SITE: https://github.com/PhinchApp/Phinch - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pho b/apps/pho new file mode 100644 index 000000000..2710bf64f --- /dev/null +++ b/apps/pho @@ -0,0 +1,3 @@ +# pho +The AppImage Manager that Linux always deserved. +# SITES: https://github.com/zyrouge/pho \ No newline at end of file diff --git a/apps/pho.md b/apps/pho.md deleted file mode 100644 index 3aa4d8540..000000000 --- a/apps/pho.md +++ /dev/null @@ -1,8 +0,0 @@ -# PHO - - The AppImage Manager that Linux always deserved. - - SITE: https://github.com/zyrouge/pho - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/phoenix-x-server b/apps/phoenix-x-server new file mode 100644 index 000000000..eb827345a --- /dev/null +++ b/apps/phoenix-x-server @@ -0,0 +1,3 @@ +# phoenix-x-server +Unofficial, a new X server, written from scratch in Zig (not a fork). Designed to be a modern alternative to the Xorg server. +# SITES: https://github.com/pkgforge-dev/phoenix-x-server-AppImage \ No newline at end of file diff --git a/apps/phoenix-x-server.md b/apps/phoenix-x-server.md deleted file mode 100644 index 39c65685c..000000000 --- a/apps/phoenix-x-server.md +++ /dev/null @@ -1,8 +0,0 @@ -# PHOENIX-X-SERVER - - Unofficial, a new X server, written from scratch in Zig (not a fork). Designed to be a modern alternative to the Xorg server. - - SITE: https://github.com/pkgforge-dev/phoenix-x-server-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/photocrea b/apps/photocrea new file mode 100644 index 000000000..5f9d9fd2b --- /dev/null +++ b/apps/photocrea @@ -0,0 +1,3 @@ +# photocrea +Photocrea is a free image editor that includes all the familiar features like layers, filters, magic wand selection, etc. It supports formats from Adobe Photoshop i.e. .PSD, but also .XCF from GIMP, .Sketch from Sketch App, .XD from Adobe XD and .CDR from CorelDRAW software. From 2020 it also supports .FIG files from WinFIG, .RAW and .TGA images. +# SITES: https://github.com/vikdevelop/photopea_app \ No newline at end of file diff --git a/apps/photocrea.md b/apps/photocrea.md deleted file mode 100644 index 392919cd4..000000000 --- a/apps/photocrea.md +++ /dev/null @@ -1,10 +0,0 @@ -# PHOTOCREA - - Photocrea is a free image editor that includes all the familiar features like layers, filters, magic wand selection, etc. It supports formats from Adobe Photoshop i.e. .PSD, but also .XCF from GIMP, .Sketch from Sketch App, .XD from Adobe XD and .CDR from CorelDRAW software. From 2020 it also supports .FIG files from WinFIG, .RAW and .TGA images. - - NOTES: This application is unofficial wrapper of web application Photopea. Only the Electron wrapper itself is licensed by MIT. The web application is under a proprietary license. - - SITE: https://github.com/vikdevelop/photopea_app - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/photoflare b/apps/photoflare new file mode 100644 index 000000000..a5433f256 --- /dev/null +++ b/apps/photoflare @@ -0,0 +1,3 @@ +# photoflare +A simple but featureful image editor. +# SITES: https://github.com/PhotoFlare/photoflare \ No newline at end of file diff --git a/apps/photoflare.md b/apps/photoflare.md deleted file mode 100644 index fc5ff22eb..000000000 --- a/apps/photoflare.md +++ /dev/null @@ -1,8 +0,0 @@ -# PHOTOFLARE - - A simple but featureful image editor. - - SITE: https://github.com/PhotoFlare/photoflare - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/photoflow b/apps/photoflow new file mode 100644 index 000000000..82b91333d --- /dev/null +++ b/apps/photoflow @@ -0,0 +1,3 @@ +# photoflow +Edit images from digital cameras +# SITES: https://github.com/aferrero2707/PhotoFlow \ No newline at end of file diff --git a/apps/photoflow.md b/apps/photoflow.md deleted file mode 100644 index 864b1fd22..000000000 --- a/apps/photoflow.md +++ /dev/null @@ -1,8 +0,0 @@ -# PHOTOFLOW - - Edit images from digital cameras - - SITE: https://github.com/aferrero2707/PhotoFlow - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/photogimp b/apps/photogimp new file mode 100644 index 000000000..075e7f465 --- /dev/null +++ b/apps/photogimp @@ -0,0 +1,4 @@ +# photogimp +PhotoGIMP - A patched version of GIMP for Adobe Photoshop users. +# SITES: https://github.com/Diolinux/PhotoGIMP +# SOURCES: https://github.com/sudo-give-me-coffee/PhotoMP \ No newline at end of file diff --git a/apps/photogimp.md b/apps/photogimp.md deleted file mode 100644 index 69a65bff2..000000000 --- a/apps/photogimp.md +++ /dev/null @@ -1,10 +0,0 @@ -# PHOTOGIMP - - PhotoGIMP - A patched version of GIMP for Adobe Photoshop users. - - SITE: https://github.com/Diolinux/PhotoGIMP - - SOURCE: https://github.com/sudo-give-me-coffee/PhotoMP - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/photon b/apps/photon new file mode 100644 index 000000000..75f6c4689 --- /dev/null +++ b/apps/photon @@ -0,0 +1,3 @@ +# photon +Photon is a cross-platform file-transfer application built using flutter. It uses http to transfer files between devices. You can transfer files between any devices that run Photon. +# SITES: https://github.com/abhi16180/photon \ No newline at end of file diff --git a/apps/photon.md b/apps/photon.md deleted file mode 100644 index 7f17c1668..000000000 --- a/apps/photon.md +++ /dev/null @@ -1,8 +0,0 @@ -# PHOTON - - Photon is a cross-platform file-transfer application built using flutter. It uses http to transfer files between devices. You can transfer files between any devices that run Photon. - - SITE: https://github.com/abhi16180/photon - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/photoname b/apps/photoname new file mode 100644 index 000000000..251a0d66d --- /dev/null +++ b/apps/photoname @@ -0,0 +1,3 @@ +# photoname +Rename photo image files based on EXIF shoot date. +# SITES: https://github.com/dino-/photoname \ No newline at end of file diff --git a/apps/photoname.md b/apps/photoname.md deleted file mode 100644 index bf6d9a2e8..000000000 --- a/apps/photoname.md +++ /dev/null @@ -1,7 +0,0 @@ -# PHOTONAME - - Rename photo image files based on EXIF shoot date. - - SITE: https://github.com/dino-/photoname - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/photopealoader b/apps/photopealoader new file mode 100644 index 000000000..c5a218f02 --- /dev/null +++ b/apps/photopealoader @@ -0,0 +1,3 @@ +# photopealoader +Photopea desktop app that loads local files and plugins +# SITES: https://github.com/yikuansun/photopealoader \ No newline at end of file diff --git a/apps/photopealoader.md b/apps/photopealoader.md deleted file mode 100644 index a0a574982..000000000 --- a/apps/photopealoader.md +++ /dev/null @@ -1,8 +0,0 @@ -# PHOTOPEALOADER - - Photopea desktop app that loads local files and plugins - - SITE: https://github.com/yikuansun/photopealoader - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/photoqt b/apps/photoqt new file mode 100644 index 000000000..3d6950e55 --- /dev/null +++ b/apps/photoqt @@ -0,0 +1,3 @@ +# photoqt +View and manage images +# SITES: https://photoqt.org \ No newline at end of file diff --git a/apps/photoqt.md b/apps/photoqt.md deleted file mode 100644 index 86459e86f..000000000 --- a/apps/photoqt.md +++ /dev/null @@ -1,8 +0,0 @@ -# PHOTOQT - - View and manage images - - SITE: https://photoqt.org - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/photoquick b/apps/photoquick new file mode 100644 index 000000000..09bded229 --- /dev/null +++ b/apps/photoquick @@ -0,0 +1,3 @@ +# photoquick +Light-weight image viewer with crop,resize,collage, photogrid and filters +# SITES: https://github.com/ksharindam/photoquick \ No newline at end of file diff --git a/apps/photoquick.md b/apps/photoquick.md deleted file mode 100644 index 1c76e19c9..000000000 --- a/apps/photoquick.md +++ /dev/null @@ -1,8 +0,0 @@ -# PHOTOQUICK - - Light-weight image viewer with crop,resize,collage, photogrid and filters - - SITE: https://github.com/ksharindam/photoquick - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/phreshplayer b/apps/phreshplayer new file mode 100644 index 000000000..2b2d0ea41 --- /dev/null +++ b/apps/phreshplayer @@ -0,0 +1,3 @@ +# phreshplayer +Electron based media player app. +# SITES: https://github.com/Phreshhh/PhreshPlayer \ No newline at end of file diff --git a/apps/phreshplayer.md b/apps/phreshplayer.md deleted file mode 100644 index 1ac97dd38..000000000 --- a/apps/phreshplayer.md +++ /dev/null @@ -1,8 +0,0 @@ -# PHRESHPLAYER - - Electron based media player app. - - SITE: https://github.com/Phreshhh/PhreshPlayer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pia b/apps/pia new file mode 100644 index 000000000..29518cfd8 --- /dev/null +++ b/apps/pia @@ -0,0 +1,3 @@ +# pia +Version Portable Outil PIA +# SITES: https://github.com/LINCnil/pia-app \ No newline at end of file diff --git a/apps/pia.md b/apps/pia.md deleted file mode 100644 index 78039cd2f..000000000 --- a/apps/pia.md +++ /dev/null @@ -1,8 +0,0 @@ -# PIA - - Version Portable Outil PIA - - SITE: https://github.com/LINCnil/pia-app - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/picacg-qt b/apps/picacg-qt new file mode 100644 index 000000000..6df4287a2 --- /dev/null +++ b/apps/picacg-qt @@ -0,0 +1,3 @@ +# picacg-qt +PicACG Comic PC Client For Linux +# SITES: https://github.com/tonquer/picacg-qt \ No newline at end of file diff --git a/apps/picacg-qt.md b/apps/picacg-qt.md deleted file mode 100644 index a5d38bdc1..000000000 --- a/apps/picacg-qt.md +++ /dev/null @@ -1,8 +0,0 @@ -# PICACG-QT - - PicACG Comic PC Client For Linux - - SITE: https://github.com/tonquer/picacg-qt - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/picard-daily b/apps/picard-daily new file mode 100644 index 000000000..305f3fda8 --- /dev/null +++ b/apps/picard-daily @@ -0,0 +1,3 @@ +# picard-daily +Inofficial daily development builds for MusicBrainz Picard +# SITES: https://github.com/phw/picard-daily \ No newline at end of file diff --git a/apps/picard-daily.md b/apps/picard-daily.md deleted file mode 100644 index 95dfa60da..000000000 --- a/apps/picard-daily.md +++ /dev/null @@ -1,8 +0,0 @@ -# PICARD-DAILY - - Inofficial daily development builds for MusicBrainz Picard - - SITE: https://github.com/phw/picard-daily - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/picgo b/apps/picgo new file mode 100644 index 000000000..ebdf130fa --- /dev/null +++ b/apps/picgo @@ -0,0 +1,3 @@ +# picgo +Easy to upload your pic & copy to write +# SITES: https://github.com/Molunerfinn/PicGo \ No newline at end of file diff --git a/apps/picgo.md b/apps/picgo.md deleted file mode 100644 index 570ad2df4..000000000 --- a/apps/picgo.md +++ /dev/null @@ -1,8 +0,0 @@ -# PICGO - - Easy to upload your pic & copy to write - - SITE: https://github.com/Molunerfinn/PicGo - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/piclist b/apps/piclist new file mode 100644 index 000000000..20b9fe89d --- /dev/null +++ b/apps/piclist @@ -0,0 +1,5 @@ +# piclist +a cloud storage platform management and file upload tool based on PicGo, which has been deeply redeveloped. + + 一款云储存/图床管理和文件上传客户端工具,基于PicGo深度二次开发. +# SITES: https://piclist.cn/ \ No newline at end of file diff --git a/apps/piclist.md b/apps/piclist.md deleted file mode 100644 index 4830a4abf..000000000 --- a/apps/piclist.md +++ /dev/null @@ -1,10 +0,0 @@ -# PICLIST - - a cloud storage platform management and file upload tool based on PicGo, which has been deeply redeveloped. - - 一款云储存/图床管理和文件上传客户端工具,基于PicGo深度二次开发. - - SITE: https://piclist.cn/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/picmi b/apps/picmi new file mode 100644 index 000000000..baf631260 --- /dev/null +++ b/apps/picmi @@ -0,0 +1,12 @@ +# picmi +Picmi is a single player logic-based puzzle game. The goal is to color cells according to numbers given at the side of the board in order to uncover a hidden pattern or picture. + + This game is part of the KDE Games suite. + + USAGE (from the command line): + + kdegames -h (shows the list of games) + kdegames $GAME (launches the selected game) +# SCREENSHOTS: https://cdn.kde.org/screenshots/picmi/picmi.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-games-suite-appimage \ No newline at end of file diff --git a/apps/picmi.md b/apps/picmi.md deleted file mode 100644 index 7fd511a0a..000000000 --- a/apps/picmi.md +++ /dev/null @@ -1,19 +0,0 @@ -# PICMI - - Picmi is a single player logic-based puzzle game. The goal is to color cells according to numbers given at the side of the board in order to uncover a hidden pattern or picture. - - This game is part of the KDE Games suite. - - USAGE (from the command line): - - kdegames -h (shows the list of games) - kdegames $GAME (launches the selected game) - - ![Screenshot](https://cdn.kde.org/screenshots/picmi/picmi.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-games-suite-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/picocrypt-ng b/apps/picocrypt-ng new file mode 100644 index 000000000..1a2bfa4d3 --- /dev/null +++ b/apps/picocrypt-ng @@ -0,0 +1,3 @@ +# picocrypt-ng +A very small, very simple, yet very secure encryption tool. +# SITES: https://github.com/Picocrypt-NG/Picocrypt-NG \ No newline at end of file diff --git a/apps/picocrypt-ng.md b/apps/picocrypt-ng.md deleted file mode 100644 index df9aa224c..000000000 --- a/apps/picocrypt-ng.md +++ /dev/null @@ -1,8 +0,0 @@ -# PICOCRYPT-NG - - A very small, very simple, yet very secure encryption tool. - - SITE: https://github.com/Picocrypt-NG/Picocrypt-NG - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/picsimlab b/apps/picsimlab new file mode 100644 index 000000000..3f927be3c --- /dev/null +++ b/apps/picsimlab @@ -0,0 +1,3 @@ +# picsimlab +PICsimLab - Programmable IC Simulator Laboratory +# SITES: https://github.com/lcgamboa/picsimlab \ No newline at end of file diff --git a/apps/picsimlab.md b/apps/picsimlab.md deleted file mode 100644 index 0e20f9504..000000000 --- a/apps/picsimlab.md +++ /dev/null @@ -1,8 +0,0 @@ -# PICSIMLAB - - PICsimLab - Programmable IC Simulator Laboratory - - SITE: https://github.com/lcgamboa/picsimlab - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/picterm b/apps/picterm new file mode 100644 index 000000000..aa912415d --- /dev/null +++ b/apps/picterm @@ -0,0 +1,3 @@ +# picterm +TUI image viewer +# SITES: https://github.com/ksk001100/picterm \ No newline at end of file diff --git a/apps/picterm.md b/apps/picterm.md deleted file mode 100644 index 5b567096d..000000000 --- a/apps/picterm.md +++ /dev/null @@ -1,8 +0,0 @@ -# PICTERM - - TUI image viewer - - SITE: https://github.com/ksk001100/picterm - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/picturama b/apps/picturama new file mode 100644 index 000000000..bafc2ff45 --- /dev/null +++ b/apps/picturama @@ -0,0 +1,3 @@ +# picturama +Digital image organizer powered by the web. +# SITES: https://picturama.github.io/ \ No newline at end of file diff --git a/apps/picturama.md b/apps/picturama.md deleted file mode 100644 index c87bae8df..000000000 --- a/apps/picturama.md +++ /dev/null @@ -1,8 +0,0 @@ -# PICTURAMA - - Digital image organizer powered by the web. - - SITE: https://picturama.github.io/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/piglit b/apps/piglit new file mode 100644 index 000000000..e7db8f789 --- /dev/null +++ b/apps/piglit @@ -0,0 +1,3 @@ +# piglit +Unofficial, a collection of automated tests for OpenGL, Vulkan, and OpenCL implementations. +# SITES: https://github.com/pkgforge-dev/Piglit-AppImage \ No newline at end of file diff --git a/apps/piglit.md b/apps/piglit.md deleted file mode 100644 index 11bf623be..000000000 --- a/apps/piglit.md +++ /dev/null @@ -1,8 +0,0 @@ -# PIGLIT - - Unofficial, a collection of automated tests for OpenGL, Vulkan, and OpenCL implementations. - - SITE: https://github.com/pkgforge-dev/Piglit-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/pigs-n-cows b/apps/pigs-n-cows new file mode 100644 index 000000000..bf6e98816 --- /dev/null +++ b/apps/pigs-n-cows @@ -0,0 +1,3 @@ +# pigs-n-cows +A relaxing game for children and adults alike, with absolutely no fail state and no reachable goal. Launch cute animals from your farm, hit balloons, rack up score multipliers and relax as the clouds and days go by. +# SITES: https://github.com/themarlboroman/pigs-n-cows \ No newline at end of file diff --git a/apps/pigs-n-cows.md b/apps/pigs-n-cows.md deleted file mode 100644 index c17f7f553..000000000 --- a/apps/pigs-n-cows.md +++ /dev/null @@ -1,7 +0,0 @@ -# PIGS-N-COWS - - A relaxing game for children and adults alike, with absolutely no fail state and no reachable goal. Launch cute animals from your farm, hit balloons, rack up score multipliers and relax as the clouds and days go by. - - SITE: https://github.com/themarlboroman/pigs-n-cows - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pika-backup b/apps/pika-backup new file mode 100644 index 000000000..4b35cd5e6 --- /dev/null +++ b/apps/pika-backup @@ -0,0 +1,17 @@ +# pika-backup +### Keep your data safe + +Doing backups the easy way. Plugin your USB drive and let the Pika do the rest for you. + + - Create backups locally and remotely + - Set a schedule for regular backups + - Save time and disk space because Pika Backup does not need to copy known data again + - Encrypt your backups + - List created archives and browse through their contents + - Recover files or folders via your file browser + + +Pika Backup is designed to save your personal data and does not support complete system recovery. Pika Backup is powered by the well-tested BorgBackup software. +# SCREENSHOTS: https://static.gnome.org/catalog/app-screenshot/org.gnome.World.PikaBackup/image-1_orig.png +# SITES: https://apps.gnome.org/en/PikaBackup/ +# SOURCES: https://github.com/Shikakiben/pika-backup-AppImage \ No newline at end of file diff --git a/apps/pika-backup.md b/apps/pika-backup.md deleted file mode 100644 index c34bdf048..000000000 --- a/apps/pika-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# PIKA-BACKUP - - ### Keep your data safe - -Doing backups the easy way. Plugin your USB drive and let the Pika do the rest for you. - - - Create backups locally and remotely - - Set a schedule for regular backups - - Save time and disk space because Pika Backup does not need to copy known data again - - Encrypt your backups - - List created archives and browse through their contents - - Recover files or folders via your file browser - - -Pika Backup is designed to save your personal data and does not support complete system recovery. Pika Backup is powered by the well-tested BorgBackup software. - -![Screenshot](https://static.gnome.org/catalog/app-screenshot/org.gnome.World.PikaBackup/image-1_orig.png) - - SITE: https://apps.gnome.org/en/PikaBackup/ - - - SOURCE: https://github.com/Shikakiben/pika-backup-AppImage - - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pikapika b/apps/pikapika new file mode 100644 index 000000000..47f407239 --- /dev/null +++ b/apps/pikapika @@ -0,0 +1,3 @@ +# pikapika +A comic browser. +# SITES: https://github.com/ComicSparks/pikapika \ No newline at end of file diff --git a/apps/pikapika.md b/apps/pikapika.md deleted file mode 100644 index af39c3868..000000000 --- a/apps/pikapika.md +++ /dev/null @@ -1,8 +0,0 @@ -# PIKAPIKA - - A comic browser. - - SITE: https://github.com/ComicSparks/pikapika - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/pile b/apps/pile new file mode 100644 index 000000000..46b6e3750 --- /dev/null +++ b/apps/pile @@ -0,0 +1,3 @@ +# pile +A simple & powerful app to organize your piled work at one place +# SITES: https://github.com/mtobeiyf/pile \ No newline at end of file diff --git a/apps/pile.md b/apps/pile.md deleted file mode 100644 index 4d3409a3b..000000000 --- a/apps/pile.md +++ /dev/null @@ -1,8 +0,0 @@ -# PILE - - A simple & powerful app to organize your piled work at one place - - SITE: https://github.com/mtobeiyf/pile - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pince b/apps/pince new file mode 100644 index 000000000..c4338f8a6 --- /dev/null +++ b/apps/pince @@ -0,0 +1,3 @@ +# pince +Reverse engineering tool for linux games +# SITES: https://github.com/korcankaraokcu/PINCE \ No newline at end of file diff --git a/apps/pince.md b/apps/pince.md deleted file mode 100644 index e7afe5fdf..000000000 --- a/apps/pince.md +++ /dev/null @@ -1,8 +0,0 @@ -# PINCE - - Reverse engineering tool for linux games - - SITE: https://github.com/korcankaraokcu/PINCE - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pingendo b/apps/pingendo new file mode 100644 index 000000000..4b2a7c463 --- /dev/null +++ b/apps/pingendo @@ -0,0 +1,3 @@ +# pingendo +No description, website, or topics provided. +# SITES: https://github.com/Pingendo/pingendo \ No newline at end of file diff --git a/apps/pingendo.md b/apps/pingendo.md deleted file mode 100644 index 04ce4b213..000000000 --- a/apps/pingendo.md +++ /dev/null @@ -1,8 +0,0 @@ -# PINGENDO - - No description, website, or topics provided. - - SITE: https://github.com/Pingendo/pingendo - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pingnoo b/apps/pingnoo new file mode 100644 index 000000000..c208033e6 --- /dev/null +++ b/apps/pingnoo @@ -0,0 +1,3 @@ +# pingnoo +Pingnoo, an open source network ping analyser +# SITES: https://github.com/fizzyade/pingnoo \ No newline at end of file diff --git a/apps/pingnoo.md b/apps/pingnoo.md deleted file mode 100644 index d0c413138..000000000 --- a/apps/pingnoo.md +++ /dev/null @@ -1,8 +0,0 @@ -# PINGNOO - - Pingnoo, an open source network ping analyser - - SITE: https://github.com/fizzyade/pingnoo - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pingu b/apps/pingu new file mode 100644 index 000000000..03808c845 --- /dev/null +++ b/apps/pingu @@ -0,0 +1,3 @@ +# pingu +🐧ping command but with pingu +# SITES: https://github.com/sheepla/pingu \ No newline at end of file diff --git a/apps/pingu.md b/apps/pingu.md deleted file mode 100644 index 26606178e..000000000 --- a/apps/pingu.md +++ /dev/null @@ -1,8 +0,0 @@ -# PINGU - - 🐧ping command but with pingu - - SITE: https://github.com/sheepla/pingu - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pingviewer b/apps/pingviewer new file mode 100644 index 000000000..413c35176 --- /dev/null +++ b/apps/pingviewer @@ -0,0 +1,3 @@ +# pingviewer +ping viewer interface +# SITES: https://github.com/bluerobotics/ping-viewer \ No newline at end of file diff --git a/apps/pingviewer.md b/apps/pingviewer.md deleted file mode 100644 index c598d6214..000000000 --- a/apps/pingviewer.md +++ /dev/null @@ -1,8 +0,0 @@ -# PINGVIEWER - - ping viewer interface - - SITE: https://github.com/bluerobotics/ping-viewer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pinky b/apps/pinky new file mode 100644 index 000000000..c4d110e23 --- /dev/null +++ b/apps/pinky @@ -0,0 +1,4 @@ +# pinky + Lightweight finger. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/pinky.md b/apps/pinky.md deleted file mode 100644 index f892f3433..000000000 --- a/apps/pinky.md +++ /dev/null @@ -1,8 +0,0 @@ -# PINKY - - Lightweight finger. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/pinokio b/apps/pinokio new file mode 100644 index 000000000..3e80666f7 --- /dev/null +++ b/apps/pinokio @@ -0,0 +1,3 @@ +# pinokio +AI Browser. +# SITES: https://github.com/pinokiocomputer/pinokio \ No newline at end of file diff --git a/apps/pinokio.md b/apps/pinokio.md deleted file mode 100644 index 7972076ca..000000000 --- a/apps/pinokio.md +++ /dev/null @@ -1,8 +0,0 @@ -# PINOKIO - - AI Browser. - - SITE: https://github.com/pinokiocomputer/pinokio - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pinta b/apps/pinta new file mode 100644 index 000000000..e0ddcd649 --- /dev/null +++ b/apps/pinta @@ -0,0 +1,3 @@ +# pinta +Unofficial, Simple GTK Paint Program clone of Paint.Net 3.0. +# SITES: https://github.com/pkgforge-dev/Pinta-AppImage \ No newline at end of file diff --git a/apps/pinta-dev b/apps/pinta-dev new file mode 100644 index 000000000..bffd69230 --- /dev/null +++ b/apps/pinta-dev @@ -0,0 +1,5 @@ +# pinta-dev +Pinta is a image editing, drawing and painting application with a simple yet powerful interface. Pinta has a wide range of drawing tools, including: freehand, rectangles, circles and lines. It also has over 35 effects to apply to your images, and also has the ability to create unlimited layers to help organize your creativity. + + This is the official developer build. +# SITES: https://github.com/PintaProject/Pinta \ No newline at end of file diff --git a/apps/pinta-dev.md b/apps/pinta-dev.md deleted file mode 100644 index 3570fa3ea..000000000 --- a/apps/pinta-dev.md +++ /dev/null @@ -1,10 +0,0 @@ -# PINTA-DEV - - Pinta is a image editing, drawing and painting application with a simple yet powerful interface. Pinta has a wide range of drawing tools, including: freehand, rectangles, circles and lines. It also has over 35 effects to apply to your images, and also has the ability to create unlimited layers to help organize your creativity. - - This is the official developer build. - - SITE: https://github.com/PintaProject/Pinta - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pinta.md b/apps/pinta.md deleted file mode 100644 index 3c78a3dd1..000000000 --- a/apps/pinta.md +++ /dev/null @@ -1,8 +0,0 @@ -# PINTA - - Unofficial, Simple GTK Paint Program clone of Paint.Net 3.0. - - SITE: https://github.com/pkgforge-dev/Pinta-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/pipes-rs b/apps/pipes-rs new file mode 100644 index 000000000..6520ca4dc --- /dev/null +++ b/apps/pipes-rs @@ -0,0 +1,3 @@ +# pipes-rs +An over-engineered rewrite of pipes.sh in Rust +# SITES: https://github.com/lhvy/pipes-rs \ No newline at end of file diff --git a/apps/pipes-rs.md b/apps/pipes-rs.md deleted file mode 100644 index 940222de6..000000000 --- a/apps/pipes-rs.md +++ /dev/null @@ -1,8 +0,0 @@ -# PIPES-RS - - An over-engineered rewrite of pipes.sh in Rust - - SITE: https://github.com/lhvy/pipes-rs - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pixelhopper b/apps/pixelhopper new file mode 100644 index 000000000..abd5b8bbb --- /dev/null +++ b/apps/pixelhopper @@ -0,0 +1,3 @@ +# pixelhopper +Animated GIF player for Linux (X11) and eventually macOS and Windows +# SITES: https://github.com/tomas/pixelhopper \ No newline at end of file diff --git a/apps/pixelhopper.md b/apps/pixelhopper.md deleted file mode 100644 index 1a2b8214c..000000000 --- a/apps/pixelhopper.md +++ /dev/null @@ -1,8 +0,0 @@ -# PIXELHOPPER - - Animated GIF player for Linux (X11) and eventually macOS and Windows - - SITE: https://github.com/tomas/pixelhopper - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pixelorama b/apps/pixelorama new file mode 100644 index 000000000..ab9b2f13c --- /dev/null +++ b/apps/pixelorama @@ -0,0 +1,3 @@ +# pixelorama +Unleash your creativity with Pixelorama, a powerful and accessible open-source pixel art multitool. Whether you want to create sprites, tiles, animations, or just express yourself in the language of pixel art, this software will realize your pixel-perfect dreams with a vast toolbox of features. Available on Windows, Linux, macOS and the Web! +# SITES: https://github.com/orama-interactive/pixelorama \ No newline at end of file diff --git a/apps/pixelorama.md b/apps/pixelorama.md deleted file mode 100644 index dbdffb981..000000000 --- a/apps/pixelorama.md +++ /dev/null @@ -1,8 +0,0 @@ -# PIXELORAMA - - Unleash your creativity with Pixelorama, a powerful and accessible open-source pixel art multitool. Whether you want to create sprites, tiles, animations, or just express yourself in the language of pixel art, this software will realize your pixel-perfect dreams with a vast toolbox of features. Available on Windows, Linux, macOS and the Web! - - SITE: https://github.com/orama-interactive/pixelorama - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pixelpulse2 b/apps/pixelpulse2 new file mode 100644 index 000000000..1dea276a6 --- /dev/null +++ b/apps/pixelpulse2 @@ -0,0 +1,4 @@ +# pixelpulse2 + Pixelpulse2 is a user interface for analog systems exploration. +# SITES: https://github.com/pkgforge-dev/pixelpulse2-appimage +# SOURCES: https://github.com/pkgforge-dev/pixelpulse2-appimage \ No newline at end of file diff --git a/apps/pixelpulse2.md b/apps/pixelpulse2.md deleted file mode 100644 index 655797250..000000000 --- a/apps/pixelpulse2.md +++ /dev/null @@ -1,8 +0,0 @@ -# PIXELPULSE2 - - Pixelpulse2 is a user interface for analog systems exploration. - - SITE: https://github.com/pkgforge-dev/pixelpulse2-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/pixfetch b/apps/pixfetch new file mode 100644 index 000000000..95564b0ad --- /dev/null +++ b/apps/pixfetch @@ -0,0 +1,3 @@ +# pixfetch +Another fetch program with pixelized images written in Rust +# SITES: https://github.com/RubixDev/pixfetch \ No newline at end of file diff --git a/apps/pixfetch.md b/apps/pixfetch.md deleted file mode 100644 index 05bbe75f2..000000000 --- a/apps/pixfetch.md +++ /dev/null @@ -1,8 +0,0 @@ -# PIXFETCH - - Another fetch program with pixelized images written in Rust - - SITE: https://github.com/RubixDev/pixfetch - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pixsrt b/apps/pixsrt new file mode 100644 index 000000000..f81d03c2e --- /dev/null +++ b/apps/pixsrt @@ -0,0 +1,3 @@ +# pixsrt +Pixel sorter +# SITES: https://github.com/thorpelawrence/pixsrt \ No newline at end of file diff --git a/apps/pixsrt.md b/apps/pixsrt.md deleted file mode 100644 index c67b4e69f..000000000 --- a/apps/pixsrt.md +++ /dev/null @@ -1,8 +0,0 @@ -# PIXSRT - - Pixel sorter - - SITE: https://github.com/thorpelawrence/pixsrt - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pizarra b/apps/pizarra new file mode 100644 index 000000000..0b0428870 --- /dev/null +++ b/apps/pizarra @@ -0,0 +1,3 @@ +# pizarra +A digital, vectorial and infinite chalkboard. +# SITES: https://pizarra.categulario.xyz \ No newline at end of file diff --git a/apps/pizarra.md b/apps/pizarra.md deleted file mode 100644 index ca03eac3d..000000000 --- a/apps/pizarra.md +++ /dev/null @@ -1,8 +0,0 @@ -# PIZARRA - - A digital, vectorial and infinite chalkboard. - - SITE: https://pizarra.categulario.xyz - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pkg2appimage b/apps/pkg2appimage new file mode 100644 index 000000000..ffdbf592c --- /dev/null +++ b/apps/pkg2appimage @@ -0,0 +1,3 @@ +# pkg2appimage +Utility to convert .yml recipes to AppDir (see appimagetool). +# SITES: https://github.com/AppImage/pkg2appimage \ No newline at end of file diff --git a/apps/pkg2appimage.md b/apps/pkg2appimage.md deleted file mode 100644 index e4ba54d40..000000000 --- a/apps/pkg2appimage.md +++ /dev/null @@ -1,8 +0,0 @@ -# PKG2APPIMAGE - - Utility to convert .yml recipes to AppDir (see appimagetool). - - SITE: https://github.com/AppImage/pkg2appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/plagpatrol b/apps/plagpatrol new file mode 100644 index 000000000..aeab1fde8 --- /dev/null +++ b/apps/plagpatrol @@ -0,0 +1,3 @@ +# plagpatrol +An app for detecting documents tampered to bypass plagiarism detectors. +# SITES: https://github.com/josemmo/plagpatrol \ No newline at end of file diff --git a/apps/plagpatrol.md b/apps/plagpatrol.md deleted file mode 100644 index c890e985a..000000000 --- a/apps/plagpatrol.md +++ /dev/null @@ -1,8 +0,0 @@ -# PLAGPATROL - - An app for detecting documents tampered to bypass plagiarism detectors. - - SITE: https://github.com/josemmo/plagpatrol - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/planes b/apps/planes new file mode 100644 index 000000000..5e37856b6 --- /dev/null +++ b/apps/planes @@ -0,0 +1,3 @@ +# planes +Variant of battleships game +# SITES: https://github.com/xxxcucus/planes \ No newline at end of file diff --git a/apps/planes.md b/apps/planes.md deleted file mode 100644 index b9768033e..000000000 --- a/apps/planes.md +++ /dev/null @@ -1,8 +0,0 @@ -# PLANES - - Variant of battleships game - - SITE: https://github.com/xxxcucus/planes - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/planet-blupi b/apps/planet-blupi new file mode 100644 index 000000000..34d6a9ae4 --- /dev/null +++ b/apps/planet-blupi @@ -0,0 +1,3 @@ +# planet-blupi +Planet Blupi - A delirious spell-binding game +# SITES: https://github.com/blupi-games/planetblupi-dev \ No newline at end of file diff --git a/apps/planet-blupi.md b/apps/planet-blupi.md deleted file mode 100644 index 0399db445..000000000 --- a/apps/planet-blupi.md +++ /dev/null @@ -1,8 +0,0 @@ -# PLANET-BLUPI - - Planet Blupi - A delirious spell-binding game - - SITE: https://github.com/blupi-games/planetblupi-dev - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/planify b/apps/planify new file mode 100644 index 000000000..34586a679 --- /dev/null +++ b/apps/planify @@ -0,0 +1,4 @@ +# planify + Unofficial AppImage of Planify. +# SITES: https://github.com/pkgforge-dev/planify-appimage +# SOURCES: https://github.com/pkgforge-dev/planify-appimage \ No newline at end of file diff --git a/apps/planify.md b/apps/planify.md deleted file mode 100644 index 722b9d197..000000000 --- a/apps/planify.md +++ /dev/null @@ -1,8 +0,0 @@ -# PLANIFY - - Unofficial AppImage of Planify. - - SITE: https://github.com/pkgforge-dev/planify-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/platform-tools b/apps/platform-tools new file mode 100644 index 000000000..ce259edb5 --- /dev/null +++ b/apps/platform-tools @@ -0,0 +1,14 @@ +# platform-tools +Android SDK Platform Tools is a complete suite of Command line utilities needed to manage Android devices. The commands included are: + - adb + - dmtracedump + - e2fsdroid + - etc1tool + - fastboot + - hprof-conv + - make_f2fs + - make_f2fs_casefold + - mke2fs + - sload_f2fs + - sqlite3 +# SITES: https://developer.android.com/studio/releases/platform-tools \ No newline at end of file diff --git a/apps/platform-tools.md b/apps/platform-tools.md deleted file mode 100644 index aa2aef4fa..000000000 --- a/apps/platform-tools.md +++ /dev/null @@ -1,19 +0,0 @@ -# PLATFORM-TOOLS - - Android SDK Platform Tools is a complete suite of Command line utilities needed to manage Android devices. - - This scripts installs the following programs: - - - adb : Command-line tool for communicating with Android devices or emulators. - - etc1tool : Utility for compressing and decompressing ETC1 texture files. - - fastboot : Android bootloader tool for flashing, unlocking, and managing firmware. - - hprof-conv : Converts Android HPROF heap dumps to standard Java HPROF format. - - make_f2fs : Creates F2FS filesystems optimized for flash storage. - - make_f2fs_casefold : Creates F2FS filesystems with case-insensitive filename support. - - mke2fs : Creates ext2/ext3/ext4 Linux filesystems. - - sqlite3 : Command-line tool for managing SQLite databases. - - SITE: https://developer.android.com/studio/releases/platform-tools - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/platinum-md b/apps/platinum-md new file mode 100644 index 000000000..0032287d2 --- /dev/null +++ b/apps/platinum-md @@ -0,0 +1,3 @@ +# platinum-md +Graphical MiniDisc NetMD conversion and upload +# SITES: https://platinum-md.app/ \ No newline at end of file diff --git a/apps/platinum-md.md b/apps/platinum-md.md deleted file mode 100644 index 8a1d4df20..000000000 --- a/apps/platinum-md.md +++ /dev/null @@ -1,8 +0,0 @@ -# PLATINUM-MD - - Graphical MiniDisc NetMD conversion and upload - - SITE: https://platinum-md.app/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/play b/apps/play new file mode 100644 index 000000000..b58f52b62 --- /dev/null +++ b/apps/play @@ -0,0 +1,3 @@ +# play +Play! is a PlayStation2 games emulator. +# SITES: https://purei.org \ No newline at end of file diff --git a/apps/play-2048 b/apps/play-2048 new file mode 100644 index 000000000..c379c7141 --- /dev/null +++ b/apps/play-2048 @@ -0,0 +1,3 @@ +# play-2048 +This is yet another implementation of the 2048 game, implemented in Ada using ASFML for graphics and ada- toml for saving state. +# SITES: https://github.com/mgrojo/play_2048 \ No newline at end of file diff --git a/apps/play-2048.md b/apps/play-2048.md deleted file mode 100644 index 3b2f25b65..000000000 --- a/apps/play-2048.md +++ /dev/null @@ -1,8 +0,0 @@ -# PLAY-2048 - - This is yet another implementation of the 2048 game, implemented in Ada using ASFML for graphics and ada- toml for saving state. - - SITE: https://github.com/mgrojo/play_2048 - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/play-enhanced b/apps/play-enhanced new file mode 100644 index 000000000..bb1340acd --- /dev/null +++ b/apps/play-enhanced @@ -0,0 +1,3 @@ +# play-enhanced +Unofficial, a PlayStation2 emulator. +# SITES: https://github.com/pkgforge-dev/Play-AppImage-Enhanced \ No newline at end of file diff --git a/apps/play-enhanced.md b/apps/play-enhanced.md deleted file mode 100644 index decdb360a..000000000 --- a/apps/play-enhanced.md +++ /dev/null @@ -1,8 +0,0 @@ -# PLAY-ENHANCED - - Unofficial, a PlayStation2 emulator. - - SITE: https://github.com/pkgforge-dev/Play-AppImage-Enhanced - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/play.md b/apps/play.md deleted file mode 100644 index 34f12d47d..000000000 --- a/apps/play.md +++ /dev/null @@ -1,8 +0,0 @@ -# PLAY - - Play! is a PlayStation2 games emulator. - - SITE: https://purei.org - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/playback b/apps/playback new file mode 100644 index 000000000..51a386aac --- /dev/null +++ b/apps/playback @@ -0,0 +1,3 @@ +# playback +Playback is the application which allows you to play and manage your cartridges. It's the heart of the experience, allowing you to replay your childhood games. +# SITES: https://www.epilogue.co \ No newline at end of file diff --git a/apps/playback.md b/apps/playback.md deleted file mode 100644 index 1ff313a32..000000000 --- a/apps/playback.md +++ /dev/null @@ -1,8 +0,0 @@ -# PLAYBACK - - Playback is the application which allows you to play and manage your cartridges. It's the heart of the experience, allowing you to replay your childhood games. - - SITE: https://www.epilogue.co - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/playbox b/apps/playbox new file mode 100644 index 000000000..1b1f95607 --- /dev/null +++ b/apps/playbox @@ -0,0 +1,3 @@ +# playbox +An audio playback system for the live production industry. +# SITES: https://github.com/cjdenio/playbox \ No newline at end of file diff --git a/apps/playbox.md b/apps/playbox.md deleted file mode 100644 index 8ab2c85c7..000000000 --- a/apps/playbox.md +++ /dev/null @@ -1,8 +0,0 @@ -# PLAYBOX - - An audio playback system for the live production industry. - - SITE: https://github.com/cjdenio/playbox - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/playerctl b/apps/playerctl new file mode 100644 index 000000000..dbd348774 --- /dev/null +++ b/apps/playerctl @@ -0,0 +1,3 @@ +# playerctl +MPRIS media player command-line controller, unofficial AppImage. +# SITES: https://github.com/Samueru-sama/playerctl-AppImage \ No newline at end of file diff --git a/apps/playerctl.md b/apps/playerctl.md deleted file mode 100644 index da3a45d9b..000000000 --- a/apps/playerctl.md +++ /dev/null @@ -1,8 +0,0 @@ -# PLAYERCTL - - MPRIS media player command-line controller, unofficial AppImage. - - SITE: https://github.com/Samueru-sama/playerctl-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/playit b/apps/playit new file mode 100644 index 000000000..21a25cc89 --- /dev/null +++ b/apps/playit @@ -0,0 +1,5 @@ +# playit +The playit program. + + Want to run an online game server? playit.gg is a global proxy that allows anyone to host a server without port forwarding. +# SITES: https://playit.gg \ No newline at end of file diff --git a/apps/playit.md b/apps/playit.md deleted file mode 100644 index 9bd44c07e..000000000 --- a/apps/playit.md +++ /dev/null @@ -1,12 +0,0 @@ -# PLAYIT - - The playit program. - - Want to run an online game server? playit.gg is a global proxy that allows anyone to host a server without port forwarding. - - SITE: https://playit.gg - - REPOSITORY: https://github.com/playit-cloud/playit-agent - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/playme b/apps/playme new file mode 100644 index 000000000..b2016a28d --- /dev/null +++ b/apps/playme @@ -0,0 +1,3 @@ +# playme +Elegant YouTube Music desktop app +# SITES: https://github.com/filipuic/playme \ No newline at end of file diff --git a/apps/playme.md b/apps/playme.md deleted file mode 100644 index c6a296983..000000000 --- a/apps/playme.md +++ /dev/null @@ -1,8 +0,0 @@ -# PLAYME - - Elegant YouTube Music desktop app - - SITE: https://github.com/filipuic/playme - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/playyourdamnturn b/apps/playyourdamnturn new file mode 100644 index 000000000..394b05e7b --- /dev/null +++ b/apps/playyourdamnturn @@ -0,0 +1,3 @@ +# playyourdamnturn +Desktop Client to assist with playing your damn turns. +# SITES: https://github.com/pydt/client \ No newline at end of file diff --git a/apps/playyourdamnturn.md b/apps/playyourdamnturn.md deleted file mode 100644 index 323b3b89e..000000000 --- a/apps/playyourdamnturn.md +++ /dev/null @@ -1,7 +0,0 @@ -# PLAYYOURDAMNTURN - - Desktop Client to assist with playing your damn turns. - - SITE: https://github.com/pydt/client - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/plebchan b/apps/plebchan new file mode 100644 index 000000000..fa494a64f --- /dev/null +++ b/apps/plebchan @@ -0,0 +1,3 @@ +# plebchan +A GUI for plebbit similar to 4chan. +# SITES: https://github.com/plebbit/5chan \ No newline at end of file diff --git a/apps/plebchan.md b/apps/plebchan.md deleted file mode 100644 index 0fb3f0032..000000000 --- a/apps/plebchan.md +++ /dev/null @@ -1,8 +0,0 @@ -# PLEBCHAN - - A GUI for plebbit similar to 4chan. - - SITE: https://github.com/plebbit/5chan - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/plex b/apps/plex new file mode 100644 index 000000000..da9fb6b81 --- /dev/null +++ b/apps/plex @@ -0,0 +1,3 @@ +# plex +The ultimate home theater experience +# SITES: https://github.com/knapsu/plex-media-player-appimage \ No newline at end of file diff --git a/apps/plex.md b/apps/plex.md deleted file mode 100644 index 6c8d9269a..000000000 --- a/apps/plex.md +++ /dev/null @@ -1,8 +0,0 @@ -# PLEX - - The ultimate home theater experience - - SITE: https://github.com/knapsu/plex-media-player-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/plexamp b/apps/plexamp new file mode 100644 index 000000000..c636a9338 --- /dev/null +++ b/apps/plexamp @@ -0,0 +1,3 @@ +# plexamp +The best little audio player on the planet +# SITES: https://plexamp.com \ No newline at end of file diff --git a/apps/plexamp.md b/apps/plexamp.md deleted file mode 100644 index 488f6d400..000000000 --- a/apps/plexamp.md +++ /dev/null @@ -1,8 +0,0 @@ -# PLEXAMP - - The best little audio player on the planet - - SITE: https://plexamp.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/plotjuggler b/apps/plotjuggler new file mode 100644 index 000000000..bad5b01db --- /dev/null +++ b/apps/plotjuggler @@ -0,0 +1,3 @@ +# plotjuggler +The Time Series Visualization Tool that you deserve. +# SITES: https://github.com/facontidavide/PlotJuggler \ No newline at end of file diff --git a/apps/plotjuggler.md b/apps/plotjuggler.md deleted file mode 100644 index 2ec78cc1b..000000000 --- a/apps/plotjuggler.md +++ /dev/null @@ -1,7 +0,0 @@ -# PLOTJUGGLER - - The Time Series Visualization Tool that you deserve. - - SITE: https://github.com/facontidavide/PlotJuggler - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/plotly-orca b/apps/plotly-orca new file mode 100644 index 000000000..a1cad688f --- /dev/null +++ b/apps/plotly-orca @@ -0,0 +1,3 @@ +# plotly-orca +Command line application for generating static images of interactive plotly charts +# SITES: https://github.com/plotly/orca \ No newline at end of file diff --git a/apps/plotly-orca.md b/apps/plotly-orca.md deleted file mode 100644 index 1f1870a4c..000000000 --- a/apps/plotly-orca.md +++ /dev/null @@ -1,8 +0,0 @@ -# PLOTLY-ORCA - - Command line application for generating static images of interactive plotly charts - - SITE: https://github.com/plotly/orca - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/plover b/apps/plover new file mode 100644 index 000000000..e1bde7a1c --- /dev/null +++ b/apps/plover @@ -0,0 +1,3 @@ +# plover +Stenographic input and translation +# SITES: https://github.com/openstenoproject/plover \ No newline at end of file diff --git a/apps/plover.md b/apps/plover.md deleted file mode 100644 index c2e3c4a81..000000000 --- a/apps/plover.md +++ /dev/null @@ -1,8 +0,0 @@ -# PLOVER - - Stenographic input and translation - - SITE: https://github.com/openstenoproject/plover - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/plume b/apps/plume new file mode 100644 index 000000000..835e3a97a --- /dev/null +++ b/apps/plume @@ -0,0 +1,3 @@ +# plume +Write beautifully. Effortlessly. A note-taking app written in Qt C++ and QML. +# SITES: https://github.com/nuttyartist/plume-public \ No newline at end of file diff --git a/apps/plume.md b/apps/plume.md deleted file mode 100644 index 9d1b1cfd2..000000000 --- a/apps/plume.md +++ /dev/null @@ -1,8 +0,0 @@ -# PLUME - - Write beautifully. Effortlessly. A note-taking app written in Qt C++ and QML. - - SITE: https://github.com/nuttyartist/plume-public - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/plus42 b/apps/plus42 new file mode 100644 index 000000000..4be58ae02 --- /dev/null +++ b/apps/plus42 @@ -0,0 +1,3 @@ +# plus42 +Unofficial, an enhanced HP-42S calculator simulator. +# SITES: https://github.com/pkgforge-dev/Plus42-AppImage \ No newline at end of file diff --git a/apps/plus42.md b/apps/plus42.md deleted file mode 100644 index 2735680bb..000000000 --- a/apps/plus42.md +++ /dev/null @@ -1,8 +0,0 @@ -# PLUS42 - - Unofficial, an enhanced HP-42S calculator simulator. - - SITE: https://github.com/pkgforge-dev/Plus42-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/png2svg b/apps/png2svg new file mode 100644 index 000000000..3c08c80b0 --- /dev/null +++ b/apps/png2svg @@ -0,0 +1,3 @@ +# png2svg +Convert small PNG images to SVG Tiny 1.2 +# SITES: https://github.com/xyproto/png2svg \ No newline at end of file diff --git a/apps/png2svg.md b/apps/png2svg.md deleted file mode 100644 index 16e047f20..000000000 --- a/apps/png2svg.md +++ /dev/null @@ -1,8 +0,0 @@ -# PNG2SVG - - Convert small PNG images to SVG Tiny 1.2 - - SITE: https://github.com/xyproto/png2svg - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pnpm b/apps/pnpm new file mode 100644 index 000000000..71e95b0f4 --- /dev/null +++ b/apps/pnpm @@ -0,0 +1,3 @@ +# pnpm +PNPM is a single file, powered by AppImage +# SITES: https://github.com/simnalamburt/pnpm.appimage \ No newline at end of file diff --git a/apps/pnpm.md b/apps/pnpm.md deleted file mode 100644 index 4745fecf1..000000000 --- a/apps/pnpm.md +++ /dev/null @@ -1,8 +0,0 @@ -# PNPM - - PNPM is a single file, powered by AppImage - - SITE: https://github.com/simnalamburt/pnpm.appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pocket-browser b/apps/pocket-browser new file mode 100644 index 000000000..f5530bb63 --- /dev/null +++ b/apps/pocket-browser @@ -0,0 +1,3 @@ +# pocket-browser +An open-source browser made for privacy and going towards security. +# SITES: https://github.com/PocketStudios/Pocket-Browser \ No newline at end of file diff --git a/apps/pocket-browser.md b/apps/pocket-browser.md deleted file mode 100644 index 6351eb5ac..000000000 --- a/apps/pocket-browser.md +++ /dev/null @@ -1,8 +0,0 @@ -# POCKET-BROWSER - - An open-source browser made for privacy and going towards security. - - SITE: https://github.com/PocketStudios/Pocket-Browser - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pocketcasts-electron b/apps/pocketcasts-electron new file mode 100644 index 000000000..fd1f721e3 --- /dev/null +++ b/apps/pocketcasts-electron @@ -0,0 +1,3 @@ +# pocketcasts-electron +Pocket Casts wrapper with mapped media keys +# SITES: https://github.com/davegallant/pocketcasts-electron \ No newline at end of file diff --git a/apps/pocketcasts-electron.md b/apps/pocketcasts-electron.md deleted file mode 100644 index 965168bd1..000000000 --- a/apps/pocketcasts-electron.md +++ /dev/null @@ -1,8 +0,0 @@ -# POCKETCASTS-ELECTRON - - Pocket Casts wrapper with mapped media keys - - SITE: https://github.com/davegallant/pocketcasts-electron - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/poddr b/apps/poddr new file mode 100644 index 000000000..2b24247ae --- /dev/null +++ b/apps/poddr @@ -0,0 +1,5 @@ +# poddr +Podcast client built with Electron and Angular. + + Poddr uses iTunes RSS feeds and Search API to gather information. +# SITES: https://github.com/Sn8z/Poddr \ No newline at end of file diff --git a/apps/poddr.md b/apps/poddr.md deleted file mode 100644 index c06097f1d..000000000 --- a/apps/poddr.md +++ /dev/null @@ -1,10 +0,0 @@ -# PODDR - - Podcast client built with Electron and Angular. - - Poddr uses iTunes RSS feeds and Search API to gather information. - - SITE: https://github.com/Sn8z/Poddr - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/podium b/apps/podium new file mode 100644 index 000000000..d5fb5a795 --- /dev/null +++ b/apps/podium @@ -0,0 +1,3 @@ +# podium +A Markdown-based native presentation tool. +# SITES: https://github.com/beeware/podium \ No newline at end of file diff --git a/apps/podium.md b/apps/podium.md deleted file mode 100644 index bc00054dd..000000000 --- a/apps/podium.md +++ /dev/null @@ -1,8 +0,0 @@ -# PODIUM - - A Markdown-based native presentation tool. - - SITE: https://github.com/beeware/podium - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/podman b/apps/podman new file mode 100644 index 000000000..38d7a6375 --- /dev/null +++ b/apps/podman @@ -0,0 +1,6 @@ +# podman +The best free & open source container tools. Manage containers, pods, and images with Podman. + + Seamlessly work with containers and Kubernetes from your local environment. +# SITES: https://podman.io +# SOURCES: https://github.com/containers/podman \ No newline at end of file diff --git a/apps/podman-desktop-companion b/apps/podman-desktop-companion new file mode 100644 index 000000000..95e5bb2c9 --- /dev/null +++ b/apps/podman-desktop-companion @@ -0,0 +1,3 @@ +# podman-desktop-companion +Cross-platform desktop integrated application with consistent UI,Learning tool for the powerful podman command line interface. +# SITES: https://iongion.github.io/podman-desktop-companion/ \ No newline at end of file diff --git a/apps/podman-desktop-companion.md b/apps/podman-desktop-companion.md deleted file mode 100644 index a0b596cb5..000000000 --- a/apps/podman-desktop-companion.md +++ /dev/null @@ -1,8 +0,0 @@ -# PODMAN-DESKTOP-COMPANION - - Cross-platform desktop integrated application with consistent UI,Learning tool for the powerful podman command line interface. - - SITE: https://iongion.github.io/podman-desktop-companion/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/podman.md b/apps/podman.md deleted file mode 100644 index e3abbac2b..000000000 --- a/apps/podman.md +++ /dev/null @@ -1,12 +0,0 @@ -# PODMAN - - The best free & open source container tools. Manage containers, pods, and images with Podman. - - Seamlessly work with containers and Kubernetes from your local environment. - - SITE: https://podman.io - - SOURCE: https://github.com/containers/podman - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/poe-ladder b/apps/poe-ladder new file mode 100644 index 000000000..390a70f85 --- /dev/null +++ b/apps/poe-ladder @@ -0,0 +1,3 @@ +# poe-ladder +Path of Exile ladder viewer +# SITES: https://github.com/darteil/POELadder \ No newline at end of file diff --git a/apps/poe-ladder.md b/apps/poe-ladder.md deleted file mode 100644 index adff12277..000000000 --- a/apps/poe-ladder.md +++ /dev/null @@ -1,8 +0,0 @@ -# POE-LADDER - - Path of Exile ladder viewer - - SITE: https://github.com/darteil/POELadder - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/poedit b/apps/poedit new file mode 100644 index 000000000..3af782fb8 --- /dev/null +++ b/apps/poedit @@ -0,0 +1,7 @@ +# poedit +Powerful and intuitive translation editor. + + This is the unofficial AppImage. +# SCREENSHOTS: https://github.com/user-attachments/assets/5c736054-b1b1-43d2-8807-11e863e616ce +# SITES: https://poedit.net/ +# SOURCES: https://github.com/ivan-hc/Poedit-appimage \ No newline at end of file diff --git a/apps/poedit.md b/apps/poedit.md deleted file mode 100644 index ee4403e72..000000000 --- a/apps/poedit.md +++ /dev/null @@ -1,14 +0,0 @@ -# POEDIT - - Powerful and intuitive translation editor. - - This is the unofficial AppImage. - - ![Screenshot](https://github.com/user-attachments/assets/5c736054-b1b1-43d2-8807-11e863e616ce) - - SITE: https://poedit.net/ - - APPIMAGE: https://github.com/ivan-hc/Poedit-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pog b/apps/pog new file mode 100644 index 000000000..3d62fc7ca --- /dev/null +++ b/apps/pog @@ -0,0 +1,3 @@ +# pog +A Kmk firmware flashing and configuration tool. +# SITES: https://github.com/JanLunge/pog \ No newline at end of file diff --git a/apps/pog.md b/apps/pog.md deleted file mode 100644 index 5dba9529f..000000000 --- a/apps/pog.md +++ /dev/null @@ -1,8 +0,0 @@ -# POG - - A Kmk firmware flashing and configuration tool. - - SITE: https://github.com/JanLunge/pog - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/poi b/apps/poi new file mode 100644 index 000000000..26bc41f4c --- /dev/null +++ b/apps/poi @@ -0,0 +1,3 @@ +# poi +Scalable KanColle browser and tool. +# SITES: https://poi.moe/ \ No newline at end of file diff --git a/apps/poi.md b/apps/poi.md deleted file mode 100644 index 6e86aa7bf..000000000 --- a/apps/poi.md +++ /dev/null @@ -1,8 +0,0 @@ -# POI - - Scalable KanColle browser and tool. - - SITE: https://poi.moe/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pointless b/apps/pointless new file mode 100644 index 000000000..2fda71a52 --- /dev/null +++ b/apps/pointless @@ -0,0 +1,3 @@ +# pointless +An endless drawing canvas desktop app made with Tauri (Rust) and React 🎨 ✍️ +# SITES: https://github.com/kkoomen/pointless \ No newline at end of file diff --git a/apps/pointless.md b/apps/pointless.md deleted file mode 100644 index c2f610ab2..000000000 --- a/apps/pointless.md +++ /dev/null @@ -1,8 +0,0 @@ -# POINTLESS - - An endless drawing canvas desktop app made with Tauri (Rust) and React 🎨 ✍️ - - SITE: https://github.com/kkoomen/pointless - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pokeclicker b/apps/pokeclicker new file mode 100644 index 000000000..65e1cb682 --- /dev/null +++ b/apps/pokeclicker @@ -0,0 +1,3 @@ +# pokeclicker +PokéClicker with quality of life changes. +# SITES: https://github.com/wheat32/pokeclicker \ No newline at end of file diff --git a/apps/pokeclicker.md b/apps/pokeclicker.md deleted file mode 100644 index f4747875c..000000000 --- a/apps/pokeclicker.md +++ /dev/null @@ -1,8 +0,0 @@ -# POKECLICKER - - PokéClicker with quality of life changes. - - SITE: https://github.com/wheat32/pokeclicker - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/pokeget-rs b/apps/pokeget-rs new file mode 100644 index 000000000..13b606230 --- /dev/null +++ b/apps/pokeget-rs @@ -0,0 +1,3 @@ +# pokeget-rs +A better rust version of pokeget. +# SITES: https://github.com/talwat/pokeget-rs \ No newline at end of file diff --git a/apps/pokeget-rs.md b/apps/pokeget-rs.md deleted file mode 100644 index 1801dcce8..000000000 --- a/apps/pokeget-rs.md +++ /dev/null @@ -1,8 +0,0 @@ -# POKEGET-RS - - A better rust version of pokeget. - - SITE: https://github.com/talwat/pokeget-rs - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pokego b/apps/pokego new file mode 100644 index 000000000..93d979f94 --- /dev/null +++ b/apps/pokego @@ -0,0 +1,3 @@ +# pokego +Command-line tool that lets you display Pokémon sprites in color directly in your terminal. +# SITES: https://github.com/rubiin/pokego \ No newline at end of file diff --git a/apps/pokego.md b/apps/pokego.md deleted file mode 100644 index 102376945..000000000 --- a/apps/pokego.md +++ /dev/null @@ -1,8 +0,0 @@ -# POKEGO - - Command-line tool that lets you display Pokémon sprites in color directly in your terminal. - - SITE: https://github.com/rubiin/pokego - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pokemmo b/apps/pokemmo new file mode 100644 index 000000000..1d015a976 --- /dev/null +++ b/apps/pokemmo @@ -0,0 +1,3 @@ +# pokemmo +Unofficial, MMO based on the Pokémon Universe. +# SITES: https://github.com/pkgforge-dev/PokeMMO-AppImage \ No newline at end of file diff --git a/apps/pokemmo.md b/apps/pokemmo.md deleted file mode 100644 index a17b8cd92..000000000 --- a/apps/pokemmo.md +++ /dev/null @@ -1,8 +0,0 @@ -# POKEMMO - - Unofficial, MMO based on the Pokémon Universe. - - SITE: https://github.com/pkgforge-dev/PokeMMO-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/pokete b/apps/pokete new file mode 100644 index 000000000..67488dbbc --- /dev/null +++ b/apps/pokete @@ -0,0 +1,3 @@ +# pokete +A terminal based Pokemon like game +# SITES: https://github.com/lxgr-linux/pokete \ No newline at end of file diff --git a/apps/pokete.md b/apps/pokete.md deleted file mode 100644 index 8e43589b1..000000000 --- a/apps/pokete.md +++ /dev/null @@ -1,8 +0,0 @@ -# POKETE - - A terminal based Pokemon like game - - SITE: https://github.com/lxgr-linux/pokete - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/polar b/apps/polar new file mode 100644 index 000000000..fb03067a4 --- /dev/null +++ b/apps/polar @@ -0,0 +1,3 @@ +# polar +One-click Bitcoin Lightning networks for local app development & amp testing. +# SITES: https://lightningpolar.com/ \ No newline at end of file diff --git a/apps/polar.md b/apps/polar.md deleted file mode 100644 index 7426294ce..000000000 --- a/apps/polar.md +++ /dev/null @@ -1,8 +0,0 @@ -# POLAR - - One-click Bitcoin Lightning networks for local app development & amp testing. - - SITE: https://lightningpolar.com/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/polkakey b/apps/polkakey new file mode 100644 index 000000000..e790c50db --- /dev/null +++ b/apps/polkakey @@ -0,0 +1,3 @@ +# polkakey +A secure and simple way to generate a Polkadot/Kusama/Edgeware address +# SITES: https://github.com/w3finance/PolkaKey \ No newline at end of file diff --git a/apps/polkakey.md b/apps/polkakey.md deleted file mode 100644 index a75404377..000000000 --- a/apps/polkakey.md +++ /dev/null @@ -1,8 +0,0 @@ -# POLKAKEY - - A secure and simple way to generate a Polkadot/Kusama/Edgeware address - - SITE: https://github.com/w3finance/PolkaKey - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/polybar b/apps/polybar new file mode 100644 index 000000000..0a82db674 --- /dev/null +++ b/apps/polybar @@ -0,0 +1,3 @@ +# polybar +Unofficial AppImage of polybar. A fast easy-to-use status bar. +# SITES: https://github.com/Samueru-sama/polybar-AppImage \ No newline at end of file diff --git a/apps/polybar.md b/apps/polybar.md deleted file mode 100644 index e6ef6f980..000000000 --- a/apps/polybar.md +++ /dev/null @@ -1,8 +0,0 @@ -# POLYBAR - - Unofficial AppImage of polybar. A fast easy-to-use status bar. - - SITE: https://github.com/Samueru-sama/polybar-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/polypane b/apps/polypane new file mode 100644 index 000000000..3cbb145f9 --- /dev/null +++ b/apps/polypane @@ -0,0 +1,3 @@ +# polypane +Browser for web developers +# SITES: https://github.com/firstversionist/polypane \ No newline at end of file diff --git a/apps/polypane.md b/apps/polypane.md deleted file mode 100644 index 10977053a..000000000 --- a/apps/polypane.md +++ /dev/null @@ -1,8 +0,0 @@ -# POLYPANE - - Browser for web developers - - SITE: https://github.com/firstversionist/polypane - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pomatez b/apps/pomatez new file mode 100644 index 000000000..f4e1c2ca4 --- /dev/null +++ b/apps/pomatez @@ -0,0 +1,3 @@ +# pomatez +Stay Focused. Take a Break. +# SITES: https://github.com/zidoro/pomatez \ No newline at end of file diff --git a/apps/pomatez.md b/apps/pomatez.md deleted file mode 100644 index c9a73b740..000000000 --- a/apps/pomatez.md +++ /dev/null @@ -1,8 +0,0 @@ -# POMATEZ - - Stay Focused. Take a Break. - - SITE: https://github.com/zidoro/pomatez - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pomodorolm b/apps/pomodorolm new file mode 100644 index 000000000..f5a179d5e --- /dev/null +++ b/apps/pomodorolm @@ -0,0 +1,3 @@ +# pomodorolm +A simple, good looking and multi-platform pomodoro tracker +# SITES: https://github.com/vjousse/pomodorolm \ No newline at end of file diff --git a/apps/pomodorolm.md b/apps/pomodorolm.md deleted file mode 100644 index d55ea9bf7..000000000 --- a/apps/pomodorolm.md +++ /dev/null @@ -1,8 +0,0 @@ -# POMODOROLM - - A simple, good looking and multi-platform pomodoro tracker - - SITE: https://github.com/vjousse/pomodorolm - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pomotroid b/apps/pomotroid new file mode 100644 index 000000000..1d418909c --- /dev/null +++ b/apps/pomotroid @@ -0,0 +1,5 @@ +# pomotroid +Simple and visually-pleasing Pomodoro timer. + + https://github.com/Splode/pomotroid +# SITES: \ No newline at end of file diff --git a/apps/pomotroid.md b/apps/pomotroid.md deleted file mode 100644 index bc016b238..000000000 --- a/apps/pomotroid.md +++ /dev/null @@ -1,7 +0,0 @@ -# POMOTROID - - Simple and visually-pleasing Pomodoro timer. - - https://github.com/Splode/pomotroid - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pop b/apps/pop new file mode 100644 index 000000000..cba0f5b69 --- /dev/null +++ b/apps/pop @@ -0,0 +1,3 @@ +# pop +Send emails from your terminal 📬 +# SITES: https://github.com/charmbracelet/pop \ No newline at end of file diff --git a/apps/pop.md b/apps/pop.md deleted file mode 100644 index d750218cc..000000000 --- a/apps/pop.md +++ /dev/null @@ -1,8 +0,0 @@ -# POP - - Send emails from your terminal 📬 - - SITE: https://github.com/charmbracelet/pop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/popsicle b/apps/popsicle new file mode 100644 index 000000000..cf2189209 --- /dev/null +++ b/apps/popsicle @@ -0,0 +1,3 @@ +# popsicle +Multiple USB File Flasher +# SITES: https://github.com/pop-os/popsicle \ No newline at end of file diff --git a/apps/popsicle.md b/apps/popsicle.md deleted file mode 100644 index cb9f9bd9d..000000000 --- a/apps/popsicle.md +++ /dev/null @@ -1,8 +0,0 @@ -# POPSICLE - - Multiple USB File Flasher - - SITE: https://github.com/pop-os/popsicle - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/portable2appimage b/apps/portable2appimage new file mode 100644 index 000000000..e1e5aecb6 --- /dev/null +++ b/apps/portable2appimage @@ -0,0 +1,3 @@ +# portable2appimage +Convert standalone, self-contained portable apps into AppImage packages. +# SITES: https://github.com/ivan-hc/portable2appimage \ No newline at end of file diff --git a/apps/portable2appimage.md b/apps/portable2appimage.md deleted file mode 100644 index 695df561a..000000000 --- a/apps/portable2appimage.md +++ /dev/null @@ -1,8 +0,0 @@ -# PORTABLE2APPIMAGE - - Convert standalone, self-contained portable apps into AppImage packages. - - SITE: https://github.com/ivan-hc/portable2appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/positron b/apps/positron new file mode 100644 index 000000000..bf64369f5 --- /dev/null +++ b/apps/positron @@ -0,0 +1,3 @@ +# positron +Desktop application that allows you to manage your movie and show watchlist. It is built using Electron and React. +# SITES: https://github.com/arjunindia/positron \ No newline at end of file diff --git a/apps/positron.md b/apps/positron.md deleted file mode 100644 index 6590de654..000000000 --- a/apps/positron.md +++ /dev/null @@ -1,8 +0,0 @@ -# POSITRON - - Desktop application that allows you to manage your movie and show watchlist. It is built using Electron and React. - - SITE: https://github.com/arjunindia/positron - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/postal b/apps/postal new file mode 100644 index 000000000..38ee40fe9 --- /dev/null +++ b/apps/postal @@ -0,0 +1,3 @@ +# postal +Unofficial, Postal a quirky FPS shooter. +# SITES: https://github.com/pkgforge-dev/POSTAL-AppImage \ No newline at end of file diff --git a/apps/postal.md b/apps/postal.md deleted file mode 100644 index 1e38912cc..000000000 --- a/apps/postal.md +++ /dev/null @@ -1,8 +0,0 @@ -# POSTAL - - Unofficial, Postal a quirky FPS shooter. - - SITE: https://github.com/pkgforge-dev/POSTAL-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/postcat b/apps/postcat new file mode 100644 index 000000000..4456e26d6 --- /dev/null +++ b/apps/postcat @@ -0,0 +1,3 @@ +# postcat +Postcat 是一个可扩展的 API 工具平台。集合基础的 API 管理和测试功能,并且可以通过插件简化你的 API 开发工作,让你可以更快更好地创建 API。An extensible API tool. +# SITES: https://www.postcat.com/ \ No newline at end of file diff --git a/apps/postcat.md b/apps/postcat.md deleted file mode 100644 index 5a56abcf5..000000000 --- a/apps/postcat.md +++ /dev/null @@ -1,8 +0,0 @@ -# POSTCAT - - Postcat 是一个可扩展的 API 工具平台。集合基础的 API 管理和测试功能,并且可以通过插件简化你的 API 开发工作,让你可以更快更好地创建 API。An extensible API tool. - - SITE: https://www.postcat.com/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/postman b/apps/postman new file mode 100644 index 000000000..4ab7889f5 --- /dev/null +++ b/apps/postman @@ -0,0 +1,3 @@ +# postman +API platform for building and using APIs (AppImage version). +# SITES: https://github.com/showcheap/postman-appimage \ No newline at end of file diff --git a/apps/postman.md b/apps/postman.md deleted file mode 100644 index 92801644f..000000000 --- a/apps/postman.md +++ /dev/null @@ -1,8 +0,0 @@ -# POSTMAN - - API platform for building and using APIs (AppImage version). - - SITE: https://github.com/showcheap/postman-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/postybirb b/apps/postybirb new file mode 100644 index 000000000..d7dea4acc --- /dev/null +++ b/apps/postybirb @@ -0,0 +1,3 @@ +# postybirb +Multimedia crossposter for multimedia websites +# SITES: https://github.com/mvdicarlo/postybirb \ No newline at end of file diff --git a/apps/postybirb-plus b/apps/postybirb-plus new file mode 100644 index 000000000..7b534afc2 --- /dev/null +++ b/apps/postybirb-plus @@ -0,0 +1,4 @@ +# postybirb-plus +An application that helps artists post art and other multimedia to multiple websites more quickly. +# SITES: https://www.postybirb-plus.com/ +# SOURCES: https://github.com/mvdicarlo/postybirb-plus \ No newline at end of file diff --git a/apps/postybirb-plus.md b/apps/postybirb-plus.md deleted file mode 100644 index 7d6447b7d..000000000 --- a/apps/postybirb-plus.md +++ /dev/null @@ -1,10 +0,0 @@ -# POSTYBIRB-PLUS - - An application that helps artists post art and other multimedia to multiple websites more quickly. - - SITE: https://www.postybirb-plus.com/ - - SOURCE: https://github.com/mvdicarlo/postybirb-plus - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/postybirb.md b/apps/postybirb.md deleted file mode 100644 index 6032ead92..000000000 --- a/apps/postybirb.md +++ /dev/null @@ -1,8 +0,0 @@ -# POSTYBIRB - - Multimedia crossposter for multimedia websites - - SITE: https://github.com/mvdicarlo/postybirb - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pot-desktop b/apps/pot-desktop new file mode 100644 index 000000000..d680f86d1 --- /dev/null +++ b/apps/pot-desktop @@ -0,0 +1,3 @@ +# pot-desktop +A cross-platform software for text translation and recognition. +# SITES: https://github.com/pot-app/pot-desktop \ No newline at end of file diff --git a/apps/pot-desktop.md b/apps/pot-desktop.md deleted file mode 100644 index b9a0b42de..000000000 --- a/apps/pot-desktop.md +++ /dev/null @@ -1,8 +0,0 @@ -# POT-DESKTOP - - A cross-platform software for text translation and recognition. - - SITE: https://github.com/pot-app/pot-desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/potatopresenter b/apps/potatopresenter new file mode 100644 index 000000000..35489b63e --- /dev/null +++ b/apps/potatopresenter @@ -0,0 +1,3 @@ +# potatopresenter +Tool to create presentation slides that can be exported as PDF. +# SITES: https://github.com/thgier/PotatoPresenter \ No newline at end of file diff --git a/apps/potatopresenter.md b/apps/potatopresenter.md deleted file mode 100644 index 630330b16..000000000 --- a/apps/potatopresenter.md +++ /dev/null @@ -1,8 +0,0 @@ -# POTATOPRESENTER - - Tool to create presentation slides that can be exported as PDF. - - SITE: https://github.com/thgier/PotatoPresenter - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/powder-toy b/apps/powder-toy new file mode 100644 index 000000000..2c2143adf --- /dev/null +++ b/apps/powder-toy @@ -0,0 +1,3 @@ +# powder-toy +AppImage build of The Powder Toy built from source +# SITES: https://github.com/mgord9518/Powder_Toy.AppImage \ No newline at end of file diff --git a/apps/powder-toy.md b/apps/powder-toy.md deleted file mode 100644 index 542c2f9d5..000000000 --- a/apps/powder-toy.md +++ /dev/null @@ -1,8 +0,0 @@ -# POWDER-TOY - - AppImage build of The Powder Toy built from source - - SITE: https://github.com/mgord9518/Powder_Toy.AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/powerliminals-player b/apps/powerliminals-player new file mode 100644 index 000000000..fa834983c --- /dev/null +++ b/apps/powerliminals-player @@ -0,0 +1,3 @@ +# powerliminals-player +Plays Powerliminal audios, which are nearly-silent audios containing very high-frequency energies to play in the background. You can stack 10 to 30 audios at varying speeds to play in the background day and night, selecting the balance of energies that you need. +# SITES: https://github.com/mysteryx93/NaturalGroundingPlayer \ No newline at end of file diff --git a/apps/powerliminals-player.md b/apps/powerliminals-player.md deleted file mode 100644 index 057f38081..000000000 --- a/apps/powerliminals-player.md +++ /dev/null @@ -1,8 +0,0 @@ -# POWERLIMINALS-PLAYER - - Plays Powerliminal audios, which are nearly-silent audios containing very high-frequency energies to play in the background. You can stack 10 to 30 audios at varying speeds to play in the background day and night, selecting the balance of energies that you need. - - SITE: https://github.com/mysteryx93/NaturalGroundingPlayer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/powershell b/apps/powershell new file mode 100644 index 000000000..680b385e9 --- /dev/null +++ b/apps/powershell @@ -0,0 +1,6 @@ +# powershell +Microsoft PowerShell is a cross-platform task automation solution consisting of a command-line shell, a scripting language, and a configuration management framework. PowerShell runs on Windows, Linux and macOS. + + This is the Unofficial AppImage built on top of the official build. +# SITES: https://github.com/PowerShell/PowerShell +# SOURCES: https://github.com/ivan-hc/PowerShell-appimage \ No newline at end of file diff --git a/apps/powershell.md b/apps/powershell.md deleted file mode 100644 index e20c58d6b..000000000 --- a/apps/powershell.md +++ /dev/null @@ -1,12 +0,0 @@ -# POWERSHELL - - Microsoft PowerShell is a cross-platform task automation solution consisting of a command-line shell, a scripting language, and a configuration management framework. PowerShell runs on Windows, Linux and macOS. - - This is the Unofficial AppImage built on top of the official build. - - SITE: https://github.com/PowerShell/PowerShell - - UNOFFICIAL APPIMAGE: https://github.com/ivan-hc/PowerShell-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ppet3 b/apps/ppet3 new file mode 100644 index 000000000..05e6640d0 --- /dev/null +++ b/apps/ppet3 @@ -0,0 +1,3 @@ +# ppet3 +Put a cute girl on your desk for more fun.在你的桌面放一个萌妹子,多一点乐趣 +# SITES: https://github.com/zenghongtu/PPet \ No newline at end of file diff --git a/apps/ppet3.md b/apps/ppet3.md deleted file mode 100644 index 7e89b4948..000000000 --- a/apps/ppet3.md +++ /dev/null @@ -1,8 +0,0 @@ -# PPET3 - - Put a cute girl on your desk for more fun.在你的桌面放一个萌妹子,多一点乐趣 - - SITE: https://github.com/zenghongtu/PPet - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ppsspp b/apps/ppsspp new file mode 100644 index 000000000..03fae7d05 --- /dev/null +++ b/apps/ppsspp @@ -0,0 +1,3 @@ +# ppsspp +A PSP emulator for Android, Windows, Mac and Linux, written in C++. +# SITES: https://github.com/hrydgard/ppsspp \ No newline at end of file diff --git a/apps/ppsspp.md b/apps/ppsspp.md deleted file mode 100644 index b8fefb7cb..000000000 --- a/apps/ppsspp.md +++ /dev/null @@ -1,8 +0,0 @@ -# PPSSPP - - A PSP emulator for Android, Windows, Mac and Linux, written in C++. - - SITE: https://github.com/hrydgard/ppsspp - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pr b/apps/pr new file mode 100644 index 000000000..d263f2592 --- /dev/null +++ b/apps/pr @@ -0,0 +1,4 @@ +# pr + Files for printing. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/pr.md b/apps/pr.md deleted file mode 100644 index 601f0a5e2..000000000 --- a/apps/pr.md +++ /dev/null @@ -1,8 +0,0 @@ -# PR - - Files for printing. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/pragtical b/apps/pragtical new file mode 100644 index 000000000..a3a481c1d --- /dev/null +++ b/apps/pragtical @@ -0,0 +1,3 @@ +# pragtical +The practical and pragmatic code editor. +# SITES: https://github.com/pragtical/pragtical \ No newline at end of file diff --git a/apps/pragtical.md b/apps/pragtical.md deleted file mode 100644 index 8c3d22b12..000000000 --- a/apps/pragtical.md +++ /dev/null @@ -1,8 +0,0 @@ -# PRAGTICAL - - The practical and pragmatic code editor. - - SITE: https://github.com/pragtical/pragtical - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pretty-handy-privacy b/apps/pretty-handy-privacy new file mode 100644 index 000000000..bce408fe6 --- /dev/null +++ b/apps/pretty-handy-privacy @@ -0,0 +1,5 @@ +# pretty-handy-privacy +User interface for basic encryption tasks. + + https://github.com/bobbyrne01/pretty-handy-privacy +# SITES: \ No newline at end of file diff --git a/apps/pretty-handy-privacy.md b/apps/pretty-handy-privacy.md deleted file mode 100644 index 57697eb49..000000000 --- a/apps/pretty-handy-privacy.md +++ /dev/null @@ -1,7 +0,0 @@ -# PRETTY-HANDY-PRIVACY - - User interface for basic encryption tasks. - - https://github.com/bobbyrne01/pretty-handy-privacy - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/prey2006 b/apps/prey2006 new file mode 100644 index 000000000..4a79ccdf1 --- /dev/null +++ b/apps/prey2006 @@ -0,0 +1,3 @@ +# prey2006 +Unofficial, Prey 2006 SDK integrated with Doom 3 GPL release. +# SITES: https://github.com/pkgforge-dev/Prey2006-AppImage \ No newline at end of file diff --git a/apps/prey2006.md b/apps/prey2006.md deleted file mode 100644 index 9420a6a2f..000000000 --- a/apps/prey2006.md +++ /dev/null @@ -1,8 +0,0 @@ -# PREY2006 - - Unofficial, Prey 2006 SDK integrated with Doom 3 GPL release. - - SITE: https://github.com/pkgforge-dev/Prey2006-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/primate b/apps/primate new file mode 100644 index 000000000..b39c01927 --- /dev/null +++ b/apps/primate @@ -0,0 +1,3 @@ +# primate +A modern dashboard for Kong Gateway admins. +# SITES: https://www.getprimate.xyz/ \ No newline at end of file diff --git a/apps/primate.md b/apps/primate.md deleted file mode 100644 index 4700f2783..000000000 --- a/apps/primate.md +++ /dev/null @@ -1,8 +0,0 @@ -# PRIMATE - - A modern dashboard for Kong Gateway admins. - - SITE: https://www.getprimate.xyz/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/prime-world-editor b/apps/prime-world-editor new file mode 100644 index 000000000..46b4f6470 --- /dev/null +++ b/apps/prime-world-editor @@ -0,0 +1,3 @@ +# prime-world-editor +Prime World Editor is a custom editor suite for Retro Studios' GameCube and Wii games, including the Metroid Prime series and Donkey Kong Country Returns. +# SITES: https://github.com/AxioDL/PrimeWorldEditor \ No newline at end of file diff --git a/apps/prime-world-editor.md b/apps/prime-world-editor.md deleted file mode 100644 index 3f4c34cb1..000000000 --- a/apps/prime-world-editor.md +++ /dev/null @@ -1,8 +0,0 @@ -# PRIME-WORLD-EDITOR - - Prime World Editor is a custom editor suite for Retro Studios' GameCube and Wii games, including the Metroid Prime series and Donkey Kong Country Returns. - - SITE: https://github.com/AxioDL/PrimeWorldEditor - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/primehack b/apps/primehack new file mode 100644 index 000000000..df2be0146 --- /dev/null +++ b/apps/primehack @@ -0,0 +1,4 @@ +# primehack + Unofficial AppImage of the PrimeHack emulator. +# SITES: https://github.com/pkgforge-dev/primehack-appimage +# SOURCES: https://github.com/pkgforge-dev/primehack-appimage \ No newline at end of file diff --git a/apps/primehack.md b/apps/primehack.md deleted file mode 100644 index b02deb779..000000000 --- a/apps/primehack.md +++ /dev/null @@ -1,8 +0,0 @@ -# PRIMEHACK - - Unofficial AppImage of the PrimeHack emulator. - - SITE: https://github.com/pkgforge-dev/primehack-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/principia b/apps/principia new file mode 100644 index 000000000..5ec45009a --- /dev/null +++ b/apps/principia @@ -0,0 +1,3 @@ +# principia +Open source physics-based sandbox game. +# SITES: https://github.com/Bithack/principia \ No newline at end of file diff --git a/apps/principia.md b/apps/principia.md deleted file mode 100644 index dfa301586..000000000 --- a/apps/principia.md +++ /dev/null @@ -1,8 +0,0 @@ -# PRINCIPIA - - Open source physics-based sandbox game. - - SITE: https://github.com/Bithack/principia - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/printenv b/apps/printenv new file mode 100644 index 000000000..e1844ea1c --- /dev/null +++ b/apps/printenv @@ -0,0 +1,4 @@ +# printenv + Print all or part of environment. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/printenv.md b/apps/printenv.md deleted file mode 100644 index 04c0a1185..000000000 --- a/apps/printenv.md +++ /dev/null @@ -1,8 +0,0 @@ -# PRINTENV - - Print all or part of environment. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/printerclient b/apps/printerclient new file mode 100644 index 000000000..91f425a80 --- /dev/null +++ b/apps/printerclient @@ -0,0 +1,3 @@ +# printerclient +A printer client. +# SITES: https://github.com/DevTeamSCH/printer-client \ No newline at end of file diff --git a/apps/printerclient.md b/apps/printerclient.md deleted file mode 100644 index 4fd10304d..000000000 --- a/apps/printerclient.md +++ /dev/null @@ -1,8 +0,0 @@ -# PRINTERCLIENT - - A printer client. - - SITE: https://github.com/DevTeamSCH/printer-client - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/printf b/apps/printf new file mode 100644 index 000000000..aff5ec570 --- /dev/null +++ b/apps/printf @@ -0,0 +1,3 @@ +# printf +Format and print data. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/printf.md b/apps/printf.md deleted file mode 100644 index 069a58289..000000000 --- a/apps/printf.md +++ /dev/null @@ -1,8 +0,0 @@ -# PRINTF - - Format and print data. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/printventory b/apps/printventory new file mode 100644 index 000000000..23894aba7 --- /dev/null +++ b/apps/printventory @@ -0,0 +1,3 @@ +# printventory +The ultimate tool for managing your 3D printing collection with ease. Sort, tag, and track your models in one place. +# SITES: https://printventory.com \ No newline at end of file diff --git a/apps/printventory.md b/apps/printventory.md deleted file mode 100644 index 5f1e1bb16..000000000 --- a/apps/printventory.md +++ /dev/null @@ -1,8 +0,0 @@ -# PRINTVENTORY - - The ultimate tool for managing your 3D printing collection with ease. Sort, tag, and track your models in one place. - - SITE: https://printventory.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/prisma-studio b/apps/prisma-studio new file mode 100644 index 000000000..e97725665 --- /dev/null +++ b/apps/prisma-studio @@ -0,0 +1,3 @@ +# prisma-studio +The easiest way to explore and manipulate your data in all of your Prisma projects. +# SITES: https://www.prisma.io/studio \ No newline at end of file diff --git a/apps/prisma-studio.md b/apps/prisma-studio.md deleted file mode 100644 index 805920019..000000000 --- a/apps/prisma-studio.md +++ /dev/null @@ -1,8 +0,0 @@ -# PRISMA-STUDIO - - The easiest way to explore and manipulate your data in all of your Prisma projects. - - SITE: https://www.prisma.io/studio - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/prismlauncher b/apps/prismlauncher new file mode 100644 index 000000000..07b91f2cc --- /dev/null +++ b/apps/prismlauncher @@ -0,0 +1,5 @@ +# prismlauncher +Prism Launcher is a custom launcher for Minecraft that allows you to easily manage multiple installations of Minecraft at once. + + This is a fork of the MultiMC Launcher and is not endorsed by it. +# SITES: https://prismlauncher.org \ No newline at end of file diff --git a/apps/prismlauncher-enhanced b/apps/prismlauncher-enhanced new file mode 100644 index 000000000..1ca873835 --- /dev/null +++ b/apps/prismlauncher-enhanced @@ -0,0 +1,3 @@ +# prismlauncher-enhanced +Unofficial, a custom launcher for Minecraft that allows you to easily manage multiple installations of Minecraft at once (Fork of MultiMC). +# SITES: https://github.com/pkgforge-dev/PrismLauncher-AppImage-Enhanced \ No newline at end of file diff --git a/apps/prismlauncher-enhanced.md b/apps/prismlauncher-enhanced.md deleted file mode 100644 index 073afb0d1..000000000 --- a/apps/prismlauncher-enhanced.md +++ /dev/null @@ -1,8 +0,0 @@ -# PRISMLAUNCHER-ENHANCED - - Unofficial, a custom launcher for Minecraft that allows you to easily manage multiple installations of Minecraft at once (Fork of MultiMC). - - SITE: https://github.com/pkgforge-dev/PrismLauncher-AppImage-Enhanced - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/prismlauncher-qt5 b/apps/prismlauncher-qt5 new file mode 100644 index 000000000..bfc12c53d --- /dev/null +++ b/apps/prismlauncher-qt5 @@ -0,0 +1,3 @@ +# prismlauncher-qt5 +A custom launcher for Minecraft that allows you to easily manage multiple installations of Minecraft at once (Fork of MultiMC). +# SITES: https://github.com/PrismLauncher/PrismLauncher \ No newline at end of file diff --git a/apps/prismlauncher-qt5.md b/apps/prismlauncher-qt5.md deleted file mode 100644 index dc40fe6b4..000000000 --- a/apps/prismlauncher-qt5.md +++ /dev/null @@ -1,8 +0,0 @@ -# PRISMLAUNCHER-QT5 - - A custom launcher for Minecraft that allows you to easily manage multiple installations of Minecraft at once (Fork of MultiMC). - - SITE: https://github.com/PrismLauncher/PrismLauncher - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/prismlauncher.md b/apps/prismlauncher.md deleted file mode 100644 index 05d7ac6a0..000000000 --- a/apps/prismlauncher.md +++ /dev/null @@ -1,10 +0,0 @@ -# PRISMLAUNCHER - - Prism Launcher is a custom launcher for Minecraft that allows you to easily manage multiple installations of Minecraft at once. - - This is a fork of the MultiMC Launcher and is not endorsed by it. - - SITE: https://prismlauncher.org - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/privacy.sexy b/apps/privacy.sexy new file mode 100644 index 000000000..11cfa4f6b --- /dev/null +++ b/apps/privacy.sexy @@ -0,0 +1,4 @@ +# privacy.sexy +Enforce privacy & security best-practices on Windows and macOS (and Linux), because privacy is sexy. +# SITES: https://privacy.sexy +# SOURCES: https://github.com/undergroundwires/privacy.sexy \ No newline at end of file diff --git a/apps/privacy.sexy.md b/apps/privacy.sexy.md deleted file mode 100644 index ed835dba0..000000000 --- a/apps/privacy.sexy.md +++ /dev/null @@ -1,10 +0,0 @@ -# PRIVACY.SEXY - - Enforce privacy & security best-practices on Windows and macOS (and Linux), because privacy is sexy. - - SITE: https://privacy.sexy - - SOURCE: https://github.com/undergroundwires/privacy.sexy - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/privaxy b/apps/privaxy new file mode 100644 index 000000000..09eaa1499 --- /dev/null +++ b/apps/privaxy @@ -0,0 +1,3 @@ +# privaxy +Privaxy is the next generation tracker and advertisement blocker. It blocks ads and trackers by MITMing HTTP(s) traffic. +# SITES: https://github.com/Barre/privaxy \ No newline at end of file diff --git a/apps/privaxy.md b/apps/privaxy.md deleted file mode 100644 index 6f9687402..000000000 --- a/apps/privaxy.md +++ /dev/null @@ -1,8 +0,0 @@ -# PRIVAXY - - Privaxy is the next generation tracker and advertisement blocker. It blocks ads and trackers by MITMing HTTP(s) traffic. - - SITE: https://github.com/Barre/privaxy - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/probe-desktop b/apps/probe-desktop new file mode 100644 index 000000000..385b63764 --- /dev/null +++ b/apps/probe-desktop @@ -0,0 +1,3 @@ +# probe-desktop +The next generation OONI Probe desktop app. +# SITES: https://github.com/ooni/probe-desktop \ No newline at end of file diff --git a/apps/probe-desktop.md b/apps/probe-desktop.md deleted file mode 100644 index 4f07c5368..000000000 --- a/apps/probe-desktop.md +++ /dev/null @@ -1,8 +0,0 @@ -# PROBE-DESKTOP - - The next generation OONI Probe desktop app. - - SITE: https://github.com/ooni/probe-desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/procdepmonitor b/apps/procdepmonitor new file mode 100644 index 000000000..8a1675b73 --- /dev/null +++ b/apps/procdepmonitor @@ -0,0 +1,3 @@ +# procdepmonitor +Сross-platform program with GUI for obtaining information about loaded process dependencies. +# SITES: https://github.com/3dproger/ProcDepMonitor \ No newline at end of file diff --git a/apps/procdepmonitor.md b/apps/procdepmonitor.md deleted file mode 100644 index 267ec3b64..000000000 --- a/apps/procdepmonitor.md +++ /dev/null @@ -1,8 +0,0 @@ -# PROCDEPMONITOR - - Сross-platform program with GUI for obtaining information about loaded process dependencies. - - SITE: https://github.com/3dproger/ProcDepMonitor - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/procs b/apps/procs new file mode 100644 index 000000000..a84aa2e2d --- /dev/null +++ b/apps/procs @@ -0,0 +1,3 @@ +# procs +A modern replacement for ps written in Rust. +# SITES: https://github.com/dalance/procs \ No newline at end of file diff --git a/apps/procs.md b/apps/procs.md deleted file mode 100644 index 76d03e7e4..000000000 --- a/apps/procs.md +++ /dev/null @@ -1,8 +0,0 @@ -# PROCS - - A modern replacement for ps written in Rust. - - SITE: https://github.com/dalance/procs - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/procspin b/apps/procspin new file mode 100644 index 000000000..3dd5ad862 --- /dev/null +++ b/apps/procspin @@ -0,0 +1,3 @@ +# procspin +Linux Bash command line utility to create a process/progress animation with text and custom frame animations for silently running PIDs. +# SITES: https://github.com/Lateralus138/ProcSpin \ No newline at end of file diff --git a/apps/procspin.md b/apps/procspin.md deleted file mode 100644 index b46b1fc18..000000000 --- a/apps/procspin.md +++ /dev/null @@ -1,8 +0,0 @@ -# PROCSPIN - - Linux Bash command line utility to create a process/progress animation with text and custom frame animations for silently running PIDs. - - SITE: https://github.com/Lateralus138/ProcSpin - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/procyon b/apps/procyon new file mode 100644 index 000000000..e30fe075c --- /dev/null +++ b/apps/procyon @@ -0,0 +1,3 @@ +# procyon +Procyon Note Keeper +# SITES: https://github.com/orion-project/procyon \ No newline at end of file diff --git a/apps/procyon.md b/apps/procyon.md deleted file mode 100644 index b311e7fcc..000000000 --- a/apps/procyon.md +++ /dev/null @@ -1,8 +0,0 @@ -# PROCYON - - Procyon Note Keeper - - SITE: https://github.com/orion-project/procyon - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/programmer-browser b/apps/programmer-browser new file mode 100644 index 000000000..9f68b810d --- /dev/null +++ b/apps/programmer-browser @@ -0,0 +1,3 @@ +# programmer-browser +A fast-searching and space-saving browser specially designed for programmers. +# SITES: https://github.com/yessGlory17/programmer-browser \ No newline at end of file diff --git a/apps/programmer-browser.md b/apps/programmer-browser.md deleted file mode 100644 index b6f5eaddc..000000000 --- a/apps/programmer-browser.md +++ /dev/null @@ -1,8 +0,0 @@ -# PROGRAMMER-BROWSER - - A fast-searching and space-saving browser specially designed for programmers. - - SITE: https://github.com/yessGlory17/programmer-browser - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/promethium b/apps/promethium new file mode 100644 index 000000000..9fff720c5 --- /dev/null +++ b/apps/promethium @@ -0,0 +1,3 @@ +# promethium +Extensible, fast, and innovative Electron based web browser with Material UI design elements and built-in AdBlock. +# SITES: https://github.com/Alex313031/promethium \ No newline at end of file diff --git a/apps/promethium.md b/apps/promethium.md deleted file mode 100644 index bf629cb1a..000000000 --- a/apps/promethium.md +++ /dev/null @@ -1,8 +0,0 @@ -# PROMETHIUM - - Extensible, fast, and innovative Electron based web browser with Material UI design elements and built-in AdBlock. - - SITE: https://github.com/Alex313031/promethium - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/proofkeeper b/apps/proofkeeper new file mode 100644 index 000000000..06134ce9f --- /dev/null +++ b/apps/proofkeeper @@ -0,0 +1,3 @@ +# proofkeeper +ProofKeeper: Desktop tool to automate proof management. +# SITES: https://github.com/woleet/woleet-proofkeeper \ No newline at end of file diff --git a/apps/proofkeeper.md b/apps/proofkeeper.md deleted file mode 100644 index 3cf665434..000000000 --- a/apps/proofkeeper.md +++ /dev/null @@ -1,8 +0,0 @@ -# PROOFKEEPER - - ProofKeeper: Desktop tool to automate proof management. - - SITE: https://github.com/woleet/woleet-proofkeeper - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/prospect-mail b/apps/prospect-mail new file mode 100644 index 000000000..3475e23b7 --- /dev/null +++ b/apps/prospect-mail @@ -0,0 +1,3 @@ +# prospect-mail +An Outlook mail desktop client powered by Electron. +# SITES: https://github.com/julian-alarcon/prospect-mail \ No newline at end of file diff --git a/apps/prospect-mail.md b/apps/prospect-mail.md deleted file mode 100644 index a16f81d73..000000000 --- a/apps/prospect-mail.md +++ /dev/null @@ -1,8 +0,0 @@ -# PROSPECT-MAIL - - An Outlook mail desktop client powered by Electron. - - SITE: https://github.com/julian-alarcon/prospect-mail - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/protocol_10 b/apps/protocol_10 new file mode 100644 index 000000000..332a212c0 --- /dev/null +++ b/apps/protocol_10 @@ -0,0 +1,3 @@ +# protocol_10 +A mod decompiler for frosty tool suite. +# SITES: https://github.com/Twig6943/protocol_10 \ No newline at end of file diff --git a/apps/protocol_10.md b/apps/protocol_10.md deleted file mode 100644 index 28d4b13e7..000000000 --- a/apps/protocol_10.md +++ /dev/null @@ -1,8 +0,0 @@ -# PROTOCOL_10 - - A mod decompiler for frosty tool suite. - - SITE: https://github.com/Twig6943/protocol_10 - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/protoman b/apps/protoman new file mode 100644 index 000000000..fcd6eed66 --- /dev/null +++ b/apps/protoman @@ -0,0 +1,3 @@ +# protoman +A Postman-like API client for protobuf-based messages. +# SITES: https://github.com/spluxx/Protoman \ No newline at end of file diff --git a/apps/protoman.md b/apps/protoman.md deleted file mode 100644 index 895e563d3..000000000 --- a/apps/protoman.md +++ /dev/null @@ -1,8 +0,0 @@ -# PROTOMAN - - A Postman-like API client for protobuf-based messages. - - SITE: https://github.com/spluxx/Protoman - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/protonmail-desktop b/apps/protonmail-desktop new file mode 100644 index 000000000..3f98aa017 --- /dev/null +++ b/apps/protonmail-desktop @@ -0,0 +1,3 @@ +# protonmail-desktop +Unofficial Electron wrapper for ProtonMail +# SITES: https://github.com/protonmail-desktop/application \ No newline at end of file diff --git a/apps/protonmail-desktop.md b/apps/protonmail-desktop.md deleted file mode 100644 index 179e6c130..000000000 --- a/apps/protonmail-desktop.md +++ /dev/null @@ -1,8 +0,0 @@ -# PROTONMAIL-DESKTOP - - Unofficial Electron wrapper for ProtonMail - - SITE: https://github.com/protonmail-desktop/application - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/protontricks b/apps/protontricks new file mode 100644 index 000000000..7b6773133 --- /dev/null +++ b/apps/protontricks @@ -0,0 +1,4 @@ +# protontricks + Unofficial AppImage of Protontricks. +# SITES: https://github.com/pkgforge-dev/protontricks-appimage +# SOURCES: https://github.com/pkgforge-dev/protontricks-appimage \ No newline at end of file diff --git a/apps/protontricks.md b/apps/protontricks.md deleted file mode 100644 index 44e76a79d..000000000 --- a/apps/protontricks.md +++ /dev/null @@ -1,8 +0,0 @@ -# PROTONTRICKS - - Unofficial AppImage of Protontricks. - - SITE: https://github.com/pkgforge-dev/protontricks-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/protonup-qt b/apps/protonup-qt new file mode 100644 index 000000000..dc7ddf44b --- /dev/null +++ b/apps/protonup-qt @@ -0,0 +1,4 @@ +# protonup-qt +Install and manage Proton-GE and Luxtorpeda for Steam and Wine-GE for Lutris with this graphical user interface. Based on AUNaseef's ProtonUp, made with Python 3 and Qt 6. +# SITES: https://davidotek.github.io/protonup-qt +# SOURCES: https://github.com/DavidoTek/ProtonUp-Qt \ No newline at end of file diff --git a/apps/protonup-qt.md b/apps/protonup-qt.md deleted file mode 100644 index a6434ca69..000000000 --- a/apps/protonup-qt.md +++ /dev/null @@ -1,10 +0,0 @@ -# PROTONUP-QT - - Install and manage Proton-GE and Luxtorpeda for Steam and Wine-GE for Lutris with this graphical user interface. Based on AUNaseef's ProtonUp, made with Python 3 and Qt 6. - - SITE: https://davidotek.github.io/protonup-qt - - SOURCE: https://github.com/DavidoTek/ProtonUp-Qt - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/proxy-master b/apps/proxy-master new file mode 100644 index 000000000..bbf382d30 --- /dev/null +++ b/apps/proxy-master @@ -0,0 +1,3 @@ +# proxy-master +Set and reset your proxy settings EVERYWHERE. +# SITES: https://github.com/Ma5t3rful/proxy-master \ No newline at end of file diff --git a/apps/proxy-master.md b/apps/proxy-master.md deleted file mode 100644 index 883b934b7..000000000 --- a/apps/proxy-master.md +++ /dev/null @@ -1,8 +0,0 @@ -# PROXY-MASTER - - Set and reset your proxy settings EVERYWHERE. - - SITE: https://github.com/Ma5t3rful/proxy-master - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/proxyman b/apps/proxyman new file mode 100644 index 000000000..e98492196 --- /dev/null +++ b/apps/proxyman @@ -0,0 +1,12 @@ +# proxyman +Modern and Delightful HTTP Debugging Proxy for Windows and Linux. + + Features: + - Intercept HTTP/HTTPS requests/responses with ease. Generating, trusting a certificate, and automatically overriding the System Proxy is never easier; + - Modern and intuitive UI; + - Multiple Filters (URL, Header, Query, Body, etc) and Content-Type Filter (JSON, Form, XML, Image, etc); + - SSL Proxying List, No Caching, Compose & Repeat, Repeat; + - Debugging Tools: Map Local, Breakpoint, Diff, etc. +# SCREENSHOTS: https://user-images.githubusercontent.com/5878421/193379597-83a23bf3-2b4d-44bb-b3d8-000cefbbffdb.jpg +# SITES: https://proxyman.io +# SOURCES: https://github.com/ProxymanApp/proxyman-windows-linux \ No newline at end of file diff --git a/apps/proxyman.md b/apps/proxyman.md deleted file mode 100644 index 4f77e4203..000000000 --- a/apps/proxyman.md +++ /dev/null @@ -1,19 +0,0 @@ -# PROXYMAN - - Modern and Delightful HTTP Debugging Proxy for Windows and Linux. - - Features: - - Intercept HTTP/HTTPS requests/responses with ease. Generating, trusting a certificate, and automatically overriding the System Proxy is never easier; - - Modern and intuitive UI; - - Multiple Filters (URL, Header, Query, Body, etc) and Content-Type Filter (JSON, Form, XML, Image, etc); - - SSL Proxying List, No Caching, Compose & Repeat, Repeat; - - Debugging Tools: Map Local, Breakpoint, Diff, etc. - - ![Screenshot](https://user-images.githubusercontent.com/5878421/193379597-83a23bf3-2b4d-44bb-b3d8-000cefbbffdb.jpg) - - SITE: https://proxyman.io - - SOURCE: https://github.com/ProxymanApp/proxyman-windows-linux - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/prusa-slicer b/apps/prusa-slicer new file mode 100644 index 000000000..bb10d6403 --- /dev/null +++ b/apps/prusa-slicer @@ -0,0 +1,4 @@ +# prusa-slicer +G-code generator for 3D printers (RepRap, Makerbot, Ultimaker etc.). +# SITES: https://www.prusa3d.com +# SOURCES: https://github.com/probonopd/PrusaSlicer \ No newline at end of file diff --git a/apps/prusa-slicer.md b/apps/prusa-slicer.md deleted file mode 100644 index 753854219..000000000 --- a/apps/prusa-slicer.md +++ /dev/null @@ -1,10 +0,0 @@ -# PRUSA-SLICER - - G-code generator for 3D printers (RepRap, Makerbot, Ultimaker etc.). - - SITE: https://www.prusa3d.com - - SOURCE: https://github.com/probonopd/PrusaSlicer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/psi+ b/apps/psi+ new file mode 100644 index 000000000..69ecb4eda --- /dev/null +++ b/apps/psi+ @@ -0,0 +1,3 @@ +# psi+ +Communicate over the XMPP network +# SITES: : https://psi-plus.com/ \ No newline at end of file diff --git a/apps/psi+.md b/apps/psi+.md deleted file mode 100644 index 979cb008b..000000000 --- a/apps/psi+.md +++ /dev/null @@ -1,8 +0,0 @@ -# PSI+ - - Communicate over the XMPP network - - SITE: : https://psi-plus.com/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pstube b/apps/pstube new file mode 100644 index 000000000..2a0fc0ef7 --- /dev/null +++ b/apps/pstube @@ -0,0 +1,3 @@ +# pstube +PsTube (formerly "FluTube") is an application to watch and download YouTube videos without ads. +# SITES: https://github.com/prateekmedia/pstube \ No newline at end of file diff --git a/apps/pstube.md b/apps/pstube.md deleted file mode 100644 index afe3d8ab4..000000000 --- a/apps/pstube.md +++ /dev/null @@ -1,8 +0,0 @@ -# PSTUBE - - PsTube (formerly "FluTube") is an application to watch and download YouTube videos without ads. - - SITE: https://github.com/prateekmedia/pstube - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/psydoom b/apps/psydoom new file mode 100644 index 000000000..723ed1a38 --- /dev/null +++ b/apps/psydoom @@ -0,0 +1,3 @@ +# psydoom +A backport of PSX Doom to PC. +# SITES: https://github.com/BodbDearg/PsyDoom \ No newline at end of file diff --git a/apps/psydoom.md b/apps/psydoom.md deleted file mode 100644 index 31cb14f66..000000000 --- a/apps/psydoom.md +++ /dev/null @@ -1,8 +0,0 @@ -# PSYDOOM - - A backport of PSX Doom to PC. - - SITE: https://github.com/BodbDearg/PsyDoom - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ptx b/apps/ptx new file mode 100644 index 000000000..207895347 --- /dev/null +++ b/apps/ptx @@ -0,0 +1,4 @@ +# ptx + Permuted index of file contents. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/ptx.md b/apps/ptx.md deleted file mode 100644 index 3d5f1c09a..000000000 --- a/apps/ptx.md +++ /dev/null @@ -1,8 +0,0 @@ -# PTX - - Permuted index of file contents. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/ptyxis b/apps/ptyxis new file mode 100644 index 000000000..400207101 --- /dev/null +++ b/apps/ptyxis @@ -0,0 +1,4 @@ +# ptyxis + Unofficial AppImage of Ptyxis terminal. +# SITES: https://github.com/pkgforge-dev/ptyxis-appimage +# SOURCES: https://github.com/pkgforge-dev/ptyxis-appimage \ No newline at end of file diff --git a/apps/ptyxis.md b/apps/ptyxis.md deleted file mode 100644 index 4674918ac..000000000 --- a/apps/ptyxis.md +++ /dev/null @@ -1,8 +0,0 @@ -# PTYXIS - - Unofficial AppImage of Ptyxis terminal. - - SITE: https://github.com/pkgforge-dev/ptyxis-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/publii b/apps/publii new file mode 100644 index 000000000..153c78a40 --- /dev/null +++ b/apps/publii @@ -0,0 +1,4 @@ +# publii +Publii is a desktop-based CMS for Windows, Mac and Linux that makes creating static websites fast and hassle-free, even for beginners. +# SITES: https://getpublii.com +# SOURCES: https://github.com/GetPublii/Publii \ No newline at end of file diff --git a/apps/publii.md b/apps/publii.md deleted file mode 100644 index ce63df0a9..000000000 --- a/apps/publii.md +++ /dev/null @@ -1,10 +0,0 @@ -# PUBLII - - Publii is a desktop-based CMS for Windows, Mac and Linux that makes creating static websites fast and hassle-free, even for beginners. - - SITE: https://getpublii.com - - SOURCE: https://github.com/GetPublii/Publii - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/puddletag b/apps/puddletag new file mode 100644 index 000000000..0ddc7c1eb --- /dev/null +++ b/apps/puddletag @@ -0,0 +1,3 @@ +# puddletag +Unofficial AppImage of puddletag. +# SITES: https://github.com/pkgforge-dev/puddletag-AppImage \ No newline at end of file diff --git a/apps/puddletag.md b/apps/puddletag.md deleted file mode 100644 index f07f6bcd4..000000000 --- a/apps/puddletag.md +++ /dev/null @@ -1,8 +0,0 @@ -# PUDDLETAG - - Unofficial AppImage of puddletag. - - SITE: https://github.com/pkgforge-dev/puddletag-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pullp b/apps/pullp new file mode 100644 index 000000000..0156f1536 --- /dev/null +++ b/apps/pullp @@ -0,0 +1,3 @@ +# pullp +Pull request monitoring app for Github +# SITES: https://github.com/rkclark/pullp \ No newline at end of file diff --git a/apps/pullp.md b/apps/pullp.md deleted file mode 100644 index a02d2e7a4..000000000 --- a/apps/pullp.md +++ /dev/null @@ -1,8 +0,0 @@ -# PULLP - - Pull request monitoring app for Github - - SITE: https://github.com/rkclark/pullp - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pulsar b/apps/pulsar new file mode 100644 index 000000000..b5c115399 --- /dev/null +++ b/apps/pulsar @@ -0,0 +1,3 @@ +# pulsar +A Community-led Hyper-Hackable Text Editor +# SITES: https://github.com/pulsar-edit/pulsar \ No newline at end of file diff --git a/apps/pulsar.md b/apps/pulsar.md deleted file mode 100644 index 6868c6bad..000000000 --- a/apps/pulsar.md +++ /dev/null @@ -1,8 +0,0 @@ -# PULSAR - - A Community-led Hyper-Hackable Text Editor - - SITE: https://github.com/pulsar-edit/pulsar - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pulse b/apps/pulse new file mode 100644 index 000000000..0b31c2de8 --- /dev/null +++ b/apps/pulse @@ -0,0 +1,3 @@ +# pulse +Pulse desktop client +# SITES: https://github.com/pulsedownloader/releases \ No newline at end of file diff --git a/apps/pulse.md b/apps/pulse.md deleted file mode 100644 index 1ded9386d..000000000 --- a/apps/pulse.md +++ /dev/null @@ -1,8 +0,0 @@ -# PULSE - - Pulse desktop client - - SITE: https://github.com/pulsedownloader/releases - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pulseview b/apps/pulseview new file mode 100644 index 000000000..8b981a170 --- /dev/null +++ b/apps/pulseview @@ -0,0 +1,3 @@ +# pulseview +PulseView (sometimes abbreviated as "PV") is a Qt based logic analyzer, oscilloscope and MSO GUI for sigrok. +# SITES: https://github.com/sigrokproject/pulseview \ No newline at end of file diff --git a/apps/pulseview.md b/apps/pulseview.md deleted file mode 100644 index eb1d05d85..000000000 --- a/apps/pulseview.md +++ /dev/null @@ -1,8 +0,0 @@ -# PULSEVIEW - - PulseView (sometimes abbreviated as "PV") is a Qt based logic analyzer, oscilloscope and MSO GUI for sigrok. - - SITE: https://github.com/sigrokproject/pulseview - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/punes b/apps/punes new file mode 100644 index 000000000..44ca0c24a --- /dev/null +++ b/apps/punes @@ -0,0 +1,3 @@ +# punes +Qt-based Nintendo Entertaiment System emulator and NSF/NSF2/NSFe Music Player. +# SITES: https://github.com/punesemu/puNES \ No newline at end of file diff --git a/apps/punes.md b/apps/punes.md deleted file mode 100644 index 48ab9cb0f..000000000 --- a/apps/punes.md +++ /dev/null @@ -1,8 +0,0 @@ -# PUNES - - Qt-based Nintendo Entertaiment System emulator and NSF/NSF2/NSFe Music Player. - - SITE: https://github.com/punesemu/puNES - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/puppetry b/apps/puppetry new file mode 100644 index 000000000..d2e59957b --- /dev/null +++ b/apps/puppetry @@ -0,0 +1,3 @@ +# puppetry +App to build end-to-end automation tests without a line of code +# SITES: https://github.com/dsheiko/puppetry \ No newline at end of file diff --git a/apps/puppetry.md b/apps/puppetry.md deleted file mode 100644 index c19c70274..000000000 --- a/apps/puppetry.md +++ /dev/null @@ -1,8 +0,0 @@ -# PUPPETRY - - App to build end-to-end automation tests without a line of code - - SITE: https://github.com/dsheiko/puppetry - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/puush-qt b/apps/puush-qt new file mode 100644 index 000000000..6d1e98d4c --- /dev/null +++ b/apps/puush-qt @@ -0,0 +1,3 @@ +# puush-qt +A GUI frontend for puush on Linux (and Windows). This will create a system tray icon and contains similar options to the puush application before moving to ShareX. +# SITES: https://github.com/jplsek/puush-qt \ No newline at end of file diff --git a/apps/puush-qt.md b/apps/puush-qt.md deleted file mode 100644 index d5a9e3709..000000000 --- a/apps/puush-qt.md +++ /dev/null @@ -1,7 +0,0 @@ -# PUUSH-QT - - A GUI frontend for puush on Linux (and Windows). This will create a system tray icon and contains similar options to the puush application before moving to ShareX. - - SITE: https://github.com/jplsek/puush-qt - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pwd b/apps/pwd new file mode 100644 index 000000000..adee8ced4 --- /dev/null +++ b/apps/pwd @@ -0,0 +1,4 @@ +# pwd + Print name of current/working directory. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/pwd.md b/apps/pwd.md deleted file mode 100644 index 3c3c8679b..000000000 --- a/apps/pwd.md +++ /dev/null @@ -1,8 +0,0 @@ -# PWD - - Print name of current/working directory. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/pyappimage b/apps/pyappimage new file mode 100644 index 000000000..1facefde3 --- /dev/null +++ b/apps/pyappimage @@ -0,0 +1,3 @@ +# pyappimage +Python app generated using PyAppImage +# SITES: https://github.com/srevinsaju/pyappimage \ No newline at end of file diff --git a/apps/pyappimage.md b/apps/pyappimage.md deleted file mode 100644 index a00a698fe..000000000 --- a/apps/pyappimage.md +++ /dev/null @@ -1,8 +0,0 @@ -# PYAPPIMAGE - - Python app generated using PyAppImage - - SITE: https://github.com/srevinsaju/pyappimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pycharm b/apps/pycharm new file mode 100644 index 000000000..d5c24cb4b --- /dev/null +++ b/apps/pycharm @@ -0,0 +1,3 @@ +# pycharm +PyCharm-community-edition in AppImage +# SITES: https://github.com/ryuuzaki42/PyCharm-community-edition_AppImage \ No newline at end of file diff --git a/apps/pycharm.md b/apps/pycharm.md deleted file mode 100644 index eff75a540..000000000 --- a/apps/pycharm.md +++ /dev/null @@ -1,8 +0,0 @@ -# PYCHARM - - PyCharm-community-edition in AppImage - - SITE: https://github.com/ryuuzaki42/PyCharm-community-edition_AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pyfa b/apps/pyfa new file mode 100644 index 000000000..bd0242498 --- /dev/null +++ b/apps/pyfa @@ -0,0 +1,6 @@ +# pyfa +Python fitting assistant, cross-platform fitting tool for EVE Online. + + Pyfa, short for python fitting assistant, allows you to create, experiment with, and save ship fittings without being in game. Open source and written in Python, it is available on any platform where Python 3 and wxWidgets are available, including Windows, macOS, and Linux. +# SCREENSHOTS: https://user-images.githubusercontent.com/275209/66119992-864be080-e5e2-11e9-994a-3a4368c9fad7.png +# SITES: https://github.com/pyfa-org/Pyfa \ No newline at end of file diff --git a/apps/pyfa.md b/apps/pyfa.md deleted file mode 100644 index a912feb09..000000000 --- a/apps/pyfa.md +++ /dev/null @@ -1,12 +0,0 @@ -# PYFA - - Python fitting assistant, cross-platform fitting tool for EVE Online. - - Pyfa, short for python fitting assistant, allows you to create, experiment with, and save ship fittings without being in game. Open source and written in Python, it is available on any platform where Python 3 and wxWidgets are available, including Windows, macOS, and Linux. - - ![Screenshot](https://user-images.githubusercontent.com/275209/66119992-864be080-e5e2-11e9-994a-3a4368c9fad7.png) - - SITE: https://github.com/pyfa-org/Pyfa - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/pyglossary b/apps/pyglossary new file mode 100644 index 000000000..8ec55af98 --- /dev/null +++ b/apps/pyglossary @@ -0,0 +1,3 @@ +# pyglossary +Unofficial, A tool for converting dictionary files aka glossaries. +# SITES: https://github.com/pkgforge-dev/PyGlossary-AppImage \ No newline at end of file diff --git a/apps/pyglossary.md b/apps/pyglossary.md deleted file mode 100644 index 532ad2cd7..000000000 --- a/apps/pyglossary.md +++ /dev/null @@ -1,8 +0,0 @@ -# PYGLOSSARY - - Unofficial, A tool for converting dictionary files aka glossaries. - - SITE: https://github.com/pkgforge-dev/PyGlossary-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/python b/apps/python new file mode 100644 index 000000000..7d4e9aad0 --- /dev/null +++ b/apps/python @@ -0,0 +1,5 @@ +# python +AppImage distributions of Python, an interactive high-level object-oriented language. + + To install multiple versions, use the dedicated third-party database named "python" in "am-extras". See "am -h" or "appman -h". +# SITES: https://github.com/niess/python-appimage \ No newline at end of file diff --git a/apps/python.md b/apps/python.md deleted file mode 100644 index 6e4378c95..000000000 --- a/apps/python.md +++ /dev/null @@ -1,10 +0,0 @@ -# PYTHON - - AppImage distributions of Python, an interactive high-level object-oriented language. - - To install multiple versions, use the dedicated third-party database named "python" in "am-extras". See "am -h" or "appman -h". - - SITE: https://github.com/niess/python-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/qaddapp b/apps/qaddapp new file mode 100644 index 000000000..9ee182226 --- /dev/null +++ b/apps/qaddapp @@ -0,0 +1,3 @@ +# qaddapp +Qt5 Gui app that helps you add AppImages and binary archives into your Desktop environment +# SITES: https://github.com/smokejohn/qaddapp \ No newline at end of file diff --git a/apps/qaddapp.md b/apps/qaddapp.md deleted file mode 100644 index b09407f2a..000000000 --- a/apps/qaddapp.md +++ /dev/null @@ -1,8 +0,0 @@ -# QADDAPP - - Qt5 Gui app that helps you add AppImages and binary archives into your Desktop environment - - SITE: https://github.com/smokejohn/qaddapp - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/qarma b/apps/qarma new file mode 100644 index 000000000..ca74c6cf8 --- /dev/null +++ b/apps/qarma @@ -0,0 +1,3 @@ +# qarma +Unofficial, Qarma is a tool to create dialog boxes, based on Qt. It's a clone of Zenity. +# SITES: https://github.com/pkgforge-dev/qarma-AppImage \ No newline at end of file diff --git a/apps/qarma.md b/apps/qarma.md deleted file mode 100644 index 7e71dae0b..000000000 --- a/apps/qarma.md +++ /dev/null @@ -1,8 +0,0 @@ -# QARMA - - Unofficial, Qarma is a tool to create dialog boxes, based on Qt. It's a clone of Zenity. - - SITE: https://github.com/pkgforge-dev/qarma-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/qaterialgallery b/apps/qaterialgallery new file mode 100644 index 000000000..3523cb5e2 --- /dev/null +++ b/apps/qaterialgallery @@ -0,0 +1,3 @@ +# qaterialgallery +Demonstrate Qaterial library. +# SITES: https://github.com/OlivierLDff/QaterialGallery \ No newline at end of file diff --git a/apps/qaterialgallery.md b/apps/qaterialgallery.md deleted file mode 100644 index b3813f359..000000000 --- a/apps/qaterialgallery.md +++ /dev/null @@ -1,8 +0,0 @@ -# QATERIALGALLERY - - Demonstrate Qaterial library. - - SITE: https://github.com/OlivierLDff/QaterialGallery - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/qaterialhotreload b/apps/qaterialhotreload new file mode 100644 index 000000000..7278bdd3c --- /dev/null +++ b/apps/qaterialhotreload @@ -0,0 +1,3 @@ +# qaterialhotreload +Qml HotReload software. +# SITES: https://github.com/OlivierLDff/QaterialHotReload \ No newline at end of file diff --git a/apps/qaterialhotreload.md b/apps/qaterialhotreload.md deleted file mode 100644 index 48deb506b..000000000 --- a/apps/qaterialhotreload.md +++ /dev/null @@ -1,8 +0,0 @@ -# QATERIALHOTRELOAD - - Qml HotReload software. - - SITE: https://github.com/OlivierLDff/QaterialHotReload - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/qawl b/apps/qawl new file mode 100644 index 000000000..a2b46fade --- /dev/null +++ b/apps/qawl @@ -0,0 +1,3 @@ +# qawl +Read the Holy Qur’ān whenever, wherever, however you like. +# SITES: https://github.com/mr-islam/qawl \ No newline at end of file diff --git a/apps/qawl.md b/apps/qawl.md deleted file mode 100644 index af67d1747..000000000 --- a/apps/qawl.md +++ /dev/null @@ -1,8 +0,0 @@ -# QAWL - - Read the Holy Qur’ān whenever, wherever, however you like. - - SITE: https://github.com/mr-islam/qawl - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/qbittorrent b/apps/qbittorrent new file mode 100644 index 000000000..4998218d1 --- /dev/null +++ b/apps/qbittorrent @@ -0,0 +1,6 @@ +# qbittorrent +qBittorrent - A powerful QT-based Bittorrent Client. + + This is the OFFICIAL AppImage supported! +# SCREENSHOTS: https://dl.flathub.org/repo/screenshots/org.qbittorrent.qBittorrent-stable/752x423/org.qbittorrent.qBittorrent-4f64b7d22c1d90d387babf25be71cd19.png +# SITES: https://www.qbittorrent.org \ No newline at end of file diff --git a/apps/qbittorrent-enhanced b/apps/qbittorrent-enhanced new file mode 100644 index 000000000..dcc44d4d2 --- /dev/null +++ b/apps/qbittorrent-enhanced @@ -0,0 +1,3 @@ +# qbittorrent-enhanced +[Unofficial] qBittorrent Enhanced, based on qBittorrent. +# SITES: https://github.com/c0re100/qBittorrent-Enhanced-Edition \ No newline at end of file diff --git a/apps/qbittorrent-enhanced.md b/apps/qbittorrent-enhanced.md deleted file mode 100644 index 8de44b471..000000000 --- a/apps/qbittorrent-enhanced.md +++ /dev/null @@ -1,8 +0,0 @@ -# QBITTORRENT-ENHANCED - - [Unofficial] qBittorrent Enhanced, based on qBittorrent. - - SITE: https://github.com/abcfy2/qBittorrent-Enhanced-Edition - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/qbittorrent.md b/apps/qbittorrent.md deleted file mode 100644 index 66e2e86f5..000000000 --- a/apps/qbittorrent.md +++ /dev/null @@ -1,12 +0,0 @@ -# QBITTORRENT - - qBittorrent - A powerful QT-based Bittorrent Client. - - This is the OFFICIAL AppImage supported! - - ![Screenshot](https://dl.flathub.org/repo/screenshots/org.qbittorrent.qBittorrent-stable/752x423/org.qbittorrent.qBittorrent-4f64b7d22c1d90d387babf25be71cd19.png) - - SITE: https://www.qbittorrent.org - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/qdiskinfo b/apps/qdiskinfo new file mode 100644 index 000000000..608ca04cd --- /dev/null +++ b/apps/qdiskinfo @@ -0,0 +1,3 @@ +# qdiskinfo +QDiskInfo is a frontend for smartctl (part of the smartmontools package). It provides a user experience similar to CrystalDiskInfo. It shows the SMART (Self-Monitoring, Analysis, and Reporting Technology) data of modern hard disk drives. +# SITES: https://github.com/edisionnano/QDiskInfo \ No newline at end of file diff --git a/apps/qdiskinfo.md b/apps/qdiskinfo.md deleted file mode 100644 index 0c05aedb9..000000000 --- a/apps/qdiskinfo.md +++ /dev/null @@ -1,8 +0,0 @@ -# QDISKINFO - - QDiskInfo is a frontend for smartctl (part of the smartmontools package). It provides a user experience similar to CrystalDiskInfo. It shows the SMART (Self-Monitoring, Analysis, and Reporting Technology) data of modern hard disk drives. - - SITE: https://github.com/edisionnano/QDiskInfo - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/qdriverstation b/apps/qdriverstation new file mode 100644 index 000000000..260f0eec3 --- /dev/null +++ b/apps/qdriverstation @@ -0,0 +1,3 @@ +# qdriverstation +Open-source alternative to the FRC Driver Station +# SITES: https://github.com/FRC-Utilities/QDriverStation \ No newline at end of file diff --git a/apps/qdriverstation.md b/apps/qdriverstation.md deleted file mode 100644 index 7bb551394..000000000 --- a/apps/qdriverstation.md +++ /dev/null @@ -1,8 +0,0 @@ -# QDRIVERSTATION - - Open-source alternative to the FRC Driver Station - - SITE: https://github.com/FRC-Utilities/QDriverStation - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/qelectrotech b/apps/qelectrotech new file mode 100644 index 000000000..90697fb8e --- /dev/null +++ b/apps/qelectrotech @@ -0,0 +1,3 @@ +# qelectrotech +Edit electrical diagrams. +# SITES: https://github.com/qelectrotech/qelectrotech-source-mirror \ No newline at end of file diff --git a/apps/qelectrotech.md b/apps/qelectrotech.md deleted file mode 100644 index bdd72dd97..000000000 --- a/apps/qelectrotech.md +++ /dev/null @@ -1,8 +0,0 @@ -# QELECTROTECH - - Edit electrical diagrams. - - SITE: https://github.com/qelectrotech/qelectrotech-source-mirror - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/qemu b/apps/qemu new file mode 100644 index 000000000..689dd6bb6 --- /dev/null +++ b/apps/qemu @@ -0,0 +1,3 @@ +# qemu +Unofficial, a generic and open source machine & userspace emulator and virtualizer. +# SITES: \ No newline at end of file diff --git a/apps/qemu-ppc b/apps/qemu-ppc new file mode 100644 index 000000000..a7ffdbb78 --- /dev/null +++ b/apps/qemu-ppc @@ -0,0 +1,3 @@ +# qemu-ppc +Lets you run PowerPC operating systems on 64-bit Intel Linux hosts. +# SITES: https://github.com/probonopd/qemu-ppc \ No newline at end of file diff --git a/apps/qemu-ppc.md b/apps/qemu-ppc.md deleted file mode 100644 index 126ffefb8..000000000 --- a/apps/qemu-ppc.md +++ /dev/null @@ -1,8 +0,0 @@ -# QEMU-PPC - - Lets you run PowerPC operating systems on 64-bit Intel Linux hosts. - - SITE: https://github.com/probonopd/qemu-ppc - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/qemu.md b/apps/qemu.md deleted file mode 100644 index 45c73ff7a..000000000 --- a/apps/qemu.md +++ /dev/null @@ -1,10 +0,0 @@ -# QEMU - - Unofficial, a generic and open source machine & userspace emulator and virtualizer. - - ANYLINUX APPIMAGE: https://github.com/pkgforge-dev/QEMU-AppImage - - CLASSIC APPIMAGE: https://github.com/lucasmz1/Qemu_Appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/qflipper b/apps/qflipper new file mode 100644 index 000000000..5c0bda8a3 --- /dev/null +++ b/apps/qflipper @@ -0,0 +1,3 @@ +# qflipper +Flipper Zero is a portable multi-tool for pentesters and geeks in a toy-like body. It loves hacking digital stuff, such as radio protocols, access control systems, hardware, and more. It's fully open-source and customizable, so you can extend it in whatever way you like. +# SITES: https://flipperzero.one \ No newline at end of file diff --git a/apps/qflipper.md b/apps/qflipper.md deleted file mode 100644 index e6f88439f..000000000 --- a/apps/qflipper.md +++ /dev/null @@ -1,8 +0,0 @@ -# QFLIPPER - - Flipper Zero is a portable multi-tool for pentesters and geeks in a toy-like body. It loves hacking digital stuff, such as radio protocols, access control systems, hardware, and more. It's fully open-source and customizable, so you can extend it in whatever way you like. - - SITE: https://flipperzero.one - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/qfsm b/apps/qfsm new file mode 100644 index 000000000..7ac3863d5 --- /dev/null +++ b/apps/qfsm @@ -0,0 +1,3 @@ +# qfsm +Qt Finite State Machine Designer +# SITES: https://github.com/AaronErhardt/qfsm \ No newline at end of file diff --git a/apps/qfsm.md b/apps/qfsm.md deleted file mode 100644 index d3eb3c66e..000000000 --- a/apps/qfsm.md +++ /dev/null @@ -1,8 +0,0 @@ -# QFSM - - Qt Finite State Machine Designer - - SITE: https://github.com/AaronErhardt/qfsm - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/qgroundcontrol b/apps/qgroundcontrol new file mode 100644 index 000000000..829b933da --- /dev/null +++ b/apps/qgroundcontrol @@ -0,0 +1,3 @@ +# qgroundcontrol +Ground control for unmanned vehicles. +# SITES: https://github.com/mavlink/qgroundcontrol \ No newline at end of file diff --git a/apps/qgroundcontrol.md b/apps/qgroundcontrol.md deleted file mode 100644 index 54711d3dc..000000000 --- a/apps/qgroundcontrol.md +++ /dev/null @@ -1,8 +0,0 @@ -# QGROUNDCONTROL - - Ground control for unmanned vehicles. - - SITE: https://github.com/mavlink/qgroundcontrol - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/qikqr b/apps/qikqr new file mode 100644 index 000000000..fabd5c900 --- /dev/null +++ b/apps/qikqr @@ -0,0 +1,3 @@ +# qikqr +Minimal desktop app to create QR codes. +# SITES: https://github.com/deep5050/qikQR \ No newline at end of file diff --git a/apps/qikqr.md b/apps/qikqr.md deleted file mode 100644 index fb0861863..000000000 --- a/apps/qikqr.md +++ /dev/null @@ -1,8 +0,0 @@ -# QIKQR - - Minimal desktop app to create QR codes. - - SITE: https://github.com/deep5050/qikQR - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/qimgv b/apps/qimgv new file mode 100644 index 000000000..57ac0bc77 --- /dev/null +++ b/apps/qimgv @@ -0,0 +1,3 @@ +# qimgv +Unofficial, Image viewer. Fast, easy to use. Optional video support. +# SITES: https://github.com/pkgforge-dev/Qimgv-AppImage \ No newline at end of file diff --git a/apps/qimgv.md b/apps/qimgv.md deleted file mode 100644 index a5ae32562..000000000 --- a/apps/qimgv.md +++ /dev/null @@ -1,8 +0,0 @@ -# QIMGV - - Unofficial, Image viewer. Fast, easy to use. Optional video support. - - SITE: https://github.com/pkgforge-dev/Qimgv-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/qmasterpassword b/apps/qmasterpassword new file mode 100644 index 000000000..79b7c75d4 --- /dev/null +++ b/apps/qmasterpassword @@ -0,0 +1,6 @@ +# qmasterpassword +qMasterPassword is a password manager based on Qt. Access all your passwords using only a single master password. But in contrast to other managers it does not store any passwords: Unique passwords are generated from the master password and a site name. + + This means you automatically get different passwords for each account and there is no password file that can be lost or get stolen. There is also no need to trust any online password service. +# SCREENSHOTS: https://github.com/bkueng/qMasterPassword/blob/main/screenshots/main_window.png +# SITES: https://github.com/bkueng/qMasterPassword \ No newline at end of file diff --git a/apps/qmasterpassword.md b/apps/qmasterpassword.md deleted file mode 100644 index 94b725eba..000000000 --- a/apps/qmasterpassword.md +++ /dev/null @@ -1,12 +0,0 @@ -# QMASTERPASSWORD - - qMasterPassword is a password manager based on Qt. Access all your passwords using only a single master password. But in contrast to other managers it does not store any passwords: Unique passwords are generated from the master password and a site name. - - This means you automatically get different passwords for each account and there is no password file that can be lost or get stolen. There is also no need to trust any online password service. - - ![Screenshot](https://github.com/bkueng/qMasterPassword/blob/main/screenshots/main_window.png) - - SITE: https://github.com/bkueng/qMasterPassword - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/qmediathekview b/apps/qmediathekview new file mode 100644 index 000000000..3edb8346c --- /dev/null +++ b/apps/qmediathekview @@ -0,0 +1,3 @@ +# qmediathekview +An alternative front-end to the MediathekView database +# SITES: https://github.com/adamreichold/QMediathekView \ No newline at end of file diff --git a/apps/qmediathekview.md b/apps/qmediathekview.md deleted file mode 100644 index eb48caf8a..000000000 --- a/apps/qmediathekview.md +++ /dev/null @@ -1,8 +0,0 @@ -# QMEDIATHEKVIEW - - An alternative front-end to the MediathekView database - - SITE: https://github.com/adamreichold/QMediathekView - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/qmidictl b/apps/qmidictl new file mode 100644 index 000000000..01e3b661c --- /dev/null +++ b/apps/qmidictl @@ -0,0 +1,3 @@ +# qmidictl +MIDI Remote Controller via UDP/IP Multicast +# SITES: https://qmidictl.sourceforge.io \ No newline at end of file diff --git a/apps/qmidictl.md b/apps/qmidictl.md deleted file mode 100644 index ad85a2bd1..000000000 --- a/apps/qmidictl.md +++ /dev/null @@ -1,8 +0,0 @@ -# QMIDICTL - - MIDI Remote Controller via UDP/IP Multicast - - SITE: https://qmidictl.sourceforge.io - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/qmidinet b/apps/qmidinet new file mode 100644 index 000000000..a1af2d507 --- /dev/null +++ b/apps/qmidinet @@ -0,0 +1,3 @@ +# qmidinet +QmidiNet is a MIDI Network Gateway via UDP/IP Multicast +# SITES: https://qmidinet.sourceforge.io \ No newline at end of file diff --git a/apps/qmidinet.md b/apps/qmidinet.md deleted file mode 100644 index 948dd3897..000000000 --- a/apps/qmidinet.md +++ /dev/null @@ -1,8 +0,0 @@ -# QMIDINET - - QmidiNet is a MIDI Network Gateway via UDP/IP Multicast - - SITE: https://qmidinet.sourceforge.io - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/qmmp b/apps/qmmp new file mode 100644 index 000000000..855fe4b09 --- /dev/null +++ b/apps/qmmp @@ -0,0 +1,3 @@ +# qmmp +Unofficial, Qt-based multimedia player. +# SITES: https://github.com/pkgforge-dev/Qmmp-AppImage \ No newline at end of file diff --git a/apps/qmmp.md b/apps/qmmp.md deleted file mode 100644 index 197e48bb9..000000000 --- a/apps/qmmp.md +++ /dev/null @@ -1,8 +0,0 @@ -# QMMP - - Unofficial, Qt-based multimedia player. - - SITE: https://github.com/pkgforge-dev/Qmmp-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/qmplay2 b/apps/qmplay2 new file mode 100644 index 000000000..ddf894f1d --- /dev/null +++ b/apps/qmplay2 @@ -0,0 +1,3 @@ +# qmplay2 +QMPlay2 is a video and audio player which can play most formats and codecs. +# SITES: https://github.com/zaps166/QMPlay2 \ No newline at end of file diff --git a/apps/qmplay2-enhanced b/apps/qmplay2-enhanced new file mode 100644 index 000000000..b15b71b8e --- /dev/null +++ b/apps/qmplay2-enhanced @@ -0,0 +1,3 @@ +# qmplay2-enhanced +Unofficial, a video and audio player which can play most formats and codecs. +# SITES: https://github.com/pkgforge-dev/QMPlay2-AppImage-Enhanced \ No newline at end of file diff --git a/apps/qmplay2-enhanced.md b/apps/qmplay2-enhanced.md deleted file mode 100644 index 0beeb6422..000000000 --- a/apps/qmplay2-enhanced.md +++ /dev/null @@ -1,8 +0,0 @@ -# QMPLAY2-ENHANCED - - Unofficial, a video and audio player which can play most formats and codecs. - - SITE: https://github.com/pkgforge-dev/QMPlay2-AppImage-Enhanced - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/qmplay2.md b/apps/qmplay2.md deleted file mode 100644 index 36f7a9df0..000000000 --- a/apps/qmplay2.md +++ /dev/null @@ -1,8 +0,0 @@ -# QMPLAY2 - - QMPlay2 is a video and audio player which can play most formats and codecs. - - SITE: https://github.com/zaps166/QMPlay2 - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/qnapi b/apps/qnapi new file mode 100644 index 000000000..6a58c4552 --- /dev/null +++ b/apps/qnapi @@ -0,0 +1,3 @@ +# qnapi +Qt-based, multi-engine, multi-platform subtitle downloader. +# SITES: https://github.com/QNapi/qnapi \ No newline at end of file diff --git a/apps/qnapi.md b/apps/qnapi.md deleted file mode 100644 index c3cd8c7e4..000000000 --- a/apps/qnapi.md +++ /dev/null @@ -1,8 +0,0 @@ -# QNAPI - - Qt-based, multi-engine, multi-platform subtitle downloader. - - SITE: https://github.com/QNapi/qnapi - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/qortal-ui b/apps/qortal-ui new file mode 100644 index 000000000..2f5778000 --- /dev/null +++ b/apps/qortal-ui @@ -0,0 +1,3 @@ +# qortal-ui +Qortal Project - decentralize the world Data storage, communications. +# SITES: https://github.com/Qortal/qortal-ui \ No newline at end of file diff --git a/apps/qortal-ui.md b/apps/qortal-ui.md deleted file mode 100644 index 536b81cda..000000000 --- a/apps/qortal-ui.md +++ /dev/null @@ -1,8 +0,0 @@ -# QORTAL-UI - - Qortal Project - decentralize the world Data storage, communications. - - SITE: https://github.com/Qortal/qortal-ui - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/qownnotes b/apps/qownnotes new file mode 100644 index 000000000..4a6ba3bdb --- /dev/null +++ b/apps/qownnotes @@ -0,0 +1,3 @@ +# qownnotes +Plain text notepad and todo list manager with markdown support that works +# SITES: https://www.qownnotes.org \ No newline at end of file diff --git a/apps/qownnotes.md b/apps/qownnotes.md deleted file mode 100644 index 6f25fc524..000000000 --- a/apps/qownnotes.md +++ /dev/null @@ -1,8 +0,0 @@ -# QOWNNOTES - - Plain text notepad and todo list manager with markdown support that works - - SITE: https://www.qownnotes.org - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/qpdf b/apps/qpdf new file mode 100644 index 000000000..f179f6cce --- /dev/null +++ b/apps/qpdf @@ -0,0 +1,3 @@ +# qpdf +QPDF is a command-line tool and C++ library that performs content-preserving transformations on PDF files. It supports linearization, encryption, and numerous other features. It can also be used for splitting and merging files, creating PDF files (but you have to supply all the content yourself), and inspecting files for study or analysis. QPDF does not render PDFs or perform text extraction, and it does not contain higher-level interfaces for working with page contents. It is a low-level tool for working with the structure of PDF files and can be a valuable tool for anyone who wants to do programmatic or command-line-based manipulation of PDF files. +# SITES: https://github.com/qpdf/qpdf \ No newline at end of file diff --git a/apps/qpdf.md b/apps/qpdf.md deleted file mode 100644 index 9c2bac706..000000000 --- a/apps/qpdf.md +++ /dev/null @@ -1,8 +0,0 @@ -# QPDF - - QPDF is a command-line tool and C++ library that performs content-preserving transformations on PDF files. It supports linearization, encryption, and numerous other features. It can also be used for splitting and merging files, creating PDF files (but you have to supply all the content yourself), and inspecting files for study or analysis. QPDF does not render PDFs or perform text extraction, and it does not contain higher-level interfaces for working with page contents. It is a low-level tool for working with the structure of PDF files and can be a valuable tool for anyone who wants to do programmatic or command-line-based manipulation of PDF files. - - SITE: https://github.com/qpdf/qpdf - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/qppcad b/apps/qppcad new file mode 100644 index 000000000..5b81c485e --- /dev/null +++ b/apps/qppcad @@ -0,0 +1,3 @@ +# qppcad +Molecule and crystal editor written in c++ +# SITES: https://github.com/nvpopov/qppcad \ No newline at end of file diff --git a/apps/qppcad.md b/apps/qppcad.md deleted file mode 100644 index 8cc36a101..000000000 --- a/apps/qppcad.md +++ /dev/null @@ -1,8 +0,0 @@ -# QPPCAD - - Molecule and crystal editor written in c++ - - SITE: https://github.com/nvpopov/qppcad - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/qprompt b/apps/qprompt new file mode 100644 index 000000000..b4e751248 --- /dev/null +++ b/apps/qprompt @@ -0,0 +1,3 @@ +# qprompt +Personal teleprompter software for all video creators. Built with ease of use, productivity, control accuracy, and smooth performance in mind. +# SITES: https://github.com/Cuperino/QPrompt \ No newline at end of file diff --git a/apps/qprompt.md b/apps/qprompt.md deleted file mode 100644 index 6f5bd82a4..000000000 --- a/apps/qprompt.md +++ /dev/null @@ -1,8 +0,0 @@ -# QPROMPT - - Personal teleprompter software for all video creators. Built with ease of use, productivity, control accuracy, and smooth performance in mind. - - SITE: https://github.com/Cuperino/QPrompt - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/qr-code-generator b/apps/qr-code-generator new file mode 100644 index 000000000..a0d6a61ee --- /dev/null +++ b/apps/qr-code-generator @@ -0,0 +1,3 @@ +# qr-code-generator +Create custom QR Codes. You can save them as PNG image. You can change the size of the image. +# SITES: https://github.com/studioLaCosaNostra/qr-code-generator-desktop \ No newline at end of file diff --git a/apps/qr-code-generator.md b/apps/qr-code-generator.md deleted file mode 100644 index d8d6bfadd..000000000 --- a/apps/qr-code-generator.md +++ /dev/null @@ -1,8 +0,0 @@ -# QR-CODE-GENERATOR - - Create custom QR Codes. You can save them as PNG image. You can change the size of the image. - - SITE: https://github.com/studioLaCosaNostra/qr-code-generator-desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/qrscan b/apps/qrscan new file mode 100644 index 000000000..83ab05262 --- /dev/null +++ b/apps/qrscan @@ -0,0 +1,3 @@ +# qrscan +Scan a QR code in the terminal using the system camera or a given image. +# SITES: https://github.com/sayanarijit/qrscan \ No newline at end of file diff --git a/apps/qrscan.md b/apps/qrscan.md deleted file mode 100644 index ee9f1f5bc..000000000 --- a/apps/qrscan.md +++ /dev/null @@ -1,8 +0,0 @@ -# QRSCAN - - Scan a QR code in the terminal using the system camera or a given image. - - SITE: https://github.com/sayanarijit/qrscan - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/qsdrswr b/apps/qsdrswr new file mode 100644 index 000000000..023b4b125 --- /dev/null +++ b/apps/qsdrswr @@ -0,0 +1,3 @@ +# qsdrswr +Qt SWR analyser using an SDR and soapy_power. +# SITES: https://github.com/PTDreamer/qSdrSwr \ No newline at end of file diff --git a/apps/qsdrswr.md b/apps/qsdrswr.md deleted file mode 100644 index e88a056d7..000000000 --- a/apps/qsdrswr.md +++ /dev/null @@ -1,7 +0,0 @@ -# QSDRSWR - - Qt SWR analyser using an SDR and soapy_power. - - SITE: https://github.com/PTDreamer/qSdrSwr - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/qt-dab b/apps/qt-dab new file mode 100644 index 000000000..abefe8fbf --- /dev/null +++ b/apps/qt-dab @@ -0,0 +1,3 @@ +# qt-dab +Software for listening to terrestrial Digital Audio Broadcasting +# SITES: https://github.com/JvanKatwijk/qt-dab \ No newline at end of file diff --git a/apps/qt-dab.md b/apps/qt-dab.md deleted file mode 100644 index 285bf936a..000000000 --- a/apps/qt-dab.md +++ /dev/null @@ -1,8 +0,0 @@ -# QT-DAB - - Software for listening to terrestrial Digital Audio Broadcasting - - SITE: https://github.com/JvanKatwijk/qt-dab - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/qt-raster-lines b/apps/qt-raster-lines new file mode 100644 index 000000000..3b16457ec --- /dev/null +++ b/apps/qt-raster-lines @@ -0,0 +1,3 @@ +# qt-raster-lines +Creating lines between two points using rasterization with the help of two algorithms: DDA & Bresenham's +# SITES: https://github.com/humble-barnacle001/qt-raster-lines \ No newline at end of file diff --git a/apps/qt-raster-lines.md b/apps/qt-raster-lines.md deleted file mode 100644 index cb70e7d2b..000000000 --- a/apps/qt-raster-lines.md +++ /dev/null @@ -1,8 +0,0 @@ -# QT-RASTER-LINES - - Creating lines between two points using rasterization with the help of two algorithms: DDA & Bresenham's - - SITE: https://github.com/humble-barnacle001/qt-raster-lines - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/qtads b/apps/qtads new file mode 100644 index 000000000..075051179 --- /dev/null +++ b/apps/qtads @@ -0,0 +1,3 @@ +# qtads +A cross-platform, multimedia interpreter for TADS adventure games. +# SITES: https://github.com/realnc/qtads \ No newline at end of file diff --git a/apps/qtads.md b/apps/qtads.md deleted file mode 100644 index 4a3bda472..000000000 --- a/apps/qtads.md +++ /dev/null @@ -1,8 +0,0 @@ -# QTADS - - A cross-platform, multimedia interpreter for TADS adventure games. - - SITE: https://github.com/realnc/qtads - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/qtalarm b/apps/qtalarm new file mode 100644 index 000000000..ac743e164 --- /dev/null +++ b/apps/qtalarm @@ -0,0 +1,3 @@ +# qtalarm +Alarm clock for Computers. +# SITES: https://github.com/antony-jr/QTalarm-AppImage \ No newline at end of file diff --git a/apps/qtalarm.md b/apps/qtalarm.md deleted file mode 100644 index 9d5032da1..000000000 --- a/apps/qtalarm.md +++ /dev/null @@ -1,8 +0,0 @@ -# QTALARM - - Alarm clock for Computers. - - SITE: https://github.com/antony-jr/QTalarm-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/qtchan b/apps/qtchan new file mode 100644 index 000000000..e4ae161b5 --- /dev/null +++ b/apps/qtchan @@ -0,0 +1,3 @@ +# qtchan +4chan browser in qt5 +# SITES: https://github.com/siavash119/qtchan \ No newline at end of file diff --git a/apps/qtchan.md b/apps/qtchan.md deleted file mode 100644 index 893e40e15..000000000 --- a/apps/qtchan.md +++ /dev/null @@ -1,8 +0,0 @@ -# QTCHAN - - 4chan browser in qt5 - - SITE: https://github.com/siavash119/qtchan - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/qtcreator b/apps/qtcreator new file mode 100644 index 000000000..6149a2b24 --- /dev/null +++ b/apps/qtcreator @@ -0,0 +1,3 @@ +# qtcreator +Unofficial, lightweight, cross-platform integrated development environment. +# SITES: https://github.com/pkgforge-dev/QtCreator-AppImage \ No newline at end of file diff --git a/apps/qtcreator.md b/apps/qtcreator.md deleted file mode 100644 index 2dea49633..000000000 --- a/apps/qtcreator.md +++ /dev/null @@ -1,8 +0,0 @@ -# QTCREATOR - - Unofficial, lightweight, cross-platform integrated development environment. - - SITE: https://github.com/pkgforge-dev/QtCreator-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/qterminal b/apps/qterminal new file mode 100644 index 000000000..7c7babfe0 --- /dev/null +++ b/apps/qterminal @@ -0,0 +1,3 @@ +# qterminal +Unofficial. A lightweight Qt terminal emulator based on QTermWidget. +# SITES: https://github.com/pkgforge-dev/QTerminal-AppImage \ No newline at end of file diff --git a/apps/qterminal.md b/apps/qterminal.md deleted file mode 100644 index 9def46ef8..000000000 --- a/apps/qterminal.md +++ /dev/null @@ -1,8 +0,0 @@ -# QTERMINAL - - Unofficial. A lightweight Qt terminal emulator based on QTermWidget. - - SITE: https://github.com/pkgforge-dev/QTerminal-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/qtjsondiff b/apps/qtjsondiff new file mode 100644 index 000000000..c39e05fa3 --- /dev/null +++ b/apps/qtjsondiff @@ -0,0 +1,3 @@ +# qtjsondiff +Some kind of json diff widget that consists of two json viewer widgets with highlighting of jsons. +# SITES: https://github.com/coozoo/qtjsondiff \ No newline at end of file diff --git a/apps/qtjsondiff.md b/apps/qtjsondiff.md deleted file mode 100644 index 86a0b3e03..000000000 --- a/apps/qtjsondiff.md +++ /dev/null @@ -1,8 +0,0 @@ -# QTJSONDIFF - - Some kind of json diff widget that consists of two json viewer widgets with highlighting of jsons. - - SITE: https://github.com/coozoo/qtjsondiff - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/qtox b/apps/qtox new file mode 100644 index 000000000..dd592f872 --- /dev/null +++ b/apps/qtox @@ -0,0 +1,3 @@ +# qtox +Qt 5 based Tox instant messenger for secure communication. +# SITES: https://github.com/qTox/qTox-nightly-releases \ No newline at end of file diff --git a/apps/qtox.md b/apps/qtox.md deleted file mode 100644 index ec47e06b4..000000000 --- a/apps/qtox.md +++ /dev/null @@ -1,7 +0,0 @@ -# QTOX - - Qt 5 based Tox instant messenger for secure communication. - - SITE: https://github.com/qTox/qTox-nightly-releases - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/qtrfpowermeter b/apps/qtrfpowermeter new file mode 100644 index 000000000..b8267dec6 --- /dev/null +++ b/apps/qtrfpowermeter @@ -0,0 +1,3 @@ +# qtrfpowermeter +This application few hours project intended to improve usage of chinese RF power meter RF8000 as default application is terrible wi no functionality and lot of crashes. +# SITES: https://github.com/coozoo/qtrfpowermeter \ No newline at end of file diff --git a/apps/qtrfpowermeter.md b/apps/qtrfpowermeter.md deleted file mode 100644 index 18b3687f6..000000000 --- a/apps/qtrfpowermeter.md +++ /dev/null @@ -1,8 +0,0 @@ -# QTRFPOWERMETER - - This application few hours project intended to improve usage of chinese RF power meter RF8000 as default application is terrible wi no functionality and lot of crashes. - - SITE: https://github.com/coozoo/qtrfpowermeter - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/quamodbusclient b/apps/quamodbusclient new file mode 100644 index 000000000..c080ab52f --- /dev/null +++ b/apps/quamodbusclient @@ -0,0 +1,3 @@ +# quamodbusclient +Modbus to OPC UA Gateway +# SITES: https://github.com/juangburgos/QUaModbusClient \ No newline at end of file diff --git a/apps/quamodbusclient.md b/apps/quamodbusclient.md deleted file mode 100644 index 4145af0ef..000000000 --- a/apps/quamodbusclient.md +++ /dev/null @@ -1,8 +0,0 @@ -# QUAMODBUSCLIENT - - Modbus to OPC UA Gateway - - SITE: https://github.com/juangburgos/QUaModbusClient - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/quantumlauncher-enhanced b/apps/quantumlauncher-enhanced new file mode 100644 index 000000000..93c1170ba --- /dev/null +++ b/apps/quantumlauncher-enhanced @@ -0,0 +1,3 @@ +# quantumlauncher-enhanced +Unofficial, a simple, powerful Minecraft launcher. +# SITES: https://github.com/pkgforge-dev/QuantumLauncher-AppImage-Enhanced \ No newline at end of file diff --git a/apps/quantumlauncher-enhanced.md b/apps/quantumlauncher-enhanced.md deleted file mode 100644 index 620680eb4..000000000 --- a/apps/quantumlauncher-enhanced.md +++ /dev/null @@ -1,8 +0,0 @@ -# QUANTUMLAUNCHER-ENHANCED - - Unofficial, a simple, powerful Minecraft launcher. - - SITE: https://github.com/pkgforge-dev/QuantumLauncher-AppImage-Enhanced - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/quark b/apps/quark new file mode 100644 index 000000000..d55df6d49 --- /dev/null +++ b/apps/quark @@ -0,0 +1,4 @@ +# quark +One software sketchbook for rapid prototyping and development of your projects. +# SITES: https://quarkjs.io +# SOURCES: https://github.com/Nishkalkashyap/Quark-electron \ No newline at end of file diff --git a/apps/quark-player b/apps/quark-player new file mode 100644 index 000000000..47c5d8be7 --- /dev/null +++ b/apps/quark-player @@ -0,0 +1,3 @@ +# quark-player +An Electron based Web Video Services Player, supporting Netflix, Youtube, Twitch, Floatplane, Hulu and More! +# SITES: https://github.com/Alex313031/quark-player \ No newline at end of file diff --git a/apps/quark-player.md b/apps/quark-player.md deleted file mode 100644 index e9d0d3c40..000000000 --- a/apps/quark-player.md +++ /dev/null @@ -1,8 +0,0 @@ -# QUARK-PLAYER - - An Electron based Web Video Services Player, supporting Netflix, Youtube, Twitch, Floatplane, Hulu and More! - - SITE: https://github.com/Alex313031/quark-player - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/quark.md b/apps/quark.md deleted file mode 100644 index 5119928ea..000000000 --- a/apps/quark.md +++ /dev/null @@ -1,10 +0,0 @@ -# QUARK - - One software sketchbook for rapid prototyping and development of your projects. - - SITE: https://quarkjs.io - - SOURCE: https://github.com/Nishkalkashyap/Quark-electron - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/quarto-cli b/apps/quarto-cli new file mode 100644 index 000000000..b297127dc --- /dev/null +++ b/apps/quarto-cli @@ -0,0 +1,3 @@ +# quarto-cli +Open-source scientific and technical publishing system built on Pandoc. +# SITES: https://github.com/quarto-dev/quarto-cli \ No newline at end of file diff --git a/apps/quarto-cli.md b/apps/quarto-cli.md deleted file mode 100644 index ca52f8f3e..000000000 --- a/apps/quarto-cli.md +++ /dev/null @@ -1,8 +0,0 @@ -# QUARTO-CLI - - Open-source scientific and technical publishing system built on Pandoc. - - SITE: https://github.com/quarto-dev/quarto-cli - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/quaternion b/apps/quaternion new file mode 100644 index 000000000..cc2e57aba --- /dev/null +++ b/apps/quaternion @@ -0,0 +1,3 @@ +# quaternion +A Qt5-based IM client for Matrix +# SITES: https://github.com/quotient-im/Quaternion \ No newline at end of file diff --git a/apps/quaternion.md b/apps/quaternion.md deleted file mode 100644 index 476c76a59..000000000 --- a/apps/quaternion.md +++ /dev/null @@ -1,8 +0,0 @@ -# QUATERNION - - A Qt5-based IM client for Matrix - - SITE: https://github.com/quotient-im/Quaternion - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/quba b/apps/quba new file mode 100644 index 000000000..b1653188a --- /dev/null +++ b/apps/quba @@ -0,0 +1,3 @@ +# quba +A viewer for electronic invoices. +# SITES: https://github.com/ZUGFeRD/quba-viewer \ No newline at end of file diff --git a/apps/quba.md b/apps/quba.md deleted file mode 100644 index 592fb01fd..000000000 --- a/apps/quba.md +++ /dev/null @@ -1,8 +0,0 @@ -# QUBA - - A viewer for electronic invoices. - - SITE: https://github.com/ZUGFeRD/quba-viewer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/qucs-s b/apps/qucs-s new file mode 100644 index 000000000..11724b2ba --- /dev/null +++ b/apps/qucs-s @@ -0,0 +1,3 @@ +# qucs-s +An Universal GUI for Circuit Simulators +# SITES: https://github.com/ra3xdh/qucs_s \ No newline at end of file diff --git a/apps/qucs-s.md b/apps/qucs-s.md deleted file mode 100644 index af6ffd5b4..000000000 --- a/apps/qucs-s.md +++ /dev/null @@ -1,8 +0,0 @@ -# QUCS-S - - An Universal GUI for Circuit Simulators - - SITE: https://github.com/ra3xdh/qucs_s - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/quentier b/apps/quentier new file mode 100644 index 000000000..7c4b0bfe9 --- /dev/null +++ b/apps/quentier @@ -0,0 +1,3 @@ +# quentier +Note taking app integrated with Evernote +# SITES: https://github.com/d1vanov/quentier \ No newline at end of file diff --git a/apps/quentier.md b/apps/quentier.md deleted file mode 100644 index 4f5b8a5b9..000000000 --- a/apps/quentier.md +++ /dev/null @@ -1,8 +0,0 @@ -# QUENTIER - - Note taking app integrated with Evernote - - SITE: https://github.com/d1vanov/quentier - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/quick-clone b/apps/quick-clone new file mode 100644 index 000000000..c917b2f41 --- /dev/null +++ b/apps/quick-clone @@ -0,0 +1,3 @@ +# quick-clone +A small cli tool to search through gitlab and clone git-repositories in one step from the terminal without the need of a web-ui. +# SITES: https://github.com/eckon/quick-clone \ No newline at end of file diff --git a/apps/quick-clone.md b/apps/quick-clone.md deleted file mode 100644 index 424d8b39c..000000000 --- a/apps/quick-clone.md +++ /dev/null @@ -1,8 +0,0 @@ -# QUICK-CLONE - - A small cli tool to search through gitlab and clone git-repositories in one step from the terminal without the need of a web-ui. - - SITE: https://github.com/eckon/quick-clone - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/quickgui b/apps/quickgui new file mode 100644 index 000000000..d1f3bcf4b --- /dev/null +++ b/apps/quickgui @@ -0,0 +1,3 @@ +# quickgui +An elegant virtual machine manager for the desktop +# SITES: https://github.com/quickemu-project/quickgui \ No newline at end of file diff --git a/apps/quickgui.md b/apps/quickgui.md deleted file mode 100644 index da4ccc4c4..000000000 --- a/apps/quickgui.md +++ /dev/null @@ -1,8 +0,0 @@ -# QUICKGUI - - An elegant virtual machine manager for the desktop - - SITE: https://github.com/quickemu-project/quickgui - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/quicknote b/apps/quicknote new file mode 100644 index 000000000..04f9102e8 --- /dev/null +++ b/apps/quicknote @@ -0,0 +1,3 @@ +# quicknote +QuickNote helps to paste some random text or take some notes right from your taskbar! +# SITES: https://github.com/srilakshmikanthanp/quicknote \ No newline at end of file diff --git a/apps/quicknote.md b/apps/quicknote.md deleted file mode 100644 index 1b1c0b224..000000000 --- a/apps/quicknote.md +++ /dev/null @@ -1,8 +0,0 @@ -# QUICKNOTE - - QuickNote helps to paste some random text or take some notes right from your taskbar! - - SITE: https://github.com/srilakshmikanthanp/quicknote - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/quickredis b/apps/quickredis new file mode 100644 index 000000000..a6e2bf11a --- /dev/null +++ b/apps/quickredis @@ -0,0 +1,3 @@ +# quickredis +QuickRedis is a free forever Redis Desktop manager. It supports direct connection, sentinel, and cluster mode, supports multiple languages, supports hundreds of millions of keys, and has an amazing UI. Supports both Windows, Mac OS X and Linux platform. +# SITES: https://github.com/quick123official/quick_redis_blog \ No newline at end of file diff --git a/apps/quickredis.md b/apps/quickredis.md deleted file mode 100644 index e43687991..000000000 --- a/apps/quickredis.md +++ /dev/null @@ -1,8 +0,0 @@ -# QUICKREDIS - - QuickRedis is a free forever Redis Desktop manager. It supports direct connection, sentinel, and cluster mode, supports multiple languages, supports hundreds of millions of keys, and has an amazing UI. Supports both Windows, Mac OS X and Linux platform. - - SITE: https://github.com/quick123official/quick_redis_blog - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/quickshell b/apps/quickshell new file mode 100644 index 000000000..51d9c5e2f --- /dev/null +++ b/apps/quickshell @@ -0,0 +1,4 @@ +# quickshell + Unofficial AppImage of Quickshell. +# SITES: https://github.com/pkgforge-dev/quickshell-appimage +# SOURCES: https://github.com/pkgforge-dev/quickshell-appimage \ No newline at end of file diff --git a/apps/quickshell.md b/apps/quickshell.md deleted file mode 100644 index 046e10829..000000000 --- a/apps/quickshell.md +++ /dev/null @@ -1,8 +0,0 @@ -# QUICKSHELL - - Unofficial AppImage of Quickshell. - - SITE: https://github.com/pkgforge-dev/quickshell-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/quicktwitch b/apps/quicktwitch new file mode 100644 index 000000000..2b454da9a --- /dev/null +++ b/apps/quicktwitch @@ -0,0 +1,3 @@ +# quicktwitch +electron-react-redux-boilerplate +# SITES: https://github.com/mhmiles/QuickTwitch \ No newline at end of file diff --git a/apps/quicktwitch.md b/apps/quicktwitch.md deleted file mode 100644 index 57a2e8fb8..000000000 --- a/apps/quicktwitch.md +++ /dev/null @@ -1,8 +0,0 @@ -# QUICKTWITCH - - electron-react-redux-boilerplate - - SITE: https://github.com/mhmiles/QuickTwitch - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/quickviewer b/apps/quickviewer new file mode 100644 index 000000000..711a64825 --- /dev/null +++ b/apps/quickviewer @@ -0,0 +1,3 @@ +# quickviewer +A image viewer application for folders/archives, it can show images very +# SITES: https://github.com/kanryu/quickviewer \ No newline at end of file diff --git a/apps/quickviewer.md b/apps/quickviewer.md deleted file mode 100644 index 7742a3444..000000000 --- a/apps/quickviewer.md +++ /dev/null @@ -1,8 +0,0 @@ -# QUICKVIEWER - - A image viewer application for folders/archives, it can show images very - - SITE: https://github.com/kanryu/quickviewer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/quiet b/apps/quiet new file mode 100644 index 000000000..eb3e458c9 --- /dev/null +++ b/apps/quiet @@ -0,0 +1,3 @@ +# quiet +A private, p2p alternative to Slack and Discord built on Tor & IPFS. +# SITES: https://github.com/TryQuiet/quiet \ No newline at end of file diff --git a/apps/quiet.md b/apps/quiet.md deleted file mode 100644 index c0fa0d89a..000000000 --- a/apps/quiet.md +++ /dev/null @@ -1,8 +0,0 @@ -# QUIET - - A private, p2p alternative to Slack and Discord built on Tor & IPFS. - - SITE: https://github.com/TryQuiet/quiet - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/quokkagit b/apps/quokkagit new file mode 100644 index 000000000..f54e69be4 --- /dev/null +++ b/apps/quokkagit @@ -0,0 +1,3 @@ +# quokkagit +A small, TortoiseGit inspired git log viewer for linux. +# SITES: https://github.com/ballessay/quokkagit \ No newline at end of file diff --git a/apps/quokkagit.md b/apps/quokkagit.md deleted file mode 100644 index 163fa780a..000000000 --- a/apps/quokkagit.md +++ /dev/null @@ -1,7 +0,0 @@ -# QUOKKAGIT - - A small, TortoiseGit inspired git log viewer for linux. - - SITE: https://github.com/ballessay/quokkagit - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/quran-companion b/apps/quran-companion new file mode 100644 index 000000000..33120d44e --- /dev/null +++ b/apps/quran-companion @@ -0,0 +1,3 @@ +# quran-companion +Free and open-source desktop Quran reader and player. +# SITES: https://github.com/0xzer0x/quran-companion \ No newline at end of file diff --git a/apps/quran-companion.md b/apps/quran-companion.md deleted file mode 100644 index ca2144d00..000000000 --- a/apps/quran-companion.md +++ /dev/null @@ -1,8 +0,0 @@ -# QURAN-COMPANION - - Free and open-source desktop Quran reader and player. - - SITE: https://github.com/0xzer0x/quran-companion - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/qv2ray b/apps/qv2ray new file mode 100644 index 000000000..3c6f92abe --- /dev/null +++ b/apps/qv2ray @@ -0,0 +1,3 @@ +# qv2ray +Cross-platform v2ray GUI Client in Qt. +# SITES: https://github.com/lhy0403/Qv2ray \ No newline at end of file diff --git a/apps/qv2ray.md b/apps/qv2ray.md deleted file mode 100644 index f8c77156f..000000000 --- a/apps/qv2ray.md +++ /dev/null @@ -1,8 +0,0 @@ -# QV2RAY - - Cross-platform v2ray GUI Client in Qt. - - SITE: https://github.com/lhy0403/Qv2ray - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/qview b/apps/qview new file mode 100644 index 000000000..f4213e1ad --- /dev/null +++ b/apps/qview @@ -0,0 +1,3 @@ +# qview +Practical and minimal image viewer +# SITES: https://github.com/jurplel/qView \ No newline at end of file diff --git a/apps/qview.md b/apps/qview.md deleted file mode 100644 index 2a1b6716e..000000000 --- a/apps/qview.md +++ /dev/null @@ -1,8 +0,0 @@ -# QVIEW - - Practical and minimal image viewer - - SITE: https://github.com/jurplel/qView - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/qxgedit b/apps/qxgedit new file mode 100644 index 000000000..9e70c8e0b --- /dev/null +++ b/apps/qxgedit @@ -0,0 +1,4 @@ +# qxgedit +QXGEdit is a Qt GUI XG editor application +# SITES: https://qxgedit.sourceforge.io/ +# SOURCES: https://download.opensuse.org/repositories \ No newline at end of file diff --git a/apps/qxgedit.md b/apps/qxgedit.md deleted file mode 100644 index 3c0e1206e..000000000 --- a/apps/qxgedit.md +++ /dev/null @@ -1,10 +0,0 @@ -# QXGEDIT - - QXGEdit is a Qt GUI XG editor application - - SITE: https://qxgedit.sourceforge.io/ - - SOURCE: https://download.opensuse.org/repositories - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/r2modman b/apps/r2modman new file mode 100644 index 000000000..38a3b77a2 --- /dev/null +++ b/apps/r2modman @@ -0,0 +1,3 @@ +# r2modman +A simple and easy to use mod manager for several Unity games using Thunderstore. +# SITES: https://github.com/ebkr/r2modmanPlus \ No newline at end of file diff --git a/apps/r2modman.md b/apps/r2modman.md deleted file mode 100644 index 8bdfddf98..000000000 --- a/apps/r2modman.md +++ /dev/null @@ -1,8 +0,0 @@ -# R2MODMAN - - A simple and easy to use mod manager for several Unity games using Thunderstore. - - SITE: https://github.com/ebkr/r2modmanPlus - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/r3play b/apps/r3play new file mode 100644 index 000000000..047c92023 --- /dev/null +++ b/apps/r3play @@ -0,0 +1,5 @@ +# r3play +High-value third-party Netease cloud player (chinese). + + 高颜值的第三方网易云播放器,支持 Windows/macOS/Linux.原名YesPlayMusic. +# SITES: https://music.qier222.com/ \ No newline at end of file diff --git a/apps/r3play.md b/apps/r3play.md deleted file mode 100644 index f6a6227a3..000000000 --- a/apps/r3play.md +++ /dev/null @@ -1,10 +0,0 @@ -# R3PLAY - - High-value third-party Netease cloud player (chinese). - - 高颜值的第三方网易云播放器,支持 Windows/macOS/Linux.原名YesPlayMusic. - - SITE: https://music.qier222.com/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/rabix-composer b/apps/rabix-composer new file mode 100644 index 000000000..fb3da5d7b --- /dev/null +++ b/apps/rabix-composer @@ -0,0 +1,3 @@ +# rabix-composer +Rabix Composer is a desktop IDE for working with Common Workflow Language +# SITES: https://github.com/rabix/composer \ No newline at end of file diff --git a/apps/rabix-composer.md b/apps/rabix-composer.md deleted file mode 100644 index d28450069..000000000 --- a/apps/rabix-composer.md +++ /dev/null @@ -1,8 +0,0 @@ -# RABIX-COMPOSER - - Rabix Composer is a desktop IDE for working with Common Workflow Language - - SITE: https://github.com/rabix/composer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/radioit b/apps/radioit new file mode 100644 index 000000000..fb3e3ebb6 --- /dev/null +++ b/apps/radioit @@ -0,0 +1,3 @@ +# radioit +Automation software for Radios. +# SITES: https://github.com/blackPantherOS/radioit \ No newline at end of file diff --git a/apps/radioit.md b/apps/radioit.md deleted file mode 100644 index c4bfe395e..000000000 --- a/apps/radioit.md +++ /dev/null @@ -1,8 +0,0 @@ -# RADIOIT - - Automation software for Radios. - - SITE: https://github.com/blackPantherOS/radioit - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/radix-wallet b/apps/radix-wallet new file mode 100644 index 000000000..255e3de7d --- /dev/null +++ b/apps/radix-wallet @@ -0,0 +1,3 @@ +# radix-wallet +Radix DLT desktop wallet +# SITES: https://github.com/radixdlt/desktop-wallet \ No newline at end of file diff --git a/apps/radix-wallet.md b/apps/radix-wallet.md deleted file mode 100644 index c556f0fb6..000000000 --- a/apps/radix-wallet.md +++ /dev/null @@ -1,8 +0,0 @@ -# RADIX-WALLET - - Radix DLT desktop wallet - - SITE: https://github.com/radixdlt/desktop-wallet - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/rainbow-board b/apps/rainbow-board new file mode 100644 index 000000000..5ff399aee --- /dev/null +++ b/apps/rainbow-board @@ -0,0 +1,3 @@ +# rainbow-board +22nd Century Whiteboard App For Linux, Windows and Mac. +# SITES: https://github.com/harshkhandeparkar/rainbow-board \ No newline at end of file diff --git a/apps/rainbow-board.md b/apps/rainbow-board.md deleted file mode 100644 index c4a84cdcb..000000000 --- a/apps/rainbow-board.md +++ /dev/null @@ -1,8 +0,0 @@ -# RAINBOW-BOARD - - 22nd Century Whiteboard App For Linux, Windows and Mac. - - SITE: https://github.com/harshkhandeparkar/rainbow-board - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/rambox b/apps/rambox new file mode 100644 index 000000000..1f60669c5 --- /dev/null +++ b/apps/rambox @@ -0,0 +1,3 @@ +# rambox +Free and Open Source messaging and emailing app that combines common web applications into one. +# SITES: https://rambox.app/ \ No newline at end of file diff --git a/apps/rambox.md b/apps/rambox.md deleted file mode 100644 index 36167ca7d..000000000 --- a/apps/rambox.md +++ /dev/null @@ -1,8 +0,0 @@ -# RAMBOX - - Free and Open Source messaging and emailing app that combines common web applications into one. - - SITE: https://rambox.app/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ranlib b/apps/ranlib new file mode 100644 index 000000000..fe7ccb9dc --- /dev/null +++ b/apps/ranlib @@ -0,0 +1,4 @@ +# ranlib + Index to an archive. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/ranlib.md b/apps/ranlib.md deleted file mode 100644 index 2028d0a90..000000000 --- a/apps/ranlib.md +++ /dev/null @@ -1,8 +0,0 @@ -# RANLIB - - Index to an archive. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/rapidraw b/apps/rapidraw new file mode 100644 index 000000000..3f9a4dbf4 --- /dev/null +++ b/apps/rapidraw @@ -0,0 +1,3 @@ +# rapidraw +A beautiful, non-destructive, and GPU-accelerated RAW image editor built with performance in mind. +# SITES: https://github.com/CyberTimon/RapidRAW \ No newline at end of file diff --git a/apps/rapidraw.md b/apps/rapidraw.md deleted file mode 100644 index b13d58b56..000000000 --- a/apps/rapidraw.md +++ /dev/null @@ -1,8 +0,0 @@ -# RAPIDRAW - - A beautiful, non-destructive, and GPU-accelerated RAW image editor built with performance in mind. - - SITE: https://github.com/CyberTimon/RapidRAW - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/raptor b/apps/raptor new file mode 100644 index 000000000..19bbbcedf --- /dev/null +++ b/apps/raptor @@ -0,0 +1,3 @@ +# raptor +Unofficial, reversed-engineered source port from Raptor Call Of The Shadows. +# SITES: https://github.com/pkgforge-dev/Raptor-AppImage \ No newline at end of file diff --git a/apps/raptor.md b/apps/raptor.md deleted file mode 100644 index dff616737..000000000 --- a/apps/raptor.md +++ /dev/null @@ -1,8 +0,0 @@ -# RAPTOR - - Unofficial, reversed-engineered source port from Raptor Call Of The Shadows. - - SITE: https://github.com/pkgforge-dev/Raptor-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/rare b/apps/rare new file mode 100644 index 000000000..6001fd5ed --- /dev/null +++ b/apps/rare @@ -0,0 +1,3 @@ +# rare +GUI for legendary. An Epic Games Launcher open source alternative. +# SITES: https://github.com/Dummerle/Rare \ No newline at end of file diff --git a/apps/rare.md b/apps/rare.md deleted file mode 100644 index 385201239..000000000 --- a/apps/rare.md +++ /dev/null @@ -1,8 +0,0 @@ -# RARE - - GUI for legendary. An Epic Games Launcher open source alternative. - - SITE: https://github.com/Dummerle/Rare - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/raspberry-pi-imager b/apps/raspberry-pi-imager new file mode 100644 index 000000000..719663ff4 --- /dev/null +++ b/apps/raspberry-pi-imager @@ -0,0 +1,3 @@ +# raspberry-pi-imager +The home of Raspberry Pi Imager, a user-friendly tool for creating bootable media for Raspberry Pi devices. +# SITES: https://github.com/raspberrypi/rpi-imager \ No newline at end of file diff --git a/apps/raspberry-pi-imager-cli b/apps/raspberry-pi-imager-cli new file mode 100644 index 000000000..74136b53f --- /dev/null +++ b/apps/raspberry-pi-imager-cli @@ -0,0 +1,3 @@ +# raspberry-pi-imager-cli +The home of Raspberry Pi Imager, a user-friendly tool for creating bootable media for Raspberry Pi devices. CLI edition. +# SITES: https://github.com/raspberrypi/rpi-imager \ No newline at end of file diff --git a/apps/raspberry-pi-imager-cli.md b/apps/raspberry-pi-imager-cli.md deleted file mode 100644 index ee02ffef6..000000000 --- a/apps/raspberry-pi-imager-cli.md +++ /dev/null @@ -1,8 +0,0 @@ -# RASPBERRY-PI-IMAGER-CLI - - The home of Raspberry Pi Imager, a user-friendly tool for creating bootable media for Raspberry Pi devices. CLI edition. - - SITE: https://github.com/raspberrypi/rpi-imager - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/raspberry-pi-imager.md b/apps/raspberry-pi-imager.md deleted file mode 100644 index b0c0075de..000000000 --- a/apps/raspberry-pi-imager.md +++ /dev/null @@ -1,8 +0,0 @@ -# RASPBERRY-PI-IMAGER - - The home of Raspberry Pi Imager, a user-friendly tool for creating bootable media for Raspberry Pi devices. - - SITE: https://github.com/raspberrypi/rpi-imager - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/raspirus b/apps/raspirus new file mode 100644 index 000000000..ccfbdedc4 --- /dev/null +++ b/apps/raspirus @@ -0,0 +1,3 @@ +# raspirus +A user- and resources-friendly signatures-based malware scanner. +# SITES: https://github.com/Raspirus/Raspirus \ No newline at end of file diff --git a/apps/raspirus.md b/apps/raspirus.md deleted file mode 100644 index f8134ece3..000000000 --- a/apps/raspirus.md +++ /dev/null @@ -1,8 +0,0 @@ -# RASPIRUS - - A user- and resources-friendly signatures-based malware scanner. - - SITE: https://github.com/Raspirus/Raspirus - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/rasterdraw b/apps/rasterdraw new file mode 100644 index 000000000..e7bb10254 --- /dev/null +++ b/apps/rasterdraw @@ -0,0 +1,3 @@ +# rasterdraw +Simple shape drawn using rasterisation +# SITES: https://github.com/humble-barnacle001/qt-raster-lines \ No newline at end of file diff --git a/apps/rasterdraw.md b/apps/rasterdraw.md deleted file mode 100644 index 7eaceb189..000000000 --- a/apps/rasterdraw.md +++ /dev/null @@ -1,8 +0,0 @@ -# RASTERDRAW - - Simple shape drawn using rasterisation - - SITE: https://github.com/humble-barnacle001/qt-raster-lines - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/rasterview b/apps/rasterview new file mode 100644 index 000000000..d1c525dce --- /dev/null +++ b/apps/rasterview @@ -0,0 +1,3 @@ +# rasterview +Raster Viewer for CUPS-Raster, Apple-Raster and PWG-Raster +# SITES: https://github.com/KurtPfeifle/rasterview \ No newline at end of file diff --git a/apps/rasterview.md b/apps/rasterview.md deleted file mode 100644 index 0620225be..000000000 --- a/apps/rasterview.md +++ /dev/null @@ -1,8 +0,0 @@ -# RASTERVIEW - - Raster Viewer for CUPS-Raster, Apple-Raster and PWG-Raster - - SITE: https://github.com/KurtPfeifle/rasterview - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/rats-search b/apps/rats-search new file mode 100644 index 000000000..1cd24c582 --- /dev/null +++ b/apps/rats-search @@ -0,0 +1,4 @@ +# rats-search +BitTorrent P2P multi-platform search engine for Desktop + and Web servers with integrated torrent client. +# SITES: https://github.com/DEgITx/rats-search \ No newline at end of file diff --git a/apps/rats-search.md b/apps/rats-search.md deleted file mode 100644 index bcb6df5ac..000000000 --- a/apps/rats-search.md +++ /dev/null @@ -1,9 +0,0 @@ -# RATS-SEARCH - - BitTorrent P2P multi-platform search engine for Desktop - and Web servers with integrated torrent client. - - SITE: https://github.com/DEgITx/rats-search - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/rawtherapee b/apps/rawtherapee new file mode 100644 index 000000000..81eb00dc9 --- /dev/null +++ b/apps/rawtherapee @@ -0,0 +1,3 @@ +# rawtherapee +An advanced raw photo development program +# SITES: https://www.rawtherapee.com \ No newline at end of file diff --git a/apps/rawtherapee.md b/apps/rawtherapee.md deleted file mode 100644 index f687def03..000000000 --- a/apps/rawtherapee.md +++ /dev/null @@ -1,8 +0,0 @@ -# RAWTHERAPEE - - An advanced raw photo development program - - SITE: https://www.rawtherapee.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/rbdl-toolkit b/apps/rbdl-toolkit new file mode 100644 index 000000000..d175482a9 --- /dev/null +++ b/apps/rbdl-toolkit @@ -0,0 +1,3 @@ +# rbdl-toolkit +Application for visualizing and working with rbdl models +# SITES: https://github.com/ORB-HD/rbdl-toolkit \ No newline at end of file diff --git a/apps/rbdl-toolkit.md b/apps/rbdl-toolkit.md deleted file mode 100644 index 79db930f4..000000000 --- a/apps/rbdl-toolkit.md +++ /dev/null @@ -1,8 +0,0 @@ -# RBDL-TOOLKIT - - Application for visualizing and working with rbdl models - - SITE: https://github.com/ORB-HD/rbdl-toolkit - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/rbdoom-3 b/apps/rbdoom-3 new file mode 100644 index 000000000..780dd60c8 --- /dev/null +++ b/apps/rbdoom-3 @@ -0,0 +1,3 @@ +# rbdoom-3 +Doom 3 BFG Edition source port with updated DX12 / Vulkan renderer and modern game engine features. +# SITES: https://github.com/mantralunar/RBDOOM-3-BFG \ No newline at end of file diff --git a/apps/rbdoom-3.md b/apps/rbdoom-3.md deleted file mode 100644 index 22676ae73..000000000 --- a/apps/rbdoom-3.md +++ /dev/null @@ -1,8 +0,0 @@ -# RBDOOM-3 - - Doom 3 BFG Edition source port with updated DX12 / Vulkan renderer and modern game engine features. - - SITE: https://github.com/mantralunar/RBDOOM-3-BFG - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/rbw b/apps/rbw new file mode 100644 index 000000000..22549d669 --- /dev/null +++ b/apps/rbw @@ -0,0 +1,3 @@ +# rbw +unofficial bitwarden cli +# SITES: https://github.com/doy/rbw \ No newline at end of file diff --git a/apps/rbw.md b/apps/rbw.md deleted file mode 100644 index 4b8b0f0c7..000000000 --- a/apps/rbw.md +++ /dev/null @@ -1,8 +0,0 @@ -# RBW - - unofficial bitwarden cli - - SITE: https://github.com/doy/rbw - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/rclip b/apps/rclip new file mode 100644 index 000000000..36e7b9fed --- /dev/null +++ b/apps/rclip @@ -0,0 +1,4 @@ +# rclip + AI-Powered Semantic Photo Search for the Command Line. +# SITES: https://github.com/yurijmikhalevich/rclip +# SOURCES: https://github.com/yurijmikhalevich/rclip \ No newline at end of file diff --git a/apps/rclip.md b/apps/rclip.md deleted file mode 100644 index ed6796e40..000000000 --- a/apps/rclip.md +++ /dev/null @@ -1,8 +0,0 @@ -# RCLIP - - AI-Powered Semantic Photo Search for the Command Line. - - SITE: https://github.com/yurijmikhalevich/rclip - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/rclone b/apps/rclone new file mode 100644 index 000000000..59d24b768 --- /dev/null +++ b/apps/rclone @@ -0,0 +1,3 @@ +# rclone +"rsync for cloud storage" - Google Drive, S3, Dropbox, Backblaze B2, One Drive, Swift, Hubic, Wasabi, Google Cloud Storage, Azure Blob, Azure Files, Yandex Files +# SITES: https://github.com/rclone/rclone \ No newline at end of file diff --git a/apps/rclone-browser b/apps/rclone-browser new file mode 100644 index 000000000..1a42f3fa6 --- /dev/null +++ b/apps/rclone-browser @@ -0,0 +1,3 @@ +# rclone-browser +Simple cross platform GUI for rclone. Supports macOS, GNU/Linux, BSD family and Windows. +# SITES: https://github.com/kapitainsky/RcloneBrowser \ No newline at end of file diff --git a/apps/rclone-browser.md b/apps/rclone-browser.md deleted file mode 100644 index aadf6a277..000000000 --- a/apps/rclone-browser.md +++ /dev/null @@ -1,9 +0,0 @@ -# RCLONE-BROWSER - - Simple cross platform GUI for rclone. Supports macOS, GNU/Linux, BSD family and Windows. - - SITE: https://github.com/kapitainsky/RcloneBrowser - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | - diff --git a/apps/rclone-gui-manager b/apps/rclone-gui-manager new file mode 100644 index 000000000..f0fdd00cb --- /dev/null +++ b/apps/rclone-gui-manager @@ -0,0 +1,3 @@ +# rclone-gui-manager +A simple, modern graphical user interface for managing rclone remotes for Linux. +# SITES: https://github.com/madroots/rclone-gui-manager \ No newline at end of file diff --git a/apps/rclone-gui-manager.md b/apps/rclone-gui-manager.md deleted file mode 100644 index 615928857..000000000 --- a/apps/rclone-gui-manager.md +++ /dev/null @@ -1,8 +0,0 @@ -# RCLONE-GUI-MANAGER - - A simple, modern graphical user interface for managing rclone remotes for Linux. - - SITE: https://github.com/madroots/rclone-gui-manager - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/rclone-ui b/apps/rclone-ui new file mode 100644 index 000000000..b8ebb887f --- /dev/null +++ b/apps/rclone-ui @@ -0,0 +1,3 @@ +# rclone-ui +The cross-platform desktop GUI for rclone & S3. +# SITES: https://github.com/rclone-ui/rclone-ui \ No newline at end of file diff --git a/apps/rclone-ui.md b/apps/rclone-ui.md deleted file mode 100644 index 90efd88fd..000000000 --- a/apps/rclone-ui.md +++ /dev/null @@ -1,8 +0,0 @@ -# RCLONE-UI - - The cross-platform desktop GUI for rclone & S3. - - SITE: https://github.com/rclone-ui/rclone-ui - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/rclone.md b/apps/rclone.md deleted file mode 100644 index 4ccfef902..000000000 --- a/apps/rclone.md +++ /dev/null @@ -1,8 +0,0 @@ -# RCLONE - - "rsync for cloud storage" - Google Drive, S3, Dropbox, Backblaze B2, One Drive, Swift, Hubic, Wasabi, Google Cloud Storage, Azure Blob, Azure Files, Yandex Files - - SITE: https://github.com/rclone/rclone - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/rcloneview b/apps/rcloneview new file mode 100644 index 000000000..3125b9b95 --- /dev/null +++ b/apps/rcloneview @@ -0,0 +1,3 @@ +# rcloneview +The ultimate GUI for Cloud Data Sync and File Management. Effortlessly browse, organize, transfer files across your cloud storages. +# SITES: https://rcloneview.com \ No newline at end of file diff --git a/apps/rcloneview.md b/apps/rcloneview.md deleted file mode 100644 index a554c9333..000000000 --- a/apps/rcloneview.md +++ /dev/null @@ -1,8 +0,0 @@ -# RCLONEVIEW - - The ultimate GUI for Cloud Data Sync and File Management. Effortlessly browse, organize, transfer files across your cloud storages. - - SITE: https://rcloneview.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/reactotron b/apps/reactotron new file mode 100644 index 000000000..81abfedad --- /dev/null +++ b/apps/reactotron @@ -0,0 +1,3 @@ +# reactotron +Reactotron desktop mode engage! +# SITES: https://github.com/infinitered/reactotron \ No newline at end of file diff --git a/apps/reactotron.md b/apps/reactotron.md deleted file mode 100644 index f81ea70f1..000000000 --- a/apps/reactotron.md +++ /dev/null @@ -1,8 +0,0 @@ -# REACTOTRON - - Reactotron desktop mode engage! - - SITE: https://github.com/infinitered/reactotron - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/readelf b/apps/readelf new file mode 100644 index 000000000..916367cd8 --- /dev/null +++ b/apps/readelf @@ -0,0 +1,4 @@ +# readelf + About ELF files. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/readelf.md b/apps/readelf.md deleted file mode 100644 index e16792d31..000000000 --- a/apps/readelf.md +++ /dev/null @@ -1,8 +0,0 @@ -# READELF - - About ELF files. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/readest b/apps/readest new file mode 100644 index 000000000..fc7039388 --- /dev/null +++ b/apps/readest @@ -0,0 +1,3 @@ +# readest +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. +# SITES: https://github.com/readest/readest \ No newline at end of file diff --git a/apps/readest-enhanced b/apps/readest-enhanced new file mode 100644 index 000000000..997662bbf --- /dev/null +++ b/apps/readest-enhanced @@ -0,0 +1,3 @@ +# readest-enhanced +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. +# SITES: https://github.com/pkgforge-dev/Readest-AppImage-Enhanced \ No newline at end of file diff --git a/apps/readest-enhanced.md b/apps/readest-enhanced.md deleted file mode 100644 index e529be83d..000000000 --- a/apps/readest-enhanced.md +++ /dev/null @@ -1,8 +0,0 @@ -# READEST-ENHANCED - - 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. - - SITE: https://github.com/pkgforge-dev/Readest-AppImage-Enhanced - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/readest.md b/apps/readest.md deleted file mode 100644 index f9ea20c68..000000000 --- a/apps/readest.md +++ /dev/null @@ -1,8 +0,0 @@ -# READEST - - 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. - - SITE: https://github.com/readest/readest - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/readlink b/apps/readlink new file mode 100644 index 000000000..315644072 --- /dev/null +++ b/apps/readlink @@ -0,0 +1,3 @@ +# readlink +Print resolved symbolic links or canonical file. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/readlink.md b/apps/readlink.md deleted file mode 100644 index 24c3f647b..000000000 --- a/apps/readlink.md +++ /dev/null @@ -1,8 +0,0 @@ -# READLINK - - Print resolved symbolic links or canonical file. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/real-video-enhancer b/apps/real-video-enhancer new file mode 100644 index 000000000..207bcbf60 --- /dev/null +++ b/apps/real-video-enhancer @@ -0,0 +1,3 @@ +# real-video-enhancer +Interpolate and Upscale easily on Linux/MacOS/Windows. +# SITES: https://github.com/TNTwise/REAL-Video-Enhancer \ No newline at end of file diff --git a/apps/real-video-enhancer.md b/apps/real-video-enhancer.md deleted file mode 100644 index 414fe5747..000000000 --- a/apps/real-video-enhancer.md +++ /dev/null @@ -1,8 +0,0 @@ -# REAL-VIDEO-ENHANCER - - Interpolate and Upscale easily on Linux/MacOS/Windows. - - SITE: https://github.com/TNTwise/REAL-Video-Enhancer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/realm-studio b/apps/realm-studio new file mode 100644 index 000000000..38bdf8c6b --- /dev/null +++ b/apps/realm-studio @@ -0,0 +1,3 @@ +# realm-studio +A tool for everything Realm +# SITES: https://github.com/realm/realm-studio \ No newline at end of file diff --git a/apps/realm-studio.md b/apps/realm-studio.md deleted file mode 100644 index 0815241f2..000000000 --- a/apps/realm-studio.md +++ /dev/null @@ -1,8 +0,0 @@ -# REALM-STUDIO - - A tool for everything Realm - - SITE: https://github.com/realm/realm-studio - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/realpath b/apps/realpath new file mode 100644 index 000000000..7ab41499b --- /dev/null +++ b/apps/realpath @@ -0,0 +1,3 @@ +# realpath +Print the resolved path. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/realpath.md b/apps/realpath.md deleted file mode 100644 index a35162f3a..000000000 --- a/apps/realpath.md +++ /dev/null @@ -1,8 +0,0 @@ -# REALPATH - - Print the resolved path. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/reaper b/apps/reaper new file mode 100644 index 000000000..eaac6b240 --- /dev/null +++ b/apps/reaper @@ -0,0 +1,3 @@ +# reaper +REAPER is a complete digital audio production application for Windows and OS X, offering a full multitrack audio and MIDI recording, editing, processing, mixing and mastering toolset, REAPER supports a vast range of hardware, digital formats and plugins, and can be comprehensively extended, scripted and modified. +# SITES: https://reaper.fm \ No newline at end of file diff --git a/apps/reaper.md b/apps/reaper.md deleted file mode 100644 index 35b0595d8..000000000 --- a/apps/reaper.md +++ /dev/null @@ -1,8 +0,0 @@ -# REAPER - - REAPER is a complete digital audio production application for Windows and OS X, offering a full multitrack audio and MIDI recording, editing, processing, mixing and mastering toolset, REAPER supports a vast range of hardware, digital formats and plugins, and can be comprehensively extended, scripted and modified. - - SITE: https://reaper.fm - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/rebaslight b/apps/rebaslight new file mode 100644 index 000000000..3a5380c5d --- /dev/null +++ b/apps/rebaslight @@ -0,0 +1,3 @@ +# rebaslight +Rebaslight - an easy to use special effects editor +# SITES: https://github.com/rebaslight/rebaslight \ No newline at end of file diff --git a/apps/rebaslight.md b/apps/rebaslight.md deleted file mode 100644 index 31eaa7364..000000000 --- a/apps/rebaslight.md +++ /dev/null @@ -1,8 +0,0 @@ -# REBASLIGHT - - Rebaslight - an easy to use special effects editor - - SITE: https://github.com/rebaslight/rebaslight - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/rebos b/apps/rebos new file mode 100644 index 000000000..865a1dd5a --- /dev/null +++ b/apps/rebos @@ -0,0 +1,3 @@ +# rebos +Rebos is a tool that aims at mimicking what NixOS does (repeatability), for any Linux distribution. +# SITES: https://gitlab.com/Oglo12/rebos \ No newline at end of file diff --git a/apps/rebos.md b/apps/rebos.md deleted file mode 100644 index 0c0b47bbc..000000000 --- a/apps/rebos.md +++ /dev/null @@ -1,8 +0,0 @@ -# REBOS - - Rebos is a tool that aims at mimicking what NixOS does (repeatability), for any Linux distribution. - - SITE: https://gitlab.com/Oglo12/rebos - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/reco b/apps/reco new file mode 100644 index 000000000..8572701ad --- /dev/null +++ b/apps/reco @@ -0,0 +1,3 @@ +# reco +Unofficial, An audio recorder focused on being concise and simple to use +# SITES: https://github.com/pkgforge-dev/Reco-AppImage \ No newline at end of file diff --git a/apps/reco.md b/apps/reco.md deleted file mode 100644 index ae213fbd1..000000000 --- a/apps/reco.md +++ /dev/null @@ -1,8 +0,0 @@ -# RECO - - Unofficial, An audio recorder focused on being concise and simple to use - - SITE: https://github.com/pkgforge-dev/Reco-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/recoll b/apps/recoll new file mode 100644 index 000000000..cf3d22b8c --- /dev/null +++ b/apps/recoll @@ -0,0 +1,3 @@ +# recoll +Full-text search for your desktop. +# SITES: https://www.recoll.org \ No newline at end of file diff --git a/apps/recoll.md b/apps/recoll.md deleted file mode 100644 index 9e3681596..000000000 --- a/apps/recoll.md +++ /dev/null @@ -1,8 +0,0 @@ -# RECOLL - - Full-text search for your desktop. - - SITE: https://www.recoll.org - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/record-compare b/apps/record-compare new file mode 100644 index 000000000..f55c8b8c2 --- /dev/null +++ b/apps/record-compare @@ -0,0 +1,3 @@ +# record-compare +Record Compare +# SITES: https://github.com/paustint/record-compare \ No newline at end of file diff --git a/apps/record-compare.md b/apps/record-compare.md deleted file mode 100644 index 442d05958..000000000 --- a/apps/record-compare.md +++ /dev/null @@ -1,8 +0,0 @@ -# RECORD-COMPARE - - Record Compare - - SITE: https://github.com/paustint/record-compare - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/recordscript b/apps/recordscript new file mode 100644 index 000000000..6581d8b02 --- /dev/null +++ b/apps/recordscript @@ -0,0 +1,3 @@ +# recordscript +Cross-platform screen recorder, transcript, subtitle. Built with Tauri & Whisper-rs (rust port of whisper.cpp) +# SITES: https://github.com/Recordscript/recordscript \ No newline at end of file diff --git a/apps/recordscript.md b/apps/recordscript.md deleted file mode 100644 index 45e683fd2..000000000 --- a/apps/recordscript.md +++ /dev/null @@ -1,8 +0,0 @@ -# RECORDSCRIPT - - Cross-platform screen recorder, transcript, subtitle. Built with Tauri & Whisper-rs (rust port of whisper.cpp) - - SITE: https://github.com/Recordscript/recordscript - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/redact b/apps/redact new file mode 100644 index 000000000..e2dabfd26 --- /dev/null +++ b/apps/redact @@ -0,0 +1,3 @@ +# redact +Application to mass delete your account posts from different social media. +# SITES: https://redact.dev \ No newline at end of file diff --git a/apps/redact.md b/apps/redact.md deleted file mode 100644 index f1e98e177..000000000 --- a/apps/redact.md +++ /dev/null @@ -1,8 +0,0 @@ -# REDACT - - Application to mass delete your account posts from different social media. - - SITE: https://redact.dev - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/redeclipse b/apps/redeclipse new file mode 100644 index 000000000..0b1edfac6 --- /dev/null +++ b/apps/redeclipse @@ -0,0 +1,7 @@ +# redeclipse +Red Eclipse is a fun-filled new take on the first person arena shooter, featuring parkour, impulse boosts, and other tricks. + + This release comes from the Master branch (Continuous build). +# SCREENSHOTS: https://user-images.githubusercontent.com/88724353/236651892-531d209c-20d0-4b12-ab65-56c6bd788763.png +# SITES: https://www.redeclipse.net +# SOURCES: https://github.com/redeclipse/deploy \ No newline at end of file diff --git a/apps/redeclipse.md b/apps/redeclipse.md deleted file mode 100644 index b847c3e05..000000000 --- a/apps/redeclipse.md +++ /dev/null @@ -1,14 +0,0 @@ -# REDECLIPSE - - Red Eclipse is a fun-filled new take on the first person arena shooter, featuring parkour, impulse boosts, and other tricks. - - This release comes from the Master branch (Continuous build). - - ![Red_Eclipse_screenshot_(Elara_1 4 1)](https://user-images.githubusercontent.com/88724353/236651892-531d209c-20d0-4b12-ab65-56c6bd788763.png) - - SITE: https://www.redeclipse.net - - SOURCE: https://github.com/redeclipse/deploy - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/redis-gui b/apps/redis-gui new file mode 100644 index 000000000..c7cfdc93c --- /dev/null +++ b/apps/redis-gui @@ -0,0 +1,3 @@ +# redis-gui +Modern graphical user interface to peek into redis database (unofficial). +# SITES: https://github.com/ekvedaras/redis-gui \ No newline at end of file diff --git a/apps/redis-gui.md b/apps/redis-gui.md deleted file mode 100644 index 45bdf7ea2..000000000 --- a/apps/redis-gui.md +++ /dev/null @@ -1,8 +0,0 @@ -# REDIS-GUI - - Modern graphical user interface to peek into redis database (unofficial). - - SITE: https://github.com/ekvedaras/redis-gui - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/redis-viewer b/apps/redis-viewer new file mode 100644 index 000000000..f64da6ebb --- /dev/null +++ b/apps/redis-viewer @@ -0,0 +1,3 @@ +# redis-viewer +A Redis visualization client tool that pursues ultimate performance, minimalist layout, efficient interaction, cross platform, and supports deserialization of Java bytecode. +# SITES: https://github.com/redisviewer/RedisViewer \ No newline at end of file diff --git a/apps/redis-viewer.md b/apps/redis-viewer.md deleted file mode 100644 index f09dab9f3..000000000 --- a/apps/redis-viewer.md +++ /dev/null @@ -1,8 +0,0 @@ -# REDIS-VIEWER - - A Redis visualization client tool that pursues ultimate performance, minimalist layout, efficient interaction, cross platform, and supports deserialization of Java bytecode. - - SITE: https://github.com/redisviewer/RedisViewer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/rednukem b/apps/rednukem new file mode 100644 index 000000000..83d3be010 --- /dev/null +++ b/apps/rednukem @@ -0,0 +1,3 @@ +# rednukem +A port of serveral BUILD Engine games based on EDuke32. +# SITES: https://github.com/pkgforge-dev/Rednukem-AppImage \ No newline at end of file diff --git a/apps/rednukem.md b/apps/rednukem.md deleted file mode 100644 index 2fdde86b0..000000000 --- a/apps/rednukem.md +++ /dev/null @@ -1,8 +0,0 @@ -# REDNUKEM - - A port of serveral BUILD Engine games based on EDuke32. - - SITE: https://github.com/pkgforge-dev/Rednukem-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/redriver2 b/apps/redriver2 new file mode 100644 index 000000000..54f8217ed --- /dev/null +++ b/apps/redriver2 @@ -0,0 +1,3 @@ +# redriver2 +Unofficial, Driver 2 Playstation game reverse engineering effort. +# SITES: https://github.com/pkgforge-dev/REDRIVER2-AppImage \ No newline at end of file diff --git a/apps/redriver2.md b/apps/redriver2.md deleted file mode 100644 index f89b707b9..000000000 --- a/apps/redriver2.md +++ /dev/null @@ -1,8 +0,0 @@ -# REDRIVER2 - - Unofficial, Driver 2 Playstation game reverse engineering effort. - - SITE: https://github.com/pkgforge-dev/REDRIVER2-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/rehex b/apps/rehex new file mode 100644 index 000000000..926af8da5 --- /dev/null +++ b/apps/rehex @@ -0,0 +1,3 @@ +# rehex +Reverse Engineers' Hex Editor. +# SITES: https://github.com/solemnwarning/rehex \ No newline at end of file diff --git a/apps/rehex.md b/apps/rehex.md deleted file mode 100644 index 28d2bda4d..000000000 --- a/apps/rehex.md +++ /dev/null @@ -1,8 +0,0 @@ -# REHEX - - Reverse Engineers' Hex Editor. - - SITE: https://github.com/solemnwarning/rehex - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/remind-me-again b/apps/remind-me-again new file mode 100644 index 000000000..74f9bf213 --- /dev/null +++ b/apps/remind-me-again @@ -0,0 +1,3 @@ +# remind-me-again +Toggleable cron reminders app for Mac, Linux and Windows +# SITES: https://github.com/probablykasper/remind-me-again \ No newline at end of file diff --git a/apps/remind-me-again.md b/apps/remind-me-again.md deleted file mode 100644 index 5321031e4..000000000 --- a/apps/remind-me-again.md +++ /dev/null @@ -1,8 +0,0 @@ -# REMIND-ME-AGAIN - - Toggleable cron reminders app for Mac, Linux and Windows - - SITE: https://github.com/probablykasper/remind-me-again - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/remnote b/apps/remnote new file mode 100644 index 000000000..c48a33dfd --- /dev/null +++ b/apps/remnote @@ -0,0 +1,3 @@ +# remnote +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. +# SITES: https://www.remnote.com \ No newline at end of file diff --git a/apps/remnote.md b/apps/remnote.md deleted file mode 100644 index 0635881ed..000000000 --- a/apps/remnote.md +++ /dev/null @@ -1,8 +0,0 @@ -# REMNOTE - - 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. - - SITE: https://www.remnote.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/rendertune b/apps/rendertune new file mode 100644 index 000000000..eee46ab1c --- /dev/null +++ b/apps/rendertune @@ -0,0 +1,3 @@ +# rendertune +RenderTune is a free electron app for Mac/Windows/Linux that uses ffmpeg to combine audio.+image file(s) into video files. +# SITES: https://github.com/MartinBarker/RenderTune \ No newline at end of file diff --git a/apps/rendertune.md b/apps/rendertune.md deleted file mode 100644 index 5ab0586c4..000000000 --- a/apps/rendertune.md +++ /dev/null @@ -1,10 +0,0 @@ -# RENDERTUNE - - RenderTune is a free electron app for Mac/Windows/Linux that uses ffmpeg to combine audio.+image file(s) into video files. - - DISCORD: https://discord.gg/GxfJv5sB - - SITE: https://github.com/MartinBarker/RenderTune - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/renpy b/apps/renpy new file mode 100644 index 000000000..31f4b3161 --- /dev/null +++ b/apps/renpy @@ -0,0 +1,3 @@ +# renpy +Unofficial, visual novel engine Ren'Py. +# SITES: https://github.com/pkgforge-dev/RenPy-AppImage \ No newline at end of file diff --git a/apps/renpy.md b/apps/renpy.md deleted file mode 100644 index 039ca13f1..000000000 --- a/apps/renpy.md +++ /dev/null @@ -1,8 +0,0 @@ -# RENPY - - Unofficial, visual novel engine Ren'Py. - - SITE: https://github.com/pkgforge-dev/RenPy-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/reor b/apps/reor new file mode 100644 index 000000000..730ba8ef6 --- /dev/null +++ b/apps/reor @@ -0,0 +1,3 @@ +# reor +AI note-taking app that runs models locally. +# SITES: https://github.com/reorproject/reor \ No newline at end of file diff --git a/apps/reor.md b/apps/reor.md deleted file mode 100644 index 1ea7b2d65..000000000 --- a/apps/reor.md +++ /dev/null @@ -1,8 +0,0 @@ -# REOR - - AI note-taking app that runs models locally. - - SITE: https://github.com/reorproject/reor - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/repath-studio b/apps/repath-studio new file mode 100644 index 000000000..fae42c759 --- /dev/null +++ b/apps/repath-studio @@ -0,0 +1,3 @@ +# repath-studio +A cross-platform vector graphics editor. +# SITES: https://github.com/repath-project/repath-studio \ No newline at end of file diff --git a/apps/repath-studio.md b/apps/repath-studio.md deleted file mode 100644 index 17cb9d3b0..000000000 --- a/apps/repath-studio.md +++ /dev/null @@ -1,8 +0,0 @@ -# REPATH-STUDIO - - A cross-platform vector graphics editor. - - SITE: https://github.com/repath-project/repath-studio - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/repetier-host b/apps/repetier-host new file mode 100644 index 000000000..fd648e5e4 --- /dev/null +++ b/apps/repetier-host @@ -0,0 +1,3 @@ +# repetier-host +Repetier-Host is a 3D printing application developed by Hot-World GmbH & Co. KG. +# SITES: https://www.repetier.com \ No newline at end of file diff --git a/apps/repetier-host.md b/apps/repetier-host.md deleted file mode 100644 index 66bd8eb3c..000000000 --- a/apps/repetier-host.md +++ /dev/null @@ -1,8 +0,0 @@ -# REPETIER-HOST - - Repetier-Host is a 3D printing application developed by Hot-World GmbH & Co. KG. - - SITE: https://www.repetier.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/reqable b/apps/reqable new file mode 100644 index 000000000..d936b8e27 --- /dev/null +++ b/apps/reqable @@ -0,0 +1,4 @@ +# reqable +Advanced API Debugging Proxy and REST Client. +# SITES: https://reqable.com +# SOURCES: https://github.com/reqable/reqable-app \ No newline at end of file diff --git a/apps/reqable.md b/apps/reqable.md deleted file mode 100644 index decf5ae78..000000000 --- a/apps/reqable.md +++ /dev/null @@ -1,10 +0,0 @@ -# REQABLE - - Advanced API Debugging Proxy and REST Client. - - SITE: https://reqable.com - - SOURCE: https://github.com/reqable/reqable-app - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/responsively b/apps/responsively new file mode 100644 index 000000000..e3bd728a5 --- /dev/null +++ b/apps/responsively @@ -0,0 +1,3 @@ +# responsively +A developer-friendly browser for developing responsive web apps +# SITES: https://github.com/manojVivek/responsively-app \ No newline at end of file diff --git a/apps/responsively.md b/apps/responsively.md deleted file mode 100644 index 15c4fad38..000000000 --- a/apps/responsively.md +++ /dev/null @@ -1,8 +0,0 @@ -# RESPONSIVELY - - A developer-friendly browser for developing responsive web apps - - SITE: https://github.com/manojVivek/responsively-app - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/retroarch b/apps/retroarch new file mode 100644 index 000000000..a99a69b3b --- /dev/null +++ b/apps/retroarch @@ -0,0 +1,3 @@ +# retroarch +RetroArch is a free and open-source, cross-platform frontend for emulators, game engines, video games, media players and other applications. +# SITES: https://retroarch.com \ No newline at end of file diff --git a/apps/retroarch-nightly b/apps/retroarch-nightly new file mode 100644 index 000000000..863aad10f --- /dev/null +++ b/apps/retroarch-nightly @@ -0,0 +1,3 @@ +# retroarch-nightly +RetroArch is a free and open-source, cross-platform frontend for emulators, game engines, video games, media players and other applications. +# SITES: https://retroarch.com \ No newline at end of file diff --git a/apps/retroarch-nightly.md b/apps/retroarch-nightly.md deleted file mode 100644 index c282cd424..000000000 --- a/apps/retroarch-nightly.md +++ /dev/null @@ -1,8 +0,0 @@ -# RETROARCH-NIGHTLY - - RetroArch is a free and open-source, cross-platform frontend for emulators, game engines, video games, media players and other applications. - - SITE: https://retroarch.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/retroarch-qt b/apps/retroarch-qt new file mode 100644 index 000000000..e14aec3a6 --- /dev/null +++ b/apps/retroarch-qt @@ -0,0 +1,3 @@ +# retroarch-qt +RetroArch is a free and open-source, cross-platform frontend for emulators, game engines, video games, media players and other applications. +# SITES: https://retroarch.com \ No newline at end of file diff --git a/apps/retroarch-qt-nightly b/apps/retroarch-qt-nightly new file mode 100644 index 000000000..1c4441095 --- /dev/null +++ b/apps/retroarch-qt-nightly @@ -0,0 +1,3 @@ +# retroarch-qt-nightly +RetroArch is a free and open-source, cross-platform frontend for emulators, game engines, video games, media players and other applications. +# SITES: https://retroarch.com \ No newline at end of file diff --git a/apps/retroarch-qt-nightly.md b/apps/retroarch-qt-nightly.md deleted file mode 100644 index 1b9c49f86..000000000 --- a/apps/retroarch-qt-nightly.md +++ /dev/null @@ -1,8 +0,0 @@ -# RETROARCH-QT-NIGHTLY - - RetroArch is a free and open-source, cross-platform frontend for emulators, game engines, video games, media players and other applications. - - SITE: https://retroarch.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/retroarch-qt.md b/apps/retroarch-qt.md deleted file mode 100644 index c3783421c..000000000 --- a/apps/retroarch-qt.md +++ /dev/null @@ -1,8 +0,0 @@ -# RETROARCH-QT - - RetroArch is a free and open-source, cross-platform frontend for emulators, game engines, video games, media players and other applications. - - SITE: https://retroarch.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/retroarch.md b/apps/retroarch.md deleted file mode 100644 index 0cf9b02b2..000000000 --- a/apps/retroarch.md +++ /dev/null @@ -1,8 +0,0 @@ -# RETROARCH - - RetroArch is a free and open-source, cross-platform frontend for emulators, game engines, video games, media players and other applications. - - SITE: https://retroarch.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/retrom b/apps/retrom new file mode 100644 index 000000000..01c1ca421 --- /dev/null +++ b/apps/retrom @@ -0,0 +1,3 @@ +# retrom +A centralized game library/collection management service with a focus on emulation +# SITES: https://github.com/JMBeresford/retrom \ No newline at end of file diff --git a/apps/retrom.md b/apps/retrom.md deleted file mode 100644 index f156b95cb..000000000 --- a/apps/retrom.md +++ /dev/null @@ -1,8 +0,0 @@ -# RETROM - - A centralized game library/collection management service with a focus on emulation - - SITE: https://github.com/JMBeresford/retrom - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/retroshare b/apps/retroshare new file mode 100644 index 000000000..ff2d1a034 --- /dev/null +++ b/apps/retroshare @@ -0,0 +1,3 @@ +# retroshare +Securely share files with your friends +# SITES: https://github.com/RetroShare/RetroShare \ No newline at end of file diff --git a/apps/retroshare.md b/apps/retroshare.md deleted file mode 100644 index eaea82e45..000000000 --- a/apps/retroshare.md +++ /dev/null @@ -1,8 +0,0 @@ -# RETROSHARE - - Securely share files with your friends - - SITE: https://github.com/RetroShare/RetroShare - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/retrovibed b/apps/retrovibed new file mode 100644 index 000000000..1667d9d35 --- /dev/null +++ b/apps/retrovibed @@ -0,0 +1,3 @@ +# retrovibed +Personal Digital Archive and Media Player with at cost cloud storage backend. +# SITES: https://github.com/retrovibed/retrovibed \ No newline at end of file diff --git a/apps/retrovibed.md b/apps/retrovibed.md deleted file mode 100644 index c2ddcb9d6..000000000 --- a/apps/retrovibed.md +++ /dev/null @@ -1,8 +0,0 @@ -# RETROVIBED - - Personal Digital Archive and Media Player with at cost cloud storage backend. - - SITE: https://github.com/retrovibed/retrovibed - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/rev b/apps/rev new file mode 100644 index 000000000..5161afa56 --- /dev/null +++ b/apps/rev @@ -0,0 +1,3 @@ +# rev +No description available. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/rev.md b/apps/rev.md deleted file mode 100644 index 15300582e..000000000 --- a/apps/rev.md +++ /dev/null @@ -1,8 +0,0 @@ -# REV - - Reverse lines characterwise. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/revealgo b/apps/revealgo new file mode 100644 index 000000000..644cf410e --- /dev/null +++ b/apps/revealgo @@ -0,0 +1,3 @@ +# revealgo +Markdown driven presentation tool written in Go! +# SITES: https://github.com/yusukebe/revealgo \ No newline at end of file diff --git a/apps/revealgo.md b/apps/revealgo.md deleted file mode 100644 index 0c73ccbcc..000000000 --- a/apps/revealgo.md +++ /dev/null @@ -1,8 +0,0 @@ -# REVEALGO - - Markdown driven presentation tool written in Go! - - SITE: https://github.com/yusukebe/revealgo - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/revolt b/apps/revolt new file mode 100644 index 000000000..62b4c496f --- /dev/null +++ b/apps/revolt @@ -0,0 +1,3 @@ +# revolt +Revolt Desktop App +# SITES: https://github.com/revoltchat/desktop \ No newline at end of file diff --git a/apps/revolt.md b/apps/revolt.md deleted file mode 100644 index 273379f72..000000000 --- a/apps/revolt.md +++ /dev/null @@ -1,8 +0,0 @@ -# REVOLT - - Revolt Desktop App - - SITE: https://github.com/revoltchat/desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/rewaita b/apps/rewaita new file mode 100644 index 000000000..6b18de6fb --- /dev/null +++ b/apps/rewaita @@ -0,0 +1,3 @@ +# rewaita +Unofficial, rewaita gives your Adwaita apps a fresh look by tinting them with popular color schemes. +# SITES: https://github.com/pkgforge-dev/Rewaita-AppImage \ No newline at end of file diff --git a/apps/rewaita.md b/apps/rewaita.md deleted file mode 100644 index 8ccbe8764..000000000 --- a/apps/rewaita.md +++ /dev/null @@ -1,8 +0,0 @@ -# REWAITA - - Unofficial, rewaita gives your Adwaita apps a fresh look by tinting them with popular color schemes. - - SITE: https://github.com/pkgforge-dev/Rewaita-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/rgitui b/apps/rgitui new file mode 100644 index 000000000..1ef5e8024 --- /dev/null +++ b/apps/rgitui @@ -0,0 +1,3 @@ +# rgitui +A GPU-accelerated desktop Git client built in Rust with GPUI. +# SITES: https://github.com/noahbclarkson/rgitui \ No newline at end of file diff --git a/apps/rgitui.md b/apps/rgitui.md deleted file mode 100644 index 9ea222f19..000000000 --- a/apps/rgitui.md +++ /dev/null @@ -1,8 +0,0 @@ -# RGITUI - - A GPU-accelerated desktop Git client built in Rust with GPUI. - - SITE: https://github.com/noahbclarkson/rgitui - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/rhb b/apps/rhb new file mode 100644 index 000000000..63ed4d46a --- /dev/null +++ b/apps/rhb @@ -0,0 +1,4 @@ +# rhb +Rapid HTML Builder/Prototyper, built with + Electron and Grapesjs +# SITES: https://github.com/NicolaOrritos/rhb \ No newline at end of file diff --git a/apps/rhb.md b/apps/rhb.md deleted file mode 100644 index 764619f2b..000000000 --- a/apps/rhb.md +++ /dev/null @@ -1,9 +0,0 @@ -# RHB - - Rapid HTML Builder/Prototyper, built with - Electron and Grapesjs - - SITE: https://github.com/NicolaOrritos/rhb - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/rhythmbox b/apps/rhythmbox new file mode 100644 index 000000000..4aec8f578 --- /dev/null +++ b/apps/rhythmbox @@ -0,0 +1,3 @@ +# rhythmbox +ArchImage for the Audio Player Rhythmbox. +# SITES: https://github.com/ivan-hc/Rhythmbox-appimage \ No newline at end of file diff --git a/apps/rhythmbox.md b/apps/rhythmbox.md deleted file mode 100644 index 21f6f0869..000000000 --- a/apps/rhythmbox.md +++ /dev/null @@ -1,8 +0,0 @@ -# RHYTHMBOX - - ArchImage for the Audio Player Rhythmbox. - - SITE: https://github.com/ivan-hc/Rhythmbox-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ricochet b/apps/ricochet new file mode 100644 index 000000000..9779364fd --- /dev/null +++ b/apps/ricochet @@ -0,0 +1,3 @@ +# ricochet +Anonymous peer-to-peer instant messaging +# SITES: https://github.com/blueprint-freespeech/ricochet-refresh \ No newline at end of file diff --git a/apps/ricochet.md b/apps/ricochet.md deleted file mode 100644 index d10985432..000000000 --- a/apps/ricochet.md +++ /dev/null @@ -1,8 +0,0 @@ -# RICOCHET - - Anonymous peer-to-peer instant messaging - - SITE: https://github.com/blueprint-freespeech/ricochet-refresh - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ricochlime b/apps/ricochlime new file mode 100644 index 000000000..4f61f3eaa --- /dev/null +++ b/apps/ricochlime @@ -0,0 +1,3 @@ +# ricochlime +Satisfying slime shooter +# SITES: https://github.com/adil192/ricochlime \ No newline at end of file diff --git a/apps/ricochlime.md b/apps/ricochlime.md deleted file mode 100644 index f483a610b..000000000 --- a/apps/ricochlime.md +++ /dev/null @@ -1,8 +0,0 @@ -# RICOCHLIME - - Satisfying slime shooter - - SITE: https://github.com/adil192/ricochlime - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ridereceipts b/apps/ridereceipts new file mode 100644 index 000000000..270c07004 --- /dev/null +++ b/apps/ridereceipts @@ -0,0 +1,3 @@ +# ridereceipts +Simple automation desktop app to download and organize your tax invoices +# SITES: https://github.com/ridereceipts/ridereceipts \ No newline at end of file diff --git a/apps/ridereceipts.md b/apps/ridereceipts.md deleted file mode 100644 index 5e93deba1..000000000 --- a/apps/ridereceipts.md +++ /dev/null @@ -1,8 +0,0 @@ -# RIDERECEIPTS - - Simple automation desktop app to download and organize your tax invoices - - SITE: https://github.com/ridereceipts/ridereceipts - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/rift b/apps/rift new file mode 100644 index 000000000..128cbf6ab --- /dev/null +++ b/apps/rift @@ -0,0 +1,3 @@ +# rift +All your EVE Online intel in one place. +# SITES: https://riftforeve.online \ No newline at end of file diff --git a/apps/rift.md b/apps/rift.md deleted file mode 100644 index d0e9987c7..000000000 --- a/apps/rift.md +++ /dev/null @@ -1,8 +0,0 @@ -# RIFT - - All your EVE Online intel in one place. - - SITE: https://riftforeve.online - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/rigelengine b/apps/rigelengine new file mode 100644 index 000000000..0be1d88da --- /dev/null +++ b/apps/rigelengine @@ -0,0 +1,3 @@ +# rigelengine +Modern re-implementation of DOS game Duke Nukem II. +# SITES: https://github.com/pkgforge-dev/RigelEngine-AppImage \ No newline at end of file diff --git a/apps/rigelengine.md b/apps/rigelengine.md deleted file mode 100644 index 1914868e4..000000000 --- a/apps/rigelengine.md +++ /dev/null @@ -1,8 +0,0 @@ -# RIGELENGINE - - Modern re-implementation of DOS game Duke Nukem II. - - SITE: https://github.com/pkgforge-dev/RigelEngine-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/rigs-of-rods b/apps/rigs-of-rods new file mode 100644 index 000000000..942221c8e --- /dev/null +++ b/apps/rigs-of-rods @@ -0,0 +1,3 @@ +# rigs-of-rods +Unofficial, an open source vehicle simulator based on soft-body physics. +# SITES: https://github.com/pkgforge-dev/Rigs-of-Rods-AppImage \ No newline at end of file diff --git a/apps/rigs-of-rods.md b/apps/rigs-of-rods.md deleted file mode 100644 index 54d6e0c64..000000000 --- a/apps/rigs-of-rods.md +++ /dev/null @@ -1,8 +0,0 @@ -# RIGS-OF-RODS - - Unofficial, an open source vehicle simulator based on soft-body physics. - - SITE: https://github.com/pkgforge-dev/Rigs-of-Rods-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/rimage b/apps/rimage new file mode 100644 index 000000000..933c18e99 --- /dev/null +++ b/apps/rimage @@ -0,0 +1,3 @@ +# rimage +This is CLI tool inspired by squoosh! +# SITES: https://github.com/SalOne22/rimage \ No newline at end of file diff --git a/apps/rimage.md b/apps/rimage.md deleted file mode 100644 index 3da50bbcf..000000000 --- a/apps/rimage.md +++ /dev/null @@ -1,8 +0,0 @@ -# RIMAGE - - This is CLI tool inspired by squoosh! - - SITE: https://github.com/SalOne22/rimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ripcord b/apps/ripcord new file mode 100644 index 000000000..48e68dfa7 --- /dev/null +++ b/apps/ripcord @@ -0,0 +1,3 @@ +# ripcord +Ripcord is a desktop chat client for group-centric services like Slack and Discord. +# SITES: https://cancel.fm/ripcord \ No newline at end of file diff --git a/apps/ripcord.md b/apps/ripcord.md deleted file mode 100644 index 04501a09e..000000000 --- a/apps/ripcord.md +++ /dev/null @@ -1,8 +0,0 @@ -# RIPCORD - - Ripcord is a desktop chat client for group-centric services like Slack and Discord. - - SITE: https://cancel.fm/ripcord - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ripes b/apps/ripes new file mode 100644 index 000000000..c03b089a9 --- /dev/null +++ b/apps/ripes @@ -0,0 +1,3 @@ +# ripes +A graphical processor simulator and assembly editor for the RISC-V ISA. +# SITES: https://github.com/mortbopet/Ripes \ No newline at end of file diff --git a/apps/ripes.md b/apps/ripes.md deleted file mode 100644 index 8632f74ea..000000000 --- a/apps/ripes.md +++ /dev/null @@ -1,8 +0,0 @@ -# RIPES - - A graphical processor simulator and assembly editor for the RISC-V ISA. - - SITE: https://github.com/mortbopet/Ripes - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ripgrep b/apps/ripgrep new file mode 100644 index 000000000..4fb30593a --- /dev/null +++ b/apps/ripgrep @@ -0,0 +1,3 @@ +# ripgrep +ripgrep recursively searches directories for a regex pattern while respecting your gitignore. +# SITES: https://github.com/BurntSushi/ripgrep \ No newline at end of file diff --git a/apps/ripgrep-all b/apps/ripgrep-all new file mode 100644 index 000000000..e8ab103d8 --- /dev/null +++ b/apps/ripgrep-all @@ -0,0 +1,3 @@ +# ripgrep-all +rga: ripgrep, but also search in PDFs, E-Books, Office documents, zip, tar.gz, etc. +# SITES: https://github.com/phiresky/ripgrep-all \ No newline at end of file diff --git a/apps/ripgrep-all.md b/apps/ripgrep-all.md deleted file mode 100644 index f7ad57c53..000000000 --- a/apps/ripgrep-all.md +++ /dev/null @@ -1,8 +0,0 @@ -# RIPGREP-ALL - - rga: ripgrep, but also search in PDFs, E-Books, Office documents, zip, tar.gz, etc. - - SITE: https://github.com/phiresky/ripgrep-all - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ripgrep.md b/apps/ripgrep.md deleted file mode 100644 index 63b8ca01f..000000000 --- a/apps/ripgrep.md +++ /dev/null @@ -1,8 +0,0 @@ -# RIPGREP - - ripgrep recursively searches directories for a regex pattern while respecting your gitignore. - - SITE: https://github.com/BurntSushi/ripgrep - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/riseup-vpn b/apps/riseup-vpn new file mode 100644 index 000000000..829ee66f1 --- /dev/null +++ b/apps/riseup-vpn @@ -0,0 +1,3 @@ +# riseup-vpn +Unofficial, RiseupVPN is an easy, fast, and secure VPN service from riseup.net. +# SITES: https://github.com/pkgforge-dev/Riseup-VPN-AppImage \ No newline at end of file diff --git a/apps/riseup-vpn.md b/apps/riseup-vpn.md deleted file mode 100644 index da703c847..000000000 --- a/apps/riseup-vpn.md +++ /dev/null @@ -1,8 +0,0 @@ -# RISEUP-VPN - - Unofficial, RiseupVPN is an easy, fast, and secure VPN service from riseup.net. - - SITE: https://github.com/pkgforge-dev/Riseup-VPN-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/ristretto b/apps/ristretto new file mode 100644 index 000000000..3107305f4 --- /dev/null +++ b/apps/ristretto @@ -0,0 +1,3 @@ +# ristretto +Unofficial. Image viewer by Xfce that can be used to view and scroll through images. +# SITES: https://github.com/pkgforge-dev/Ristretto-AppImage \ No newline at end of file diff --git a/apps/ristretto.md b/apps/ristretto.md deleted file mode 100644 index 1309e4815..000000000 --- a/apps/ristretto.md +++ /dev/null @@ -1,8 +0,0 @@ -# RISTRETTO - - Unofficial. Image viewer by Xfce that can be used to view and scroll through images. - - SITE: https://github.com/pkgforge-dev/Ristretto-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/rm b/apps/rm new file mode 100644 index 000000000..6975b4c34 --- /dev/null +++ b/apps/rm @@ -0,0 +1,3 @@ +# rm +Remove files or directories. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/rm.md b/apps/rm.md deleted file mode 100644 index 1175b13d2..000000000 --- a/apps/rm.md +++ /dev/null @@ -1,8 +0,0 @@ -# RM - - Remove files or directories. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/rmdir b/apps/rmdir new file mode 100644 index 000000000..30fce5953 --- /dev/null +++ b/apps/rmdir @@ -0,0 +1,4 @@ +# rmdir + Remove empty directories. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/rmdir.md b/apps/rmdir.md deleted file mode 100644 index 10b964cfe..000000000 --- a/apps/rmdir.md +++ /dev/null @@ -1,8 +0,0 @@ -# RMDIR - - Remove empty directories. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/rmg b/apps/rmg new file mode 100644 index 000000000..11638a2ae --- /dev/null +++ b/apps/rmg @@ -0,0 +1,3 @@ +# rmg +Rosalie's Mupen GUI +# SITES: https://github.com/Rosalie241/RMG \ No newline at end of file diff --git a/apps/rmg-enhanced b/apps/rmg-enhanced new file mode 100644 index 000000000..d91a653d4 --- /dev/null +++ b/apps/rmg-enhanced @@ -0,0 +1,3 @@ +# rmg-enhanced +Unofficial AppImage of RMG N64 emulator wtih x86-64-v3 optimizations and smaller size. +# SITES: https://github.com/pkgforge-dev/RMG-AppImage-Enhanced \ No newline at end of file diff --git a/apps/rmg-enhanced.md b/apps/rmg-enhanced.md deleted file mode 100644 index 5d0e3aff0..000000000 --- a/apps/rmg-enhanced.md +++ /dev/null @@ -1,8 +0,0 @@ -# RMG-ENHANCED - - Unofficial AppImage of RMG N64 emulator wtih x86-64-v3 optimizations and smaller size. - - SITE: https://github.com/pkgforge-dev/RMG-AppImage-Enhanced - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/rmg.md b/apps/rmg.md deleted file mode 100644 index 0df82a37b..000000000 --- a/apps/rmg.md +++ /dev/null @@ -1,8 +0,0 @@ -# RMG - - Rosalie's Mupen GUI - - SITE: https://github.com/Rosalie241/RMG - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/rmw b/apps/rmw new file mode 100644 index 000000000..2e7c1d5d9 --- /dev/null +++ b/apps/rmw @@ -0,0 +1,3 @@ +# rmw +A safe-remove utility for the command line. +# SITES: https://theimpossibleastronaut.github.io/rmw-website \ No newline at end of file diff --git a/apps/rmw.md b/apps/rmw.md deleted file mode 100644 index a44b00f60..000000000 --- a/apps/rmw.md +++ /dev/null @@ -1,7 +0,0 @@ -# RMW - - A safe-remove utility for the command line. - - SITE: https://theimpossibleastronaut.github.io/rmw-website - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/rnote b/apps/rnote new file mode 100644 index 000000000..cb395a4c1 --- /dev/null +++ b/apps/rnote @@ -0,0 +1,22 @@ +# rnote +Rnote is an open-source vector-based drawing app for sketching, handwritten notes and to annotate documents and pictures. It is targeted at students, teachers and those who own a drawing tablet and provides features like Pdf and picture import and export, an infinite canvas and an adaptive UI for big and small screens. + +## Features + +- Adaptive UI focused on stylus input +- Pressure-sensitive stylus input with different and configurable stroke styles +- Create many different shapes with the shape tool +- Move, rotate, resize and modify existing content with the selection tool +- Different document expansion layouts ( fixed pages, continuous vertical, infinite in every direction, .. ) +- Customizable background colors, patterns, sizes +- Customizable page format +- (Optional) pen sounds +- Reconfigurable stylus button shortcuts +- An integrated workspace browser for quick access to related files +- Drag & Drop, clipboard support +- PDF, Bitmap and SVG image import +- Document, document pages and selection export to many formats including SVG, PDF, Xopp +- Save and load the documents in the native .rnote file format +- Tabs to work on multiple documents at the same time +- Autosave, printing +# SITES: https://github.com/pkgforge-dev/Rnote-AppImage \ No newline at end of file diff --git a/apps/rnote.md b/apps/rnote.md deleted file mode 100644 index 06065e641..000000000 --- a/apps/rnote.md +++ /dev/null @@ -1,29 +0,0 @@ -# RNOTE - -Rnote is an open-source vector-based drawing app for sketching, handwritten notes and to annotate documents and pictures. It is targeted at students, teachers and those who own a drawing tablet and provides features like Pdf and picture import and export, an infinite canvas and an adaptive UI for big and small screens. - -## Features - -- Adaptive UI focused on stylus input -- Pressure-sensitive stylus input with different and configurable stroke styles -- Create many different shapes with the shape tool -- Move, rotate, resize and modify existing content with the selection tool -- Different document expansion layouts ( fixed pages, continuous vertical, infinite in every direction, .. ) -- Customizable background colors, patterns, sizes -- Customizable page format -- (Optional) pen sounds -- Reconfigurable stylus button shortcuts -- An integrated workspace browser for quick access to related files -- Drag & Drop, clipboard support -- PDF, Bitmap and SVG image import -- Document, document pages and selection export to many formats including SVG, PDF, Xopp -- Save and load the documents in the native .rnote file format -- Tabs to work on multiple documents at the same time -- Autosave, printing - - - SITE: https://github.com/pkgforge-dev/Rnote-AppImage - GITHUB: https://github.com/flxzt/rnote - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/roborock-control-center b/apps/roborock-control-center new file mode 100644 index 000000000..c2fda7817 --- /dev/null +++ b/apps/roborock-control-center @@ -0,0 +1,3 @@ +# roborock-control-center +Control Your Xiaomi Vacuum +# SITES: https://github.com/LazyT/rrcc \ No newline at end of file diff --git a/apps/roborock-control-center.md b/apps/roborock-control-center.md deleted file mode 100644 index dab0fa45b..000000000 --- a/apps/roborock-control-center.md +++ /dev/null @@ -1,8 +0,0 @@ -# ROBOROCK-CONTROL-CENTER - - Control Your Xiaomi Vacuum - - SITE: https://github.com/LazyT/rrcc - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/robrix b/apps/robrix new file mode 100644 index 000000000..946457ad2 --- /dev/null +++ b/apps/robrix @@ -0,0 +1,3 @@ +# robrix +A multi-platform Matrix chat client written in Rust, using the Makepad UI toolkit and the Robius app dev framework. +# SITES: https://github.com/project-robius/robrix \ No newline at end of file diff --git a/apps/robrix.md b/apps/robrix.md deleted file mode 100644 index 720d83144..000000000 --- a/apps/robrix.md +++ /dev/null @@ -1,8 +0,0 @@ -# ROBRIX - - A multi-platform Matrix chat client written in Rust, using the Makepad UI toolkit and the Robius app dev framework. - - SITE: https://github.com/project-robius/robrix - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/rock.so b/apps/rock.so new file mode 100644 index 000000000..f96fce4b6 --- /dev/null +++ b/apps/rock.so @@ -0,0 +1,3 @@ +# rock.so +Messaging + Tasks. +# SITES: https://www.rock.so/ \ No newline at end of file diff --git a/apps/rock.so.md b/apps/rock.so.md deleted file mode 100644 index f5d0acb1e..000000000 --- a/apps/rock.so.md +++ /dev/null @@ -1,8 +0,0 @@ -# ROCK.SO - - Messaging + Tasks. - - SITE: https://www.rock.so/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/rocketfetch b/apps/rocketfetch new file mode 100644 index 000000000..da11de68d --- /dev/null +++ b/apps/rocketfetch @@ -0,0 +1,3 @@ +# rocketfetch +A WIP command line system information tool written with multithreading in rust for performance with toml file configuration. +# SITES: https://github.com/devanlooches/rocketfetch \ No newline at end of file diff --git a/apps/rocketfetch.md b/apps/rocketfetch.md deleted file mode 100644 index d00907b01..000000000 --- a/apps/rocketfetch.md +++ /dev/null @@ -1,8 +0,0 @@ -# ROCKETFETCH - - A WIP command line system information tool written with multithreading in rust for performance with toml file configuration. - - SITE: https://github.com/devanlooches/rocketfetch - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/rocksndiamonds b/apps/rocksndiamonds new file mode 100644 index 000000000..7802fb8b4 --- /dev/null +++ b/apps/rocksndiamonds @@ -0,0 +1,3 @@ +# rocksndiamonds +Unofficial, an open source arcade style game of Boulder Dash, Emerald Mine, and Sokoban. +# SITES: https://github.com/pkgforge-dev/RocksnDiamonds-AppImage \ No newline at end of file diff --git a/apps/rocksndiamonds.md b/apps/rocksndiamonds.md deleted file mode 100644 index 7a555da57..000000000 --- a/apps/rocksndiamonds.md +++ /dev/null @@ -1,8 +0,0 @@ -# ROCKSNDIAMONDS - - Unofficial, an open source arcade style game of Boulder Dash, Emerald Mine, and Sokoban. - - SITE: https://github.com/pkgforge-dev/RocksnDiamonds-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/rofi b/apps/rofi new file mode 100644 index 000000000..b8ce9d24c --- /dev/null +++ b/apps/rofi @@ -0,0 +1,3 @@ +# rofi +AppImage of rofi. +# SITES: https://github.com/Samueru-sama/rofi-AppImage \ No newline at end of file diff --git a/apps/rofi.md b/apps/rofi.md deleted file mode 100644 index c6f097773..000000000 --- a/apps/rofi.md +++ /dev/null @@ -1,8 +0,0 @@ -# ROFI - - AppImage of rofi. - - SITE: https://github.com/Samueru-sama/rofi-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/roller b/apps/roller new file mode 100644 index 000000000..4a655c4c9 --- /dev/null +++ b/apps/roller @@ -0,0 +1,3 @@ +# roller +Reverse engineering the 1995 game Whiplash/Fatal Racing. +# SITES: https://github.com/pkgforge-dev/ROLLER-AppImage \ No newline at end of file diff --git a/apps/roller.md b/apps/roller.md deleted file mode 100644 index 874ab804b..000000000 --- a/apps/roller.md +++ /dev/null @@ -1,8 +0,0 @@ -# ROLLER - - Reverse engineering the 1995 game Whiplash/Fatal Racing. - - SITE: https://github.com/pkgforge-dev/ROLLER-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/roloviewer b/apps/roloviewer new file mode 100644 index 000000000..96947272f --- /dev/null +++ b/apps/roloviewer @@ -0,0 +1,3 @@ +# roloviewer +Image slideshow viewer +# SITES: https://github.com/rosenloecher-it/roloviewer \ No newline at end of file diff --git a/apps/roloviewer.md b/apps/roloviewer.md deleted file mode 100644 index 2d5fbd370..000000000 --- a/apps/roloviewer.md +++ /dev/null @@ -1,8 +0,0 @@ -# ROLOVIEWER - - Image slideshow viewer - - SITE: https://github.com/rosenloecher-it/roloviewer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/root b/apps/root new file mode 100644 index 000000000..943fd8fad --- /dev/null +++ b/apps/root @@ -0,0 +1,3 @@ +# root +Voice, video, and chat plus powerful apps that help your community organize, grow, and thrive. An alternative to Discord. +# SITES: https://www.rootapp.com \ No newline at end of file diff --git a/apps/root.md b/apps/root.md deleted file mode 100644 index c3234e099..000000000 --- a/apps/root.md +++ /dev/null @@ -1,8 +0,0 @@ -# ROOT - - Voice, video, and chat plus powerful apps that help your community organize, grow, and thrive. An alternative to Discord. - - SITE: https://www.rootapp.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/rotki b/apps/rotki new file mode 100644 index 000000000..25d6a406e --- /dev/null +++ b/apps/rotki @@ -0,0 +1,3 @@ +# rotki +A portfolio tracking, asset analytics and tax reporting application specializing +# SITES: https://github.com/rotki/rotki \ No newline at end of file diff --git a/apps/rotki.md b/apps/rotki.md deleted file mode 100644 index ff3383034..000000000 --- a/apps/rotki.md +++ /dev/null @@ -1,8 +0,0 @@ -# ROTKI - - A portfolio tracking, asset analytics and tax reporting application specializing - - SITE: https://github.com/rotki/rotki - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/rpan-studio b/apps/rpan-studio new file mode 100644 index 000000000..5ed195694 --- /dev/null +++ b/apps/rpan-studio @@ -0,0 +1,3 @@ +# rpan-studio +OBS Studio with RPAN integration +# SITES: https://github.com/reddit/rpan-studio \ No newline at end of file diff --git a/apps/rpan-studio.md b/apps/rpan-studio.md deleted file mode 100644 index ea90357a0..000000000 --- a/apps/rpan-studio.md +++ /dev/null @@ -1,8 +0,0 @@ -# RPAN-STUDIO - - OBS Studio with RPAN integration - - SITE: https://github.com/reddit/rpan-studio - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/rpcs3 b/apps/rpcs3 new file mode 100644 index 000000000..4b284ef87 --- /dev/null +++ b/apps/rpcs3 @@ -0,0 +1,3 @@ +# rpcs3 +An open-source PlayStation 3 emulator/debugger written in C++. +# SITES: https://github.com/RPCS3/rpcs3-binaries-linux \ No newline at end of file diff --git a/apps/rpcs3.md b/apps/rpcs3.md deleted file mode 100644 index fa0fb118e..000000000 --- a/apps/rpcs3.md +++ /dev/null @@ -1,8 +0,0 @@ -# RPCS3 - - An open-source PlayStation 3 emulator/debugger written in C++. - - SITE: https://github.com/RPCS3/rpcs3-binaries-linux - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/rquickshare b/apps/rquickshare new file mode 100644 index 000000000..c841305f2 --- /dev/null +++ b/apps/rquickshare @@ -0,0 +1,4 @@ +# rquickshare +Rust implementation of NearbyShare/QuickShare from Android for Linux. +# SCREENSHOTS: https://raw.githubusercontent.com/Martichou/rquickshare/master/.github/demo.png +# SITES: https://github.com/Martichou/rquickshare \ No newline at end of file diff --git a/apps/rquickshare.md b/apps/rquickshare.md deleted file mode 100644 index 037b4bbf5..000000000 --- a/apps/rquickshare.md +++ /dev/null @@ -1,10 +0,0 @@ -# RQUICKSHARE - - Rust implementation of NearbyShare/QuickShare from Android for Linux. - - ![Screenshot](https://raw.githubusercontent.com/Martichou/rquickshare/master/.github/demo.png) - - SITE: https://github.com/Martichou/rquickshare - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/rrip b/apps/rrip new file mode 100644 index 000000000..7e4fff9fd --- /dev/null +++ b/apps/rrip @@ -0,0 +1,3 @@ +# rrip +Bulk image downloader for reddit. +# SITES: https://github.com/mahesh-hegde/rrip \ No newline at end of file diff --git a/apps/rrip.md b/apps/rrip.md deleted file mode 100644 index 88e63d411..000000000 --- a/apps/rrip.md +++ /dev/null @@ -1,8 +0,0 @@ -# RRIP - - Bulk image downloader for reddit. - - SITE: https://github.com/mahesh-hegde/rrip - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/rsdkv3 b/apps/rsdkv3 new file mode 100644 index 000000000..b8eaf0570 --- /dev/null +++ b/apps/rsdkv3 @@ -0,0 +1,3 @@ +# rsdkv3 +A Full Decompilation of Sonic CD (2011) & Retro Engine v3. +# SITES: https://github.com/pkgforge-dev/RSDKv3-AppImage \ No newline at end of file diff --git a/apps/rsdkv3.md b/apps/rsdkv3.md deleted file mode 100644 index 6598bd91b..000000000 --- a/apps/rsdkv3.md +++ /dev/null @@ -1,8 +0,0 @@ -# RSDKV3 - - A Full Decompilation of Sonic CD (2011) & Retro Engine v3. - - SITE: https://github.com/pkgforge-dev/RSDKv3-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/rsdkv4 b/apps/rsdkv4 new file mode 100644 index 000000000..81129d943 --- /dev/null +++ b/apps/rsdkv4 @@ -0,0 +1,3 @@ +# rsdkv4 +A complete decompilation of Sonic 1 & Sonic 2 (2013) & Retro Engine v4. +# SITES: https://github.com/pkgforge-dev/RSDKv4-AppImage \ No newline at end of file diff --git a/apps/rsdkv4.md b/apps/rsdkv4.md deleted file mode 100644 index 820b83277..000000000 --- a/apps/rsdkv4.md +++ /dev/null @@ -1,8 +0,0 @@ -# RSDKV4 - - A complete decompilation of Sonic 1 & Sonic 2 (2013) & Retro Engine v4. - - SITE: https://github.com/pkgforge-dev/RSDKv4-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/rssguard b/apps/rssguard new file mode 100644 index 000000000..d11d249e9 --- /dev/null +++ b/apps/rssguard @@ -0,0 +1,3 @@ +# rssguard +RSS Guard is simple feed reader which supports RSS/ATOM/JSON and many web-based feed services. +# SITES: https://github.com/martinrotter/rssguard \ No newline at end of file diff --git a/apps/rssguard.md b/apps/rssguard.md deleted file mode 100644 index 93db21d06..000000000 --- a/apps/rssguard.md +++ /dev/null @@ -1,8 +0,0 @@ -# RSSGUARD - - RSS Guard is simple feed reader which supports RSS/ATOM/JSON and many web-based feed services. - - SITE: https://github.com/martinrotter/rssguard - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/rtneuron b/apps/rtneuron new file mode 100644 index 000000000..128d31211 --- /dev/null +++ b/apps/rtneuron @@ -0,0 +1,3 @@ +# rtneuron +Interactive visualization framework for geometrically detailed neuron simulations +# SITES: https://github.com/BlueBrain/RTNeuron \ No newline at end of file diff --git a/apps/rtneuron.md b/apps/rtneuron.md deleted file mode 100644 index 99f0097e8..000000000 --- a/apps/rtneuron.md +++ /dev/null @@ -1,8 +0,0 @@ -# RTNEURON - - Interactive visualization framework for geometrically detailed neuron simulations - - SITE: https://github.com/BlueBrain/RTNeuron - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/rubikscube b/apps/rubikscube new file mode 100644 index 000000000..025ad426b --- /dev/null +++ b/apps/rubikscube @@ -0,0 +1,3 @@ +# rubikscube +Rubik's cube in OpenGL. +# SITES: https://github.com/theoden8/rubikscube \ No newline at end of file diff --git a/apps/rubikscube.md b/apps/rubikscube.md deleted file mode 100644 index 6e2a8e735..000000000 --- a/apps/rubikscube.md +++ /dev/null @@ -1,8 +0,0 @@ -# RUBIKSCUBE - - Rubik's cube in OpenGL. - - SITE: https://github.com/theoden8/rubikscube - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/rucola b/apps/rucola new file mode 100644 index 000000000..60710bdf1 --- /dev/null +++ b/apps/rucola @@ -0,0 +1,3 @@ +# rucola +Terminal-based markdown note manager. +# SITES: https://github.com/Linus-Mussmaecher/rucola \ No newline at end of file diff --git a/apps/rucola.md b/apps/rucola.md deleted file mode 100644 index 441bf3fcc..000000000 --- a/apps/rucola.md +++ /dev/null @@ -1,8 +0,0 @@ -# RUCOLA - - Terminal-based markdown note manager. - - SITE: https://github.com/Linus-Mussmaecher/rucola - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/ruffle b/apps/ruffle new file mode 100644 index 000000000..c2b0887cd --- /dev/null +++ b/apps/ruffle @@ -0,0 +1,6 @@ +# ruffle +A Flash Player emulator written in Rust. + + This is the portable official version converted to an AppImage by our team, "Portable Linux Apps" , no additional changes have been made. +# SITES: https://github.com/ruffle-rs/ruffle +# SOURCES: https://github.com/Portable-Linux-Apps/ruffle-AppImage \ No newline at end of file diff --git a/apps/ruffle.md b/apps/ruffle.md deleted file mode 100644 index 44b12fe28..000000000 --- a/apps/ruffle.md +++ /dev/null @@ -1,12 +0,0 @@ -# RUFFLE - - A Flash Player emulator written in Rust. - - This is the portable official version converted to an AppImage by our team, "Portable Linux Apps" , no additional changes have been made. - - SITE: https://github.com/ruffle-rs/ruffle - - APPIMAGE: https://github.com/Portable-Linux-Apps/ruffle-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/runanode b/apps/runanode new file mode 100644 index 000000000..67a379415 --- /dev/null +++ b/apps/runanode @@ -0,0 +1,3 @@ +# runanode +Lets run a node! +# SITES: http://runanode.io \ No newline at end of file diff --git a/apps/runanode.md b/apps/runanode.md deleted file mode 100644 index 4a153a558..000000000 --- a/apps/runanode.md +++ /dev/null @@ -1,8 +0,0 @@ -# RUNANODE - - Lets run a node! - - SITE: http://runanode.io - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/runcon b/apps/runcon new file mode 100644 index 000000000..dcd278be9 --- /dev/null +++ b/apps/runcon @@ -0,0 +1,4 @@ +# runcon + With specified security context. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/runcon.md b/apps/runcon.md deleted file mode 100644 index d18d0cefc..000000000 --- a/apps/runcon.md +++ /dev/null @@ -1,8 +0,0 @@ -# RUNCON - - With specified security context. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/runelite b/apps/runelite new file mode 100644 index 000000000..c9902f1f7 --- /dev/null +++ b/apps/runelite @@ -0,0 +1,5 @@ +# runelite +RuneLite is a free, open source OldSchool RuneScape client. +# SCREENSHOTS: https://oldschool.runescape.wiki/images/thumb/RuneLite_HD.png/1280px-RuneLite_HD.png +# SITES: https://runelite.net/ +# SOURCES: https://github.com/runelite/launcher \ No newline at end of file diff --git a/apps/runelite.md b/apps/runelite.md deleted file mode 100644 index 759980ab5..000000000 --- a/apps/runelite.md +++ /dev/null @@ -1,12 +0,0 @@ -# RUNELITE - - RuneLite is a free, open source OldSchool RuneScape client. - - ![Screenshot](https://oldschool.runescape.wiki/images/thumb/RuneLite_HD.png/1280px-RuneLite_HD.png) - - SITE: https://runelite.net/ - - SOURCE: https://github.com/runelite/launcher - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/runjs b/apps/runjs new file mode 100644 index 000000000..054e87216 --- /dev/null +++ b/apps/runjs @@ -0,0 +1,3 @@ +# runjs +A JavaScript playground for macOS, Windows and Linux. Write code with instant feedback and access to Node.js and browser APIs. +# SITES: https://runjs.app \ No newline at end of file diff --git a/apps/runjs.md b/apps/runjs.md deleted file mode 100644 index 9e1d6a45b..000000000 --- a/apps/runjs.md +++ /dev/null @@ -1,8 +0,0 @@ -# RUNJS - - A JavaScript playground for macOS, Windows and Linux. Write code with instant feedback and access to Node.js and browser APIs. - - SITE: https://runjs.app - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/running-dinner-tool b/apps/running-dinner-tool new file mode 100644 index 000000000..e1d674523 --- /dev/null +++ b/apps/running-dinner-tool @@ -0,0 +1,3 @@ +# running-dinner-tool +Running Dinner Tool +# SITES: https://github.com/john-kloss/Running-Dinner-Tool \ No newline at end of file diff --git a/apps/running-dinner-tool.md b/apps/running-dinner-tool.md deleted file mode 100644 index 7c4ee9f5e..000000000 --- a/apps/running-dinner-tool.md +++ /dev/null @@ -1,8 +0,0 @@ -# RUNNING-DINNER-TOOL - - Running Dinner Tool - - SITE: https://github.com/john-kloss/Running-Dinner-Tool - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/rustdesk b/apps/rustdesk new file mode 100644 index 000000000..e454610d9 --- /dev/null +++ b/apps/rustdesk @@ -0,0 +1,4 @@ +# rustdesk +Virtual / remote desktop infrastructure for everyone! Open source TeamViewer / Citrix alternative. +# SCREENSHOTS: https://user-images.githubusercontent.com/71636191/171661982-430285f0-2e12-4b1d-9957-4a58e375304d.png +# SITES: https://github.com/rustdesk/rustdesk \ No newline at end of file diff --git a/apps/rustdesk-enhanced b/apps/rustdesk-enhanced new file mode 100644 index 000000000..32fa33c46 --- /dev/null +++ b/apps/rustdesk-enhanced @@ -0,0 +1,3 @@ +# rustdesk-enhanced +Unofficial, AppImage of remote desktop app which is able to work on any linux distro. +# SITES: https://github.com/pkgforge-dev/RustDesk-AppImage-Enhanced \ No newline at end of file diff --git a/apps/rustdesk-enhanced.md b/apps/rustdesk-enhanced.md deleted file mode 100644 index 064bc90bc..000000000 --- a/apps/rustdesk-enhanced.md +++ /dev/null @@ -1,8 +0,0 @@ -# RUSTDESK-ENHANCED - - Unofficial, AppImage of remote desktop app which is able to work on any linux distro. - - SITE: https://github.com/pkgforge-dev/RustDesk-AppImage-Enhanced - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/rustdesk.md b/apps/rustdesk.md deleted file mode 100644 index 5d9aa1ae3..000000000 --- a/apps/rustdesk.md +++ /dev/null @@ -1,10 +0,0 @@ -# RUSTDESK - - Virtual / remote desktop infrastructure for everyone! Open source TeamViewer / Citrix alternative. - - ![Screenshot](https://user-images.githubusercontent.com/71636191/171661982-430285f0-2e12-4b1d-9957-4a58e375304d.png) - - SITE: https://github.com/rustdesk/rustdesk - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/rustdict b/apps/rustdict new file mode 100644 index 000000000..87db88e47 --- /dev/null +++ b/apps/rustdict @@ -0,0 +1,3 @@ +# rustdict +A dictionary CLI tool written in Rust inspired by BetaPictoris' dict as well as Matthew Hartman's Word Lookup tool. +# SITES: https://github.com/Idontknow13/rustdict \ No newline at end of file diff --git a/apps/rustdict.md b/apps/rustdict.md deleted file mode 100644 index 4ca9c1574..000000000 --- a/apps/rustdict.md +++ /dev/null @@ -1,8 +0,0 @@ -# RUSTDICT - - A dictionary CLI tool written in Rust inspired by BetaPictoris' dict as well as Matthew Hartman's Word Lookup tool. - - SITE: https://github.com/Idontknow13/rustdict - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/rusty-rain b/apps/rusty-rain new file mode 100644 index 000000000..91f57e45a --- /dev/null +++ b/apps/rusty-rain @@ -0,0 +1,3 @@ +# rusty-rain +A cross platform matrix rain made with Rust. +# SITES: https://github.com/cowboy8625/rusty-rain \ No newline at end of file diff --git a/apps/rusty-rain.md b/apps/rusty-rain.md deleted file mode 100644 index e40fc1a5d..000000000 --- a/apps/rusty-rain.md +++ /dev/null @@ -1,8 +0,0 @@ -# RUSTY-RAIN - - A cross platform matrix rain made with Rust. - - SITE: https://github.com/cowboy8625/rusty-rain - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/rustypaste b/apps/rustypaste new file mode 100644 index 000000000..969036364 --- /dev/null +++ b/apps/rustypaste @@ -0,0 +1,3 @@ +# rustypaste +A minimal file upload/pastebin service. +# SITES: https://github.com/orhun/rustypaste \ No newline at end of file diff --git a/apps/rustypaste.md b/apps/rustypaste.md deleted file mode 100644 index cc97eb048..000000000 --- a/apps/rustypaste.md +++ /dev/null @@ -1,8 +0,0 @@ -# RUSTYPASTE - - A minimal file upload/pastebin service. - - SITE: https://github.com/orhun/rustypaste - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/rvgl b/apps/rvgl new file mode 100644 index 000000000..c56bb1686 --- /dev/null +++ b/apps/rvgl @@ -0,0 +1,3 @@ +# rvgl +Unofficial, a cross-platform rewrite/port of Re-Volt. +# SITES: https://github.com/pkgforge-dev/RVGL-AppImage \ No newline at end of file diff --git a/apps/rvgl.md b/apps/rvgl.md deleted file mode 100644 index 5c362af09..000000000 --- a/apps/rvgl.md +++ /dev/null @@ -1,8 +0,0 @@ -# RVGL - - Unofficial, a cross-platform rewrite/port of Re-Volt. - - SITE: https://github.com/pkgforge-dev/RVGL-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/rx-bin b/apps/rx-bin new file mode 100644 index 000000000..ad5a1aed2 --- /dev/null +++ b/apps/rx-bin @@ -0,0 +1,3 @@ +# rx-bin +A modern and extensible pixel editor implemented in Rust +# SITES: https://rx.cloudhead.io/ \ No newline at end of file diff --git a/apps/rx-bin.md b/apps/rx-bin.md deleted file mode 100644 index 48d81df36..000000000 --- a/apps/rx-bin.md +++ /dev/null @@ -1,8 +0,0 @@ -# RX-BIN - - A modern and extensible pixel editor implemented in Rust - - SITE: https://rx.cloudhead.io/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ryowallet b/apps/ryowallet new file mode 100644 index 000000000..b02476058 --- /dev/null +++ b/apps/ryowallet @@ -0,0 +1,3 @@ +# ryowallet +Modern GUI interface for Ryo Currency +# SITES: https://github.com/ryo-currency/ryo-wallet \ No newline at end of file diff --git a/apps/ryowallet.md b/apps/ryowallet.md deleted file mode 100644 index 530ae1990..000000000 --- a/apps/ryowallet.md +++ /dev/null @@ -1,8 +0,0 @@ -# RYOWALLET - - Modern GUI interface for Ryo Currency - - SITE: https://github.com/ryo-currency/ryo-wallet - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ryujinx b/apps/ryujinx new file mode 100644 index 000000000..065502751 --- /dev/null +++ b/apps/ryujinx @@ -0,0 +1,6 @@ +# ryujinx +Ryujinx is an open-source Nintendo Switch emulator, originally created by gdkchan, written in C#. This emulator aims at providing excellent accuracy and performance, a user-friendly interface and consistent builds. + + It was written from scratch and development on the project began in September 2017. Ryujinx is available on a self-managed GitLab instance under the MIT license. +# SCREENSHOTS: https://git.ryujinx.app/ryubing/ryujinx/-/raw/master/docs/shell.png +# SITES: https://ryujinx.app \ No newline at end of file diff --git a/apps/ryujinx-canary b/apps/ryujinx-canary new file mode 100644 index 000000000..9fb98c9a7 --- /dev/null +++ b/apps/ryujinx-canary @@ -0,0 +1,3 @@ +# ryujinx-canary +An open-source Nintendo Switch emulator, originally created by gdkchan, written in C# (Canary builds). +# SITES: https://ryujinx.app/ \ No newline at end of file diff --git a/apps/ryujinx-canary.md b/apps/ryujinx-canary.md deleted file mode 100644 index baac5372f..000000000 --- a/apps/ryujinx-canary.md +++ /dev/null @@ -1,8 +0,0 @@ -# RYUJINX-CANARY - - An open-source Nintendo Switch emulator, originally created by gdkchan, written in C# (Canary builds). - - SITE: https://ryujinx.app/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/ryujinx.md b/apps/ryujinx.md deleted file mode 100644 index e975eb6d6..000000000 --- a/apps/ryujinx.md +++ /dev/null @@ -1,12 +0,0 @@ -# RYUJINX - - Ryujinx is an open-source Nintendo Switch emulator, originally created by gdkchan, written in C#. This emulator aims at providing excellent accuracy and performance, a user-friendly interface and consistent builds. - - It was written from scratch and development on the project began in September 2017. Ryujinx is available on a self-managed GitLab instance under the MIT license. - - ![Screenshot](https://git.ryujinx.app/ryubing/ryujinx/-/raw/master/docs/shell.png) - - SITE: https://ryujinx.app - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/s b/apps/s new file mode 100644 index 000000000..0dd94e3d8 --- /dev/null +++ b/apps/s @@ -0,0 +1,3 @@ +# s +Open a web search in your terminal. +# SITES: https://github.com/zquestz/s \ No newline at end of file diff --git a/apps/s.md b/apps/s.md deleted file mode 100644 index 1f4453cef..000000000 --- a/apps/s.md +++ /dev/null @@ -1,8 +0,0 @@ -# S - - Open a web search in your terminal. - - SITE: https://github.com/zquestz/s - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/s3drive b/apps/s3drive new file mode 100644 index 000000000..806221567 --- /dev/null +++ b/apps/s3drive @@ -0,0 +1,3 @@ +# s3drive +Convert S3, SFTP, WebDAV or Rclone back-end into your encrypted storage. +# SITES: https://github.com/s3drive/app \ No newline at end of file diff --git a/apps/s3drive.md b/apps/s3drive.md deleted file mode 100644 index 61c1d1e4f..000000000 --- a/apps/s3drive.md +++ /dev/null @@ -1,8 +0,0 @@ -# S3DRIVE - - Convert S3, SFTP, WebDAV or Rclone back-end into your encrypted storage. - - SITE: https://github.com/s3drive/app - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/sabaki b/apps/sabaki new file mode 100644 index 000000000..65c59753c --- /dev/null +++ b/apps/sabaki @@ -0,0 +1,4 @@ +# sabaki +Sabaki is a modern, elegant, cross-platform Go/Baduk/Weiqi board and SGF editor for a more civilized age. +# SITES: https://sabaki.yichuanshen.de +# SOURCES: https://github.com/SabakiHQ/Sabaki \ No newline at end of file diff --git a/apps/sabaki.md b/apps/sabaki.md deleted file mode 100644 index 451b021c3..000000000 --- a/apps/sabaki.md +++ /dev/null @@ -1,10 +0,0 @@ -# SABAKI - - Sabaki is a modern, elegant, cross-platform Go/Baduk/Weiqi board and SGF editor for a more civilized age. - - SITE: https://sabaki.yichuanshen.de - - SOURCE: https://github.com/SabakiHQ/Sabaki - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/saber b/apps/saber new file mode 100644 index 000000000..f619bdffb --- /dev/null +++ b/apps/saber @@ -0,0 +1,3 @@ +# saber +A (work-in-progress) cross-platform libre handwritten notes app +# SITES: https://github.com/adil192/saber \ No newline at end of file diff --git a/apps/saber.md b/apps/saber.md deleted file mode 100644 index 64d464dec..000000000 --- a/apps/saber.md +++ /dev/null @@ -1,8 +0,0 @@ -# SABER - - A (work-in-progress) cross-platform libre handwritten notes app - - SITE: https://github.com/adil192/saber - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/sacdextractgui b/apps/sacdextractgui new file mode 100644 index 000000000..af85a7368 --- /dev/null +++ b/apps/sacdextractgui @@ -0,0 +1,4 @@ +# sacdextractgui + Unofficial AppImage of SACDExtractGUI. +# SITES: https://github.com/pkgforge-dev/sacdextractgui-appimage +# SOURCES: https://github.com/pkgforge-dev/sacdextractgui-appimage \ No newline at end of file diff --git a/apps/sacdextractgui.md b/apps/sacdextractgui.md deleted file mode 100644 index 62f4e54fc..000000000 --- a/apps/sacdextractgui.md +++ /dev/null @@ -1,8 +0,0 @@ -# SACDEXTRACTGUI - - Unofficial AppImage of SACDExtractGUI. - - SITE: https://github.com/pkgforge-dev/sacdextractgui-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/safe-multisig b/apps/safe-multisig new file mode 100644 index 000000000..d5f9d0ef3 --- /dev/null +++ b/apps/safe-multisig @@ -0,0 +1,3 @@ +# safe-multisig +Allowing crypto users manage funds in a safer way +# SITES: https://github.com/gnosis/safe-react \ No newline at end of file diff --git a/apps/safe-multisig.md b/apps/safe-multisig.md deleted file mode 100644 index 1ffd7e6da..000000000 --- a/apps/safe-multisig.md +++ /dev/null @@ -1,8 +0,0 @@ -# SAFE-MULTISIG - - Allowing crypto users manage funds in a safer way - - SITE: https://github.com/gnosis/safe-react - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/safelight b/apps/safelight new file mode 100644 index 000000000..aaa7c7997 --- /dev/null +++ b/apps/safelight @@ -0,0 +1,4 @@ +# safelight + 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. +# SITES: https://github.com/anthonyreimche/SafeLight +# SOURCES: https://github.com/anthonyreimche/SafeLight \ No newline at end of file diff --git a/apps/safelight.md b/apps/safelight.md deleted file mode 100644 index 631483f87..000000000 --- a/apps/safelight.md +++ /dev/null @@ -1,8 +0,0 @@ -# SAFELIGHT - - 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. - - SITE: https://github.com/anthonyreimche/SafeLight - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/sameboy b/apps/sameboy new file mode 100644 index 000000000..f03c90ef6 --- /dev/null +++ b/apps/sameboy @@ -0,0 +1,4 @@ +# sameboy + Unofficial AppImage of SameBoy. +# SITES: https://github.com/pkgforge-dev/sameboy-appimage +# SOURCES: https://github.com/pkgforge-dev/sameboy-appimage \ No newline at end of file diff --git a/apps/sameboy.md b/apps/sameboy.md deleted file mode 100644 index 6e6bbaf5e..000000000 --- a/apps/sameboy.md +++ /dev/null @@ -1,8 +0,0 @@ -# SAMEBOY - - Unofficial AppImage of SameBoy. - - SITE: https://github.com/pkgforge-dev/sameboy-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/samira b/apps/samira new file mode 100644 index 000000000..a23a34411 --- /dev/null +++ b/apps/samira @@ -0,0 +1,3 @@ +# samira +Steam achievement manager for Linux written with Tauri and Rust. +# SITES: https://github.com/jsnli/Samira \ No newline at end of file diff --git a/apps/samira.md b/apps/samira.md deleted file mode 100644 index e79d23601..000000000 --- a/apps/samira.md +++ /dev/null @@ -1,8 +0,0 @@ -# SAMIRA - - Steam achievement manager for Linux written with Tauri and Rust. - - SITE: https://github.com/jsnli/Samira - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/samrewritten b/apps/samrewritten new file mode 100644 index 000000000..56c84e6cf --- /dev/null +++ b/apps/samrewritten @@ -0,0 +1,3 @@ +# samrewritten +Steam Achievement Manager For Linux. Rewritten in C++. +# SITES: https://github.com/PaulCombal/SamRewritten \ No newline at end of file diff --git a/apps/samrewritten.md b/apps/samrewritten.md deleted file mode 100644 index fbe32ec49..000000000 --- a/apps/samrewritten.md +++ /dev/null @@ -1,8 +0,0 @@ -# SAMREWRITTEN - - Steam Achievement Manager For Linux. Rewritten in C++. - - SITE: https://github.com/PaulCombal/SamRewritten - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/sanicball b/apps/sanicball new file mode 100644 index 000000000..1e01e126e --- /dev/null +++ b/apps/sanicball @@ -0,0 +1,3 @@ +# sanicball +An extraordinarily fast racing game. +# SITES: https://github.com/pkgforge-dev/Sanicball-AppImage \ No newline at end of file diff --git a/apps/sanicball.md b/apps/sanicball.md deleted file mode 100644 index 995b47e7e..000000000 --- a/apps/sanicball.md +++ /dev/null @@ -1,8 +0,0 @@ -# SANICBALL - - An extraordinarily fast racing game. - - SITE: https://github.com/pkgforge-dev/Sanicball-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/saphyr b/apps/saphyr new file mode 100644 index 000000000..2bdb8450b --- /dev/null +++ b/apps/saphyr @@ -0,0 +1,3 @@ +# saphyr +A C++ like compiler. +# SITES: https://github.com/jdm64/saphyr \ No newline at end of file diff --git a/apps/saphyr.md b/apps/saphyr.md deleted file mode 100644 index daeb7da08..000000000 --- a/apps/saphyr.md +++ /dev/null @@ -1,8 +0,0 @@ -# SAPHYR - - A C++ like compiler. - - SITE: https://github.com/jdm64/saphyr - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/sas b/apps/sas new file mode 100644 index 000000000..f252e9de0 --- /dev/null +++ b/apps/sas @@ -0,0 +1,3 @@ +# sas +Tool to sandbox AppImages with bubblewrap easily. +# SITES: https://github.com/Samueru-sama/simple-appimage-sandbox \ No newline at end of file diff --git a/apps/sas.md b/apps/sas.md deleted file mode 100644 index 105e4325a..000000000 --- a/apps/sas.md +++ /dev/null @@ -1,8 +0,0 @@ -# SAS - - Tool to sandbox AppImages with bubblewrap easily. - - SITE: https://github.com/Samueru-sama/simple-appimage-sandbox - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/sat b/apps/sat new file mode 100644 index 000000000..b52210e84 --- /dev/null +++ b/apps/sat @@ -0,0 +1,3 @@ +# sat +Simple AppImage thumbnailer in POSIX shell +# SITES: https://github.com/Samueru-sama/simple-appimage-thumbnailer \ No newline at end of file diff --git a/apps/sat.md b/apps/sat.md deleted file mode 100644 index 7780083ae..000000000 --- a/apps/sat.md +++ /dev/null @@ -1,8 +0,0 @@ -# SAT - - Simple AppImage thumbnailer in POSIX shell - - SITE: https://github.com/Samueru-sama/simple-appimage-thumbnailer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/satisfactory b/apps/satisfactory new file mode 100644 index 000000000..354100107 --- /dev/null +++ b/apps/satisfactory @@ -0,0 +1,3 @@ +# satisfactory +Satisfactory Mod Manager (appimage). +# SITES: https://github.com/satisfactorymodding/SatisfactoryModManager \ No newline at end of file diff --git a/apps/satisfactory.md b/apps/satisfactory.md deleted file mode 100644 index 45111afd9..000000000 --- a/apps/satisfactory.md +++ /dev/null @@ -1,8 +0,0 @@ -# SATISFACTORY - - Satisfactory Mod Manager (appimage). - - SITE: https://github.com/satisfactorymodding/SatisfactoryModManager - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/satty b/apps/satty new file mode 100644 index 000000000..eb555873b --- /dev/null +++ b/apps/satty @@ -0,0 +1,3 @@ +# satty +Satty - Modern Screenshot Annotation. +# SITES: https://github.com/pkgforge-dev/Satty-AppImage \ No newline at end of file diff --git a/apps/satty.md b/apps/satty.md deleted file mode 100644 index efe1f587e..000000000 --- a/apps/satty.md +++ /dev/null @@ -1,8 +0,0 @@ -# SATTY - - Satty - Modern Screenshot Annotation. - - SITE: https://github.com/pkgforge-dev/Satty-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/saucedacity b/apps/saucedacity new file mode 100644 index 000000000..6db595f46 --- /dev/null +++ b/apps/saucedacity @@ -0,0 +1,3 @@ +# saucedacity +A free open-source audio editor based on Audacity focusing on general improvements. Will be the new future codebase of Tenacity starting with 1.3. +# SITES: https://github.com/tenacityteam/saucedacity \ No newline at end of file diff --git a/apps/saucedacity.md b/apps/saucedacity.md deleted file mode 100644 index c3f50250b..000000000 --- a/apps/saucedacity.md +++ /dev/null @@ -1,8 +0,0 @@ -# SAUCEDACITY - - A free open-source audio editor based on Audacity focusing on general improvements. Will be the new future codebase of Tenacity starting with 1.3. - - SITE: https://github.com/tenacityteam/saucedacity - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/savvycan b/apps/savvycan new file mode 100644 index 000000000..01f3fa634 --- /dev/null +++ b/apps/savvycan @@ -0,0 +1,3 @@ +# savvycan +Facilitates reverse engineering of canbus captures +# SITES: https://github.com/collin80/SavvyCAN \ No newline at end of file diff --git a/apps/savvycan.md b/apps/savvycan.md deleted file mode 100644 index 32a7bda89..000000000 --- a/apps/savvycan.md +++ /dev/null @@ -1,8 +0,0 @@ -# SAVVYCAN - - Facilitates reverse engineering of canbus captures - - SITE: https://github.com/collin80/SavvyCAN - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/sayonara b/apps/sayonara new file mode 100644 index 000000000..c8e7eed0b --- /dev/null +++ b/apps/sayonara @@ -0,0 +1,3 @@ +# sayonara +Music player and music library admininstration +# SITES: : https://sayonara-player.com \ No newline at end of file diff --git a/apps/sayonara-player-enhanced b/apps/sayonara-player-enhanced new file mode 100644 index 000000000..c06a458a5 --- /dev/null +++ b/apps/sayonara-player-enhanced @@ -0,0 +1,3 @@ +# sayonara-player-enhanced +Unofficial, a small, clear and fast audio player. +# SITES: https://github.com/pkgforge-dev/Sayonara-Player-AppImage-Enhanced \ No newline at end of file diff --git a/apps/sayonara-player-enhanced.md b/apps/sayonara-player-enhanced.md deleted file mode 100644 index af35dbd73..000000000 --- a/apps/sayonara-player-enhanced.md +++ /dev/null @@ -1,8 +0,0 @@ -# SAYONARA-PLAYER-ENHANCED - - Unofficial, a small, clear and fast audio player. - - SITE: https://github.com/pkgforge-dev/Sayonara-Player-AppImage-Enhanced - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/sayonara.md b/apps/sayonara.md deleted file mode 100644 index 92931586e..000000000 --- a/apps/sayonara.md +++ /dev/null @@ -1,8 +0,0 @@ -# SAYONARA - - Music player and music library admininstration - - SITE: : https://sayonara-player.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/sbe b/apps/sbe new file mode 100644 index 000000000..464a5feb0 --- /dev/null +++ b/apps/sbe @@ -0,0 +1,3 @@ +# sbe +An unofficial Scrapbox desktop app. +# SITES: https://github.com/kondoumh/sbe \ No newline at end of file diff --git a/apps/sbe.md b/apps/sbe.md deleted file mode 100644 index a3c004ee5..000000000 --- a/apps/sbe.md +++ /dev/null @@ -1,8 +0,0 @@ -# SBE - - An unofficial Scrapbox desktop app. - - SITE: https://github.com/kondoumh/sbe - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/sblauncher b/apps/sblauncher new file mode 100644 index 000000000..8330d5866 --- /dev/null +++ b/apps/sblauncher @@ -0,0 +1,3 @@ +# sblauncher +Minecraft Launcher. +# SITES: https://github.com/SamboyCoding/SamboyLauncher-JS \ No newline at end of file diff --git a/apps/sblauncher.md b/apps/sblauncher.md deleted file mode 100644 index bee13b8d8..000000000 --- a/apps/sblauncher.md +++ /dev/null @@ -1,10 +0,0 @@ -# SBLAUNCHER - - Minecraft Launcher. - - SITE: https://github.com/SamboyCoding/SamboyLauncher-JS - - SEE ALSO: https://launcher.samboycoding.me - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/sc-controller b/apps/sc-controller new file mode 100644 index 000000000..aed351002 --- /dev/null +++ b/apps/sc-controller @@ -0,0 +1,3 @@ +# sc-controller +User-mode driver and GTK3 based GUI for Steam Controller +# SITES: https://github.com/kozec/sc-controller \ No newline at end of file diff --git a/apps/sc-controller.md b/apps/sc-controller.md deleted file mode 100644 index 08a71ba38..000000000 --- a/apps/sc-controller.md +++ /dev/null @@ -1,8 +0,0 @@ -# SC-CONTROLLER - - User-mode driver and GTK3 based GUI for Steam Controller - - SITE: https://github.com/kozec/sc-controller - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/scatter b/apps/scatter new file mode 100644 index 000000000..0342a7a8b --- /dev/null +++ b/apps/scatter @@ -0,0 +1,3 @@ +# scatter +Scatter desktop signature server. +# SITES: https://github.com/GetScatter/ScatterDesktop \ No newline at end of file diff --git a/apps/scatter.md b/apps/scatter.md deleted file mode 100644 index e8163e897..000000000 --- a/apps/scatter.md +++ /dev/null @@ -1,8 +0,0 @@ -# SCATTER - - Scatter desktop signature server. - - SITE: https://github.com/GetScatter/ScatterDesktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/scavengers b/apps/scavengers new file mode 100644 index 000000000..087cae3af --- /dev/null +++ b/apps/scavengers @@ -0,0 +1,3 @@ +# scavengers +Unity Roguelike tutorial Game. +# SITES: https://github.com/RomainL972/Scavengers \ No newline at end of file diff --git a/apps/scavengers.md b/apps/scavengers.md deleted file mode 100644 index 3191319f2..000000000 --- a/apps/scavengers.md +++ /dev/null @@ -1,7 +0,0 @@ -# SCAVENGERS - - Unity Roguelike tutorial Game. - - SITE: https://github.com/RomainL972/Scavengers - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/schildi-revenge b/apps/schildi-revenge new file mode 100644 index 000000000..69dbe053c --- /dev/null +++ b/apps/schildi-revenge @@ -0,0 +1,3 @@ +# schildi-revenge +Matrix client for desktop written in Kotlin and using the Matrix Rust SDK. +# SITES: https://github.com/SchildiChat/schildi-revenge \ No newline at end of file diff --git a/apps/schildi-revenge.md b/apps/schildi-revenge.md deleted file mode 100644 index d0f9284a5..000000000 --- a/apps/schildi-revenge.md +++ /dev/null @@ -1,8 +0,0 @@ -# SCHILDI-REVENGE - - Matrix client for desktop written in Kotlin and using the Matrix Rust SDK. - - SITE: https://github.com/SchildiChat/schildi-revenge - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/school-sections b/apps/school-sections new file mode 100644 index 000000000..f4802e851 --- /dev/null +++ b/apps/school-sections @@ -0,0 +1,3 @@ +# school-sections +This project was generated with Angular CLI version 1.7.4. +# SITES: https://github.com/ArtBelll/school-sections \ No newline at end of file diff --git a/apps/school-sections.md b/apps/school-sections.md deleted file mode 100644 index 6a88d3bac..000000000 --- a/apps/school-sections.md +++ /dev/null @@ -1,8 +0,0 @@ -# SCHOOL-SECTIONS - - This project was generated with Angular CLI version 1.7.4. - - SITE: https://github.com/ArtBelll/school-sections - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/scilab b/apps/scilab new file mode 100644 index 000000000..9fc922081 --- /dev/null +++ b/apps/scilab @@ -0,0 +1,3 @@ +# scilab +Scientific software package for numerical computations +# SITES: https://github.com/davidcl/Scilab.AppDir \ No newline at end of file diff --git a/apps/scilab.md b/apps/scilab.md deleted file mode 100644 index 82508bccf..000000000 --- a/apps/scilab.md +++ /dev/null @@ -1,8 +0,0 @@ -# SCILAB - - Scientific software package for numerical computations - - SITE: https://github.com/davidcl/Scilab.AppDir - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/sciqlop b/apps/sciqlop new file mode 100644 index 000000000..8899b968e --- /dev/null +++ b/apps/sciqlop @@ -0,0 +1,3 @@ +# sciqlop +SciQLop is an ergonomic and efficient application to browse and label in situ plasma measurements from multi-mission satellite data. +# SITES: https://github.com/SciQLop/SciQLop \ No newline at end of file diff --git a/apps/sciqlop.md b/apps/sciqlop.md deleted file mode 100644 index 189edbfca..000000000 --- a/apps/sciqlop.md +++ /dev/null @@ -1,8 +0,0 @@ -# SCIQLOP - - SciQLop is an ergonomic and efficient application to browse and label in situ plasma measurements from multi-mission satellite data. - - SITE: https://github.com/SciQLop/SciQLop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/scopy b/apps/scopy new file mode 100644 index 000000000..39f1dc6bd --- /dev/null +++ b/apps/scopy @@ -0,0 +1,3 @@ +# scopy +A software oscilloscope and signal analysis toolset. +# SITES: https://github.com/analogdevicesinc/scopy \ No newline at end of file diff --git a/apps/scopy.md b/apps/scopy.md deleted file mode 100644 index 3787cb1fa..000000000 --- a/apps/scopy.md +++ /dev/null @@ -1,8 +0,0 @@ -# SCOPY - - A software oscilloscope and signal analysis toolset. - - SITE: https://github.com/analogdevicesinc/scopy - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/scraper b/apps/scraper new file mode 100644 index 000000000..1ef2c496f --- /dev/null +++ b/apps/scraper @@ -0,0 +1,3 @@ +# scraper +Simple desktop scraper app. +# SITES: https://github.com/cedoor/scraper \ No newline at end of file diff --git a/apps/scraper.md b/apps/scraper.md deleted file mode 100644 index 99a3cd221..000000000 --- a/apps/scraper.md +++ /dev/null @@ -1,8 +0,0 @@ -# SCRAPER - - Simple desktop scraper app. - - SITE: https://github.com/cedoor/scraper - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/scratux b/apps/scratux new file mode 100644 index 000000000..34b7209a1 --- /dev/null +++ b/apps/scratux @@ -0,0 +1,3 @@ +# scratux +A simple project that aims to provide Free/Libre Open Source Linux binaries of Scratch Desktop. +# SITES: https://github.com/scratux/scratux \ No newline at end of file diff --git a/apps/scratux.md b/apps/scratux.md deleted file mode 100644 index 47d377100..000000000 --- a/apps/scratux.md +++ /dev/null @@ -1,8 +0,0 @@ -# SCRATUX - - A simple project that aims to provide Free/Libre Open Source Linux binaries of Scratch Desktop. - - SITE: https://github.com/scratux/scratux - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/scrcpy b/apps/scrcpy new file mode 100644 index 000000000..ae6bcbfec --- /dev/null +++ b/apps/scrcpy @@ -0,0 +1,5 @@ +# scrcpy +Display and control your Android device. + + An unofficial AppImage for the open source android screen mirroring software scrcpy. Continuous Integration to create preconfigured AppImages of scrcpy. +# SITES: https://github.com/pkgforge-dev/scrcpy-AppImage \ No newline at end of file diff --git a/apps/scrcpy.md b/apps/scrcpy.md deleted file mode 100644 index c3c7f354c..000000000 --- a/apps/scrcpy.md +++ /dev/null @@ -1,10 +0,0 @@ -# SCRCPY - - Display and control your Android device. - - An unofficial AppImage for the open source android screen mirroring software scrcpy. Continuous Integration to create preconfigured AppImages of scrcpy. - - SITE: https://github.com/pkgforge-dev/scrcpy-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/scrcpygui b/apps/scrcpygui new file mode 100644 index 000000000..ca6e457d2 --- /dev/null +++ b/apps/scrcpygui @@ -0,0 +1,3 @@ +# scrcpygui +A user-friendly GUI for scrcpy with added functionalities. +# SITES: https://github.com/pizi-0/flutter-scrcpygui \ No newline at end of file diff --git a/apps/scrcpygui.md b/apps/scrcpygui.md deleted file mode 100644 index b97d83f1f..000000000 --- a/apps/scrcpygui.md +++ /dev/null @@ -1,8 +0,0 @@ -# SCRCPYGUI - - A user-friendly GUI for scrcpy with added functionalities. - - SITE: https://github.com/pizi-0/flutter-scrcpygui - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/screenarc b/apps/screenarc new file mode 100644 index 000000000..2fd81ae35 --- /dev/null +++ b/apps/screenarc @@ -0,0 +1,3 @@ +# screenarc +ScreenArc – Cross-platform screen recorder & editor with automatic cinematic zooms, mouse tracking, and effortless video creation. +# SITES: https://github.com/tamnguyenvan/screenarc \ No newline at end of file diff --git a/apps/screenarc.md b/apps/screenarc.md deleted file mode 100644 index 0b57e5cb0..000000000 --- a/apps/screenarc.md +++ /dev/null @@ -1,8 +0,0 @@ -# SCREENARC - - ScreenArc – Cross-platform screen recorder & editor with automatic cinematic zooms, mouse tracking, and effortless video creation. - - SITE: https://github.com/tamnguyenvan/screenarc - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/screencloud b/apps/screencloud new file mode 100644 index 000000000..22ce37d87 --- /dev/null +++ b/apps/screencloud @@ -0,0 +1,3 @@ +# screencloud +Capture and share screenshots easily +# SITES: https://github.com/olav-st/screencloud \ No newline at end of file diff --git a/apps/screencloud.md b/apps/screencloud.md deleted file mode 100644 index 0d941e721..000000000 --- a/apps/screencloud.md +++ /dev/null @@ -1,8 +0,0 @@ -# SCREENCLOUD - - Capture and share screenshots easily - - SITE: https://github.com/olav-st/screencloud - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/scribus b/apps/scribus new file mode 100644 index 000000000..f32af853a --- /dev/null +++ b/apps/scribus @@ -0,0 +1,3 @@ +# scribus +Powerful desktop publishing software. +# SITES: https://sourceforge.net/projects/scribus \ No newline at end of file diff --git a/apps/scribus.md b/apps/scribus.md deleted file mode 100644 index d189776c0..000000000 --- a/apps/scribus.md +++ /dev/null @@ -1,8 +0,0 @@ -# SCRIBUS - - Powerful desktop publishing software. - - SITE: https://sourceforge.net/projects/scribus - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/scrite b/apps/scrite new file mode 100644 index 000000000..df442d1d5 --- /dev/null +++ b/apps/scrite @@ -0,0 +1,3 @@ +# scrite +Multilingual Screenplay Writing App from TERIFLIX +# SITES: https://www.scrite.io \ No newline at end of file diff --git a/apps/scrite.md b/apps/scrite.md deleted file mode 100644 index ea8be26f3..000000000 --- a/apps/scrite.md +++ /dev/null @@ -1,8 +0,0 @@ -# SCRITE - - Multilingual Screenplay Writing App from TERIFLIX - - SITE: https://www.scrite.io - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/scrum-retroboard b/apps/scrum-retroboard new file mode 100644 index 000000000..a4400eeff --- /dev/null +++ b/apps/scrum-retroboard @@ -0,0 +1,3 @@ +# scrum-retroboard +Electron application based on React, React Router, Webpack, React Hot Loader +# SITES: https://github.com/stefanDeveloper/scrum-retroboard \ No newline at end of file diff --git a/apps/scrum-retroboard.md b/apps/scrum-retroboard.md deleted file mode 100644 index 12ffd1b3a..000000000 --- a/apps/scrum-retroboard.md +++ /dev/null @@ -1,8 +0,0 @@ -# SCRUM-RETROBOARD - - Electron application based on React, React Router, Webpack, React Hot Loader - - SITE: https://github.com/stefanDeveloper/scrum-retroboard - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/scummvm b/apps/scummvm new file mode 100644 index 000000000..d83ef831d --- /dev/null +++ b/apps/scummvm @@ -0,0 +1,3 @@ +# scummvm +Unofficial, A 'virtual machine' for several classic graphical point-and-click adventure games +# SITES: https://github.com/pkgforge-dev/ScummVM-AppImage \ No newline at end of file diff --git a/apps/scummvm.md b/apps/scummvm.md deleted file mode 100644 index acdc313c6..000000000 --- a/apps/scummvm.md +++ /dev/null @@ -1,8 +0,0 @@ -# SCUMMVM - - Unofficial, A 'virtual machine' for several classic graphical point-and-click adventure games - - SITE: https://github.com/pkgforge-dev/ScummVM-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/scytale b/apps/scytale new file mode 100644 index 000000000..4bd9415b8 --- /dev/null +++ b/apps/scytale @@ -0,0 +1,3 @@ +# scytale +Scytale Desktop Client for Linux +# SITES: https://github.com/cpapazaf/scytale-desktop-app \ No newline at end of file diff --git a/apps/scytale.md b/apps/scytale.md deleted file mode 100644 index 7a4f7573b..000000000 --- a/apps/scytale.md +++ /dev/null @@ -1,8 +0,0 @@ -# SCYTALE - - Scytale Desktop Client for Linux - - SITE: https://github.com/cpapazaf/scytale-desktop-app - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/sd b/apps/sd new file mode 100644 index 000000000..29ad22802 --- /dev/null +++ b/apps/sd @@ -0,0 +1,3 @@ +# sd +Intuitive find & replace CLI (sed alternative) +# SITES: https://github.com/chmln/sd \ No newline at end of file diff --git a/apps/sd.md b/apps/sd.md deleted file mode 100644 index 962701758..000000000 --- a/apps/sd.md +++ /dev/null @@ -1,8 +0,0 @@ -# SD - - Intuitive find & replace CLI (sed alternative) - - SITE: https://github.com/chmln/sd - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/sdlpal b/apps/sdlpal new file mode 100644 index 000000000..c1d72339a --- /dev/null +++ b/apps/sdlpal @@ -0,0 +1,3 @@ +# sdlpal +SDL-based reimplementation of the classic Chinese-language RPG known as PAL. +# SITES: https://github.com/sdlpal/sdlpal \ No newline at end of file diff --git a/apps/sdlpal.md b/apps/sdlpal.md deleted file mode 100644 index 223ae9b9b..000000000 --- a/apps/sdlpal.md +++ /dev/null @@ -1,8 +0,0 @@ -# SDLPAL - - SDL-based reimplementation of the classic Chinese-language RPG known as PAL. - - SITE: https://github.com/sdlpal/sdlpal - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/sdlpop b/apps/sdlpop new file mode 100644 index 000000000..8f3e9f414 --- /dev/null +++ b/apps/sdlpop @@ -0,0 +1,3 @@ +# sdlpop +An open-source port of Prince of Persia. +# SITES: https://github.com/pkgforge-dev/SDLPoP-AppImage \ No newline at end of file diff --git a/apps/sdlpop.md b/apps/sdlpop.md deleted file mode 100644 index 55834a12a..000000000 --- a/apps/sdlpop.md +++ /dev/null @@ -1,8 +0,0 @@ -# SDLPOP - - An open-source port of Prince of Persia. - - SITE: https://github.com/pkgforge-dev/SDLPoP-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/seafile b/apps/seafile new file mode 100644 index 000000000..e58c10326 --- /dev/null +++ b/apps/seafile @@ -0,0 +1,3 @@ +# seafile +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. +# SITES: https://github.com/haiwen/seafile-client \ No newline at end of file diff --git a/apps/seafile-cli b/apps/seafile-cli new file mode 100644 index 000000000..a6374ca98 --- /dev/null +++ b/apps/seafile-cli @@ -0,0 +1,3 @@ +# seafile-cli +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. +# SITES: https://github.com/haiwen/seafile-client \ No newline at end of file diff --git a/apps/seafile-cli.md b/apps/seafile-cli.md deleted file mode 100644 index 2c6099ff2..000000000 --- a/apps/seafile-cli.md +++ /dev/null @@ -1,8 +0,0 @@ -# SEAFILE-CLI - - 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. - - SITE: https://github.com/haiwen/seafile-client - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/seafile.md b/apps/seafile.md deleted file mode 100644 index 53532341b..000000000 --- a/apps/seafile.md +++ /dev/null @@ -1,8 +0,0 @@ -# SEAFILE - - 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. - - SITE: https://github.com/haiwen/seafile-client - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/seanime b/apps/seanime new file mode 100644 index 000000000..6f91adcbf --- /dev/null +++ b/apps/seanime @@ -0,0 +1,3 @@ +# seanime +Open-source media server with a web interface and desktop app for anime and manga. +# SITES: https://github.com/5rahim/seanime \ No newline at end of file diff --git a/apps/seanime.md b/apps/seanime.md deleted file mode 100644 index 2efd1d5de..000000000 --- a/apps/seanime.md +++ /dev/null @@ -1,8 +0,0 @@ -# SEANIME - - Open-source media server with a web interface and desktop app for anime and manga. - - SITE: https://github.com/5rahim/seanime - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/secops b/apps/secops new file mode 100644 index 000000000..b34cc4ea9 --- /dev/null +++ b/apps/secops @@ -0,0 +1,3 @@ +# secops +An Linux Desktop Application for managing security. +# SITES: https://github.com/KunalSin9h/secops \ No newline at end of file diff --git a/apps/secops.md b/apps/secops.md deleted file mode 100644 index 359a1c93e..000000000 --- a/apps/secops.md +++ /dev/null @@ -1,8 +0,0 @@ -# SECOPS - - An Linux Desktop Application for managing security. - - SITE: https://github.com/KunalSin9h/secops - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/secrets b/apps/secrets new file mode 100644 index 000000000..36976b117 --- /dev/null +++ b/apps/secrets @@ -0,0 +1,3 @@ +# secrets +Unofficial AppImage of the Secrets keepass and 2FA password manager. +# SITES: https://github.com/pkgforge-dev/Secrets-AppImage \ No newline at end of file diff --git a/apps/secrets.md b/apps/secrets.md deleted file mode 100644 index ca19bb197..000000000 --- a/apps/secrets.md +++ /dev/null @@ -1,8 +0,0 @@ -# SECRETS - - Unofficial AppImage of the Secrets keepass and 2FA password manager. - - SITE: https://github.com/pkgforge-dev/Secrets-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/sed b/apps/sed new file mode 100644 index 000000000..3f91d6221 --- /dev/null +++ b/apps/sed @@ -0,0 +1,3 @@ +# sed +GNU stream editor for filtering and transforming text. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/sed.md b/apps/sed.md deleted file mode 100644 index 9813e0d93..000000000 --- a/apps/sed.md +++ /dev/null @@ -1,8 +0,0 @@ -# SED - - GNU stream editor for filtering and transforming text. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/seedit b/apps/seedit new file mode 100644 index 000000000..b8f4e5a37 --- /dev/null +++ b/apps/seedit @@ -0,0 +1,3 @@ +# seedit +A GUI for plebbit similar to old.reddit. +# SITES: https://github.com/plebbit/seedit \ No newline at end of file diff --git a/apps/seedit.md b/apps/seedit.md deleted file mode 100644 index 37c1ba29c..000000000 --- a/apps/seedit.md +++ /dev/null @@ -1,8 +0,0 @@ -# SEEDIT - - A GUI for plebbit similar to old.reddit. - - SITE: https://github.com/plebbit/seedit - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/seismic b/apps/seismic new file mode 100644 index 000000000..9783283b2 --- /dev/null +++ b/apps/seismic @@ -0,0 +1,3 @@ +# seismic +A taskbar app for displaying USGS magnitude 2.5+ earthquakes from the past day. +# SITES: https://github.com/breadthe/seismic \ No newline at end of file diff --git a/apps/seismic.md b/apps/seismic.md deleted file mode 100644 index ef007b91b..000000000 --- a/apps/seismic.md +++ /dev/null @@ -1,8 +0,0 @@ -# SEISMIC - - A taskbar app for displaying USGS magnitude 2.5+ earthquakes from the past day. - - SITE: https://github.com/breadthe/seismic - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/selenium-ide b/apps/selenium-ide new file mode 100644 index 000000000..0a104276e --- /dev/null +++ b/apps/selenium-ide @@ -0,0 +1,3 @@ +# selenium-ide +Open Source record and playback test automation for the web. +# SITES: https://selenium.dev/selenium-ide/ \ No newline at end of file diff --git a/apps/selenium-ide.md b/apps/selenium-ide.md deleted file mode 100644 index 48dded047..000000000 --- a/apps/selenium-ide.md +++ /dev/null @@ -1,8 +0,0 @@ -# SELENIUM-IDE - - Open Source record and playback test automation for the web. - - SITE: https://selenium.dev/selenium-ide/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/sengi b/apps/sengi new file mode 100644 index 000000000..2ea2d5d58 --- /dev/null +++ b/apps/sengi @@ -0,0 +1,3 @@ +# sengi +A multi-account desktop client for Mastodon and Pleroma +# SITES: https://github.com/NicolasConstant/sengi \ No newline at end of file diff --git a/apps/sengi.md b/apps/sengi.md deleted file mode 100644 index 29f1ab42b..000000000 --- a/apps/sengi.md +++ /dev/null @@ -1,8 +0,0 @@ -# SENGI - - A multi-account desktop client for Mastodon and Pleroma - - SITE: https://github.com/NicolasConstant/sengi - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/senpa-io-client b/apps/senpa-io-client new file mode 100644 index 000000000..91bbde033 --- /dev/null +++ b/apps/senpa-io-client @@ -0,0 +1,3 @@ +# senpa-io-client +Official Client for Senpa.io +# SITES: https://github.com/NullDev/senpa-io-client \ No newline at end of file diff --git a/apps/senpa-io-client.md b/apps/senpa-io-client.md deleted file mode 100644 index 68c9a9d6c..000000000 --- a/apps/senpa-io-client.md +++ /dev/null @@ -1,8 +0,0 @@ -# SENPA-IO-CLIENT - - Official Client for Senpa.io - - SITE: https://github.com/NullDev/senpa-io-client - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/sentinel b/apps/sentinel new file mode 100644 index 000000000..bbfb4e18e --- /dev/null +++ b/apps/sentinel @@ -0,0 +1,3 @@ +# sentinel +An open-source decentralized VPN network application +# SITES: https://github.com/sentinel-official/desktop-client \ No newline at end of file diff --git a/apps/sentinel.md b/apps/sentinel.md deleted file mode 100644 index 904b8c040..000000000 --- a/apps/sentinel.md +++ /dev/null @@ -1,8 +0,0 @@ -# SENTINEL - - An open-source decentralized VPN network application - - SITE: https://github.com/sentinel-official/desktop-client - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/seq b/apps/seq new file mode 100644 index 000000000..8fb9aacfe --- /dev/null +++ b/apps/seq @@ -0,0 +1,4 @@ +# seq + Print a sequence of numbers. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/seq.md b/apps/seq.md deleted file mode 100644 index 31293aebc..000000000 --- a/apps/seq.md +++ /dev/null @@ -1,8 +0,0 @@ -# SEQ - - Print a sequence of numbers. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/ser-player b/apps/ser-player new file mode 100644 index 000000000..034dbee67 --- /dev/null +++ b/apps/ser-player @@ -0,0 +1,3 @@ +# ser-player +A simple video player for playing SER files used for solar, lunar and planetary astronomy-imaging. +# SITES: https://github.com/cgarry/ser-player \ No newline at end of file diff --git a/apps/ser-player.md b/apps/ser-player.md deleted file mode 100644 index d6d3d5632..000000000 --- a/apps/ser-player.md +++ /dev/null @@ -1,8 +0,0 @@ -# SER-PLAYER - - A simple video player for playing SER files used for solar, lunar and planetary astronomy-imaging. - - SITE: https://github.com/cgarry/ser-player - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/serial-studio b/apps/serial-studio new file mode 100644 index 000000000..37796825a --- /dev/null +++ b/apps/serial-studio @@ -0,0 +1,3 @@ +# serial-studio +Multi-purpose serial data visualization & processing program. +# SITES: https://github.com/Serial-Studio/Serial-Studio \ No newline at end of file diff --git a/apps/serial-studio.md b/apps/serial-studio.md deleted file mode 100644 index 2f090e2ce..000000000 --- a/apps/serial-studio.md +++ /dev/null @@ -1,8 +0,0 @@ -# SERIAL-STUDIO - - Multi-purpose serial data visualization & processing program. - - SITE: https://github.com/Serial-Studio/Serial-Studio - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/serialplot b/apps/serialplot new file mode 100644 index 000000000..0fc51a66e --- /dev/null +++ b/apps/serialplot @@ -0,0 +1,3 @@ +# serialplot +Small and simple software for plotting data from serial port +# SITES: https://hackaday.io/project/5334-serialplot-realtime-plotting-software \ No newline at end of file diff --git a/apps/serialplot.md b/apps/serialplot.md deleted file mode 100644 index edbfef1e9..000000000 --- a/apps/serialplot.md +++ /dev/null @@ -1,8 +0,0 @@ -# SERIALPLOT - - Small and simple software for plotting data from serial port - - SITE: https://hackaday.io/project/5334-serialplot-realtime-plotting-software - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/serioussamtfe b/apps/serioussamtfe new file mode 100644 index 000000000..c4bb69d59 --- /dev/null +++ b/apps/serioussamtfe @@ -0,0 +1,4 @@ +# serioussamtfe +Open source game engine version developed by Croteam for Serious Sam Classic (Windows, Linux, FreeBSD, OpenBSD, macOS, Raspberry Pi OS). +# SCREENSHOTS: https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/main/Images/samvulkan_1.png https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/main/Images/samvulkan_2.png https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/main/Images/samvulkan_3.png https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/main/Images/samvulkan_4.png https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/main/Images/samvulkan_5.png https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/main/Images/samvulkan_6.png +# SITES: https://github.com/tx00100xt/SeriousSamClassic-VK \ No newline at end of file diff --git a/apps/serioussamtfe-vk b/apps/serioussamtfe-vk new file mode 100644 index 000000000..887edeec0 --- /dev/null +++ b/apps/serioussamtfe-vk @@ -0,0 +1,4 @@ +# serioussamtfe-vk +Open source game engine version developed by Croteam for Serious Sam Classic with Vulkan support (Windows, Linux, FreeBSD, OpenBSD, macOS, Raspberry Pi OS). +# SCREENSHOTS: https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/main/Images/samvulkan_1.png https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/main/Images/samvulkan_2.png https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/main/Images/samvulkan_3.png https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/main/Images/samvulkan_4.png https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/main/Images/samvulkan_5.png https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/main/Images/samvulkan_6.png +# SITES: https://github.com/tx00100xt/SeriousSamClassic-VK \ No newline at end of file diff --git a/apps/serioussamtfe-vk.md b/apps/serioussamtfe-vk.md deleted file mode 100644 index 975747885..000000000 --- a/apps/serioussamtfe-vk.md +++ /dev/null @@ -1,20 +0,0 @@ -# SERIOUSSAMTFE-VK - - Open source game engine version developed by Croteam for Serious Sam Classic with Vulkan support (Windows, Linux, FreeBSD, OpenBSD, macOS, Raspberry Pi OS). - - ![image1](https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/main/Images/samvulkan_1.png) - - ![image2](https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/main/Images/samvulkan_2.png) - - ![image3](https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/main/Images/samvulkan_3.png) - - ![image4](https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/main/Images/samvulkan_4.png) - - ![image5](https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/main/Images/samvulkan_5.png) - - ![image6](https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/main/Images/samvulkan_6.png) - - SITE: https://github.com/tx00100xt/SeriousSamClassic-VK - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/serioussamtfe.md b/apps/serioussamtfe.md deleted file mode 100644 index df25fc9fe..000000000 --- a/apps/serioussamtfe.md +++ /dev/null @@ -1,20 +0,0 @@ -# SERIOUSSAMTFE - - Open source game engine version developed by Croteam for Serious Sam Classic (Windows, Linux, FreeBSD, OpenBSD, macOS, Raspberry Pi OS). - - ![image1](https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/main/Images/samvulkan_1.png) - - ![image2](https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/main/Images/samvulkan_2.png) - - ![image3](https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/main/Images/samvulkan_3.png) - - ![image4](https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/main/Images/samvulkan_4.png) - - ![image5](https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/main/Images/samvulkan_5.png) - - ![image6](https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/main/Images/samvulkan_6.png) - - SITE: https://github.com/tx00100xt/SeriousSamClassic-VK - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/serioussamtse b/apps/serioussamtse new file mode 100644 index 000000000..ed4c9ff0f --- /dev/null +++ b/apps/serioussamtse @@ -0,0 +1,4 @@ +# serioussamtse +Open source game engine version developed by Croteam for Serious Sam Classic (Windows, Linux, FreeBSD, OpenBSD, macOS, Raspberry Pi OS). +# SCREENSHOTS: https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/main/Images/samvulkan_1.png https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/main/Images/samvulkan_2.png https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/main/Images/samvulkan_3.png https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/main/Images/samvulkan_4.png https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/main/Images/samvulkan_5.png https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/main/Images/samvulkan_6.png +# SITES: https://github.com/tx00100xt/SeriousSamClassic-VK \ No newline at end of file diff --git a/apps/serioussamtse-vk b/apps/serioussamtse-vk new file mode 100644 index 000000000..8f2a5c2ab --- /dev/null +++ b/apps/serioussamtse-vk @@ -0,0 +1,4 @@ +# serioussamtse-vk +Open source game engine version developed by Croteam for Serious Sam Classic with Vulkan support (Windows, Linux, FreeBSD, OpenBSD, macOS, Raspberry Pi OS). +# SCREENSHOTS: https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/main/Images/samvulkan_1.png https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/main/Images/samvulkan_2.png https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/main/Images/samvulkan_3.png https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/main/Images/samvulkan_4.png https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/main/Images/samvulkan_5.png https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/main/Images/samvulkan_6.png +# SITES: https://github.com/tx00100xt/SeriousSamClassic-VK \ No newline at end of file diff --git a/apps/serioussamtse-vk.md b/apps/serioussamtse-vk.md deleted file mode 100644 index 642e2f8aa..000000000 --- a/apps/serioussamtse-vk.md +++ /dev/null @@ -1,20 +0,0 @@ -# SERIOUSSAMTSE-VK - - Open source game engine version developed by Croteam for Serious Sam Classic with Vulkan support (Windows, Linux, FreeBSD, OpenBSD, macOS, Raspberry Pi OS). - - ![image1](https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/main/Images/samvulkan_1.png) - - ![image2](https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/main/Images/samvulkan_2.png) - - ![image3](https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/main/Images/samvulkan_3.png) - - ![image4](https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/main/Images/samvulkan_4.png) - - ![image5](https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/main/Images/samvulkan_5.png) - - ![image6](https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/main/Images/samvulkan_6.png) - - SITE: https://github.com/tx00100xt/SeriousSamClassic-VK - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/serioussamtse.md b/apps/serioussamtse.md deleted file mode 100644 index 9cf6a60fe..000000000 --- a/apps/serioussamtse.md +++ /dev/null @@ -1,20 +0,0 @@ -# SERIOUSSAMTSE - - Open source game engine version developed by Croteam for Serious Sam Classic (Windows, Linux, FreeBSD, OpenBSD, macOS, Raspberry Pi OS). - - ![image1](https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/main/Images/samvulkan_1.png) - - ![image2](https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/main/Images/samvulkan_2.png) - - ![image3](https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/main/Images/samvulkan_3.png) - - ![image4](https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/main/Images/samvulkan_4.png) - - ![image5](https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/main/Images/samvulkan_5.png) - - ![image6](https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/main/Images/samvulkan_6.png) - - SITE: https://github.com/tx00100xt/SeriousSamClassic-VK - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/servo b/apps/servo new file mode 100644 index 000000000..1fdd38169 --- /dev/null +++ b/apps/servo @@ -0,0 +1,3 @@ +# servo +Unofficial AppImage builds of the Servo web browser engine. +# SITES: https://github.com/pkgforge-dev/servo-AppImage \ No newline at end of file diff --git a/apps/servo.md b/apps/servo.md deleted file mode 100644 index d95a51a41..000000000 --- a/apps/servo.md +++ /dev/null @@ -1,8 +0,0 @@ -# SERVO - - Unofficial AppImage builds of the Servo web browser engine. - - SITE: https://github.com/pkgforge-dev/servo-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/session-desktop b/apps/session-desktop new file mode 100644 index 000000000..1d9662f74 --- /dev/null +++ b/apps/session-desktop @@ -0,0 +1,4 @@ +# session-desktop +Session Desktop - Onion routing based messenger. + A private messenger for Windows, macOS, and Linux. +# SITES: https://github.com/session-foundation/session-desktop \ No newline at end of file diff --git a/apps/session-desktop.md b/apps/session-desktop.md deleted file mode 100644 index 8362c9b80..000000000 --- a/apps/session-desktop.md +++ /dev/null @@ -1,9 +0,0 @@ -# SESSION-DESKTOP - - Session Desktop - Onion routing based messenger. - A private messenger for Windows, macOS, and Linux. - - SITE: https://github.com/session-foundation/session-desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/setcolors b/apps/setcolors new file mode 100644 index 000000000..c92a08dad --- /dev/null +++ b/apps/setcolors @@ -0,0 +1,3 @@ +# setcolors +Another way to set colors in Linux shells. +# SITES: https://github.com/Lateralus138/setcolors \ No newline at end of file diff --git a/apps/setcolors.md b/apps/setcolors.md deleted file mode 100644 index 560013bfb..000000000 --- a/apps/setcolors.md +++ /dev/null @@ -1,8 +0,0 @@ -# SETCOLORS - - Another way to set colors in Linux shells. - - SITE: https://github.com/Lateralus138/setcolors - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/sevicebus-browser b/apps/sevicebus-browser new file mode 100644 index 000000000..8ddcad487 --- /dev/null +++ b/apps/sevicebus-browser @@ -0,0 +1,3 @@ +# sevicebus-browser +A cross platform tool to manage your Azure Service Bus instances. +# SITES: https://github.com/mligtenberg/ServicebusBrowser \ No newline at end of file diff --git a/apps/sevicebus-browser.md b/apps/sevicebus-browser.md deleted file mode 100644 index 757bf67aa..000000000 --- a/apps/sevicebus-browser.md +++ /dev/null @@ -1,8 +0,0 @@ -# SEVICEBUS-BROWSER - - A cross platform tool to manage your Azure Service Bus instances. - - SITE: https://github.com/mligtenberg/ServicebusBrowser - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/sf-tube b/apps/sf-tube new file mode 100644 index 000000000..98ce24ff4 --- /dev/null +++ b/apps/sf-tube @@ -0,0 +1,3 @@ +# sf-tube +Watch and download videos without ads +# SITES: https://github.com/prateekmedia/sftube \ No newline at end of file diff --git a/apps/sf-tube.md b/apps/sf-tube.md deleted file mode 100644 index efda04f74..000000000 --- a/apps/sf-tube.md +++ /dev/null @@ -1,8 +0,0 @@ -# SF-TUBE - - Watch and download videos without ads - - SITE: https://github.com/prateekmedia/sftube - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/sfbrename-cli b/apps/sfbrename-cli new file mode 100644 index 000000000..1d7cd2145 --- /dev/null +++ b/apps/sfbrename-cli @@ -0,0 +1,3 @@ +# sfbrename-cli +Bulk file renamer. +# SITES: https://github.com/karwler/sfbrename \ No newline at end of file diff --git a/apps/sfbrename-cli.md b/apps/sfbrename-cli.md deleted file mode 100644 index 115286b92..000000000 --- a/apps/sfbrename-cli.md +++ /dev/null @@ -1,8 +0,0 @@ -# SFBRENAME-CLI - - Bulk file renamer. - - SITE: https://github.com/karwler/sfbrename - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/sfbrename-gtk b/apps/sfbrename-gtk new file mode 100644 index 000000000..9a50bef05 --- /dev/null +++ b/apps/sfbrename-gtk @@ -0,0 +1,3 @@ +# sfbrename-gtk +Bulk file renamer. +# SITES: https://github.com/karwler/sfbrename \ No newline at end of file diff --git a/apps/sfbrename-gtk.md b/apps/sfbrename-gtk.md deleted file mode 100644 index c25389a4f..000000000 --- a/apps/sfbrename-gtk.md +++ /dev/null @@ -1,8 +0,0 @@ -# SFBRENAME-GTK - - Bulk file renamer. - - SITE: https://github.com/karwler/sfbrename - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/sfp b/apps/sfp new file mode 100644 index 000000000..9432b7779 --- /dev/null +++ b/apps/sfp @@ -0,0 +1,3 @@ +# sfp +This utility is designed to allow you to apply skins to the modern Steam client +# SITES: https://github.com/PhantomGamers/SFP \ No newline at end of file diff --git a/apps/sfp.md b/apps/sfp.md deleted file mode 100644 index 886c43dcc..000000000 --- a/apps/sfp.md +++ /dev/null @@ -1,8 +0,0 @@ -# SFP - - This utility is designed to allow you to apply skins to the modern Steam client - - SITE: https://github.com/PhantomGamers/SFP - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/sfrt-attendance b/apps/sfrt-attendance new file mode 100644 index 000000000..ea8158c96 --- /dev/null +++ b/apps/sfrt-attendance @@ -0,0 +1,3 @@ +# sfrt-attendance +The attendance tracking program for robotics +# SITES: https://github.com/Saint-Francis-Robotics-Team2367/Attendance \ No newline at end of file diff --git a/apps/sfrt-attendance.md b/apps/sfrt-attendance.md deleted file mode 100644 index 32b8f1c6e..000000000 --- a/apps/sfrt-attendance.md +++ /dev/null @@ -1,8 +0,0 @@ -# SFRT-ATTENDANCE - - The attendance tracking program for robotics - - SITE: https://github.com/Saint-Francis-Robotics-Team2367/Attendance - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/sh b/apps/sh new file mode 100644 index 000000000..a9b58a6e2 --- /dev/null +++ b/apps/sh @@ -0,0 +1,3 @@ +# sh +GNU Bourne-Again Shell, the de facto standard shell on Linux. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/sh.md b/apps/sh.md deleted file mode 100644 index 9fb61464b..000000000 --- a/apps/sh.md +++ /dev/null @@ -1,8 +0,0 @@ -# SH - - GNU Bourne-Again Shell, the de facto standard shell on Linux. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/sha1sum b/apps/sha1sum new file mode 100644 index 000000000..d56f9c628 --- /dev/null +++ b/apps/sha1sum @@ -0,0 +1,3 @@ +# sha1sum +Compute and check SHA1 message digest. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/sha1sum.md b/apps/sha1sum.md deleted file mode 100644 index 96feb9549..000000000 --- a/apps/sha1sum.md +++ /dev/null @@ -1,8 +0,0 @@ -# SHA1SUM - - Compute and check SHA1 message digest. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/sha224sum b/apps/sha224sum new file mode 100644 index 000000000..fd466905d --- /dev/null +++ b/apps/sha224sum @@ -0,0 +1,4 @@ +# sha224sum + Check SHA224 message digest. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/sha224sum.md b/apps/sha224sum.md deleted file mode 100644 index 30d35f073..000000000 --- a/apps/sha224sum.md +++ /dev/null @@ -1,8 +0,0 @@ -# SHA224SUM - - Check SHA224 message digest. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/sha256sum b/apps/sha256sum new file mode 100644 index 000000000..a7fb78c04 --- /dev/null +++ b/apps/sha256sum @@ -0,0 +1,3 @@ +# sha256sum +Compute and check SHA256 message digest. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/sha256sum.md b/apps/sha256sum.md deleted file mode 100644 index ee2b1a9ca..000000000 --- a/apps/sha256sum.md +++ /dev/null @@ -1,8 +0,0 @@ -# SHA256SUM - - Compute and check SHA256 message digest. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/sha384sum b/apps/sha384sum new file mode 100644 index 000000000..c41994d1e --- /dev/null +++ b/apps/sha384sum @@ -0,0 +1,4 @@ +# sha384sum + Check SHA384 message digest. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/sha384sum.md b/apps/sha384sum.md deleted file mode 100644 index 6e7bfb07b..000000000 --- a/apps/sha384sum.md +++ /dev/null @@ -1,8 +0,0 @@ -# SHA384SUM - - Check SHA384 message digest. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/sha512sum b/apps/sha512sum new file mode 100644 index 000000000..07ee9fef3 --- /dev/null +++ b/apps/sha512sum @@ -0,0 +1,3 @@ +# sha512sum +Compute and check SHA512 message digest. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/sha512sum.md b/apps/sha512sum.md deleted file mode 100644 index 333bc7a80..000000000 --- a/apps/sha512sum.md +++ /dev/null @@ -1,8 +0,0 @@ -# SHA512SUM - - Compute and check SHA512 message digest. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/shadow-tech b/apps/shadow-tech new file mode 100644 index 000000000..255f3ee87 --- /dev/null +++ b/apps/shadow-tech @@ -0,0 +1,3 @@ +# shadow-tech +Shadow.tech is a cloud computing service. Unlike many other cloud services such as Nvidia GeForce Now, or Amazon Luna, Shadow is not limited to running video games, as Shadow.tech provides remote access to a complete PC infrastructure. +# SITES: https://shadow.tech \ No newline at end of file diff --git a/apps/shadow-tech.md b/apps/shadow-tech.md deleted file mode 100644 index 7f60d939a..000000000 --- a/apps/shadow-tech.md +++ /dev/null @@ -1,8 +0,0 @@ -# SHADOW-TECH - - Shadow.tech is a cloud computing service. Unlike many other cloud services such as Nvidia GeForce Now, or Amazon Luna, Shadow is not limited to running video games, as Shadow.tech provides remote access to a complete PC infrastructure. - - SITE: https://shadow.tech - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/shadowsocks b/apps/shadowsocks new file mode 100644 index 000000000..c4163c395 --- /dev/null +++ b/apps/shadowsocks @@ -0,0 +1,3 @@ +# shadowsocks +Shadowsocks GUI client +# SITES: https://github.com/shadowsocks/shadowsocks-qt5 \ No newline at end of file diff --git a/apps/shadowsocks.md b/apps/shadowsocks.md deleted file mode 100644 index 246f0f20a..000000000 --- a/apps/shadowsocks.md +++ /dev/null @@ -1,8 +0,0 @@ -# SHADOWSOCKS - - Shadowsocks GUI client - - SITE: https://github.com/shadowsocks/shadowsocks-qt5 - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/shadps4 b/apps/shadps4 new file mode 100644 index 000000000..65f627d0b --- /dev/null +++ b/apps/shadps4 @@ -0,0 +1,3 @@ +# shadps4 +shadPS4 is an early PlayStation 4 emulator for Windows, Linux and macOS written in C++. +# SITES: https://github.com/shadps4-emu/shadPS4 \ No newline at end of file diff --git a/apps/shadps4-qtlauncher b/apps/shadps4-qtlauncher new file mode 100644 index 000000000..7a7a3ed92 --- /dev/null +++ b/apps/shadps4-qtlauncher @@ -0,0 +1,3 @@ +# shadps4-qtlauncher +The official Qt launcher for shadps4 PlayStation 4 emulator. +# SITES: https://github.com/shadps4-emu/shadps4-qtlauncher \ No newline at end of file diff --git a/apps/shadps4-qtlauncher.md b/apps/shadps4-qtlauncher.md deleted file mode 100644 index bcd0245ac..000000000 --- a/apps/shadps4-qtlauncher.md +++ /dev/null @@ -1,8 +0,0 @@ -# SHADPS4-QTLAUNCHER - - The official Qt launcher for shadps4 PlayStation 4 emulator. - - SITE: https://github.com/shadps4-emu/shadps4-qtlauncher - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/shadps4.md b/apps/shadps4.md deleted file mode 100644 index 9c9a547a6..000000000 --- a/apps/shadps4.md +++ /dev/null @@ -1,8 +0,0 @@ -# SHADPS4 - - shadPS4 is an early PlayStation 4 emulator for Windows, Linux and macOS written in C++. - - SITE: https://github.com/shadps4-emu/shadPS4 - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/shannon-calculator b/apps/shannon-calculator new file mode 100644 index 000000000..e944c2fce --- /dev/null +++ b/apps/shannon-calculator @@ -0,0 +1,3 @@ +# shannon-calculator +Calculates Shannon self-information content of a message text or file byte +# SITES: https://github.com/kuiperzone/Shannon-Calculator \ No newline at end of file diff --git a/apps/shannon-calculator.md b/apps/shannon-calculator.md deleted file mode 100644 index 3259da2a5..000000000 --- a/apps/shannon-calculator.md +++ /dev/null @@ -1,8 +0,0 @@ -# SHANNON-CALCULATOR - - Calculates Shannon self-information content of a message text or file byte - - SITE: https://github.com/kuiperzone/Shannon-Calculator - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/sharemyhost b/apps/sharemyhost new file mode 100644 index 000000000..c64458a38 --- /dev/null +++ b/apps/sharemyhost @@ -0,0 +1,3 @@ +# sharemyhost +One click to share your files in your local network. +# SITES: https://github.com/antony-jr/ShareMyHost \ No newline at end of file diff --git a/apps/sharemyhost.md b/apps/sharemyhost.md deleted file mode 100644 index d4509351a..000000000 --- a/apps/sharemyhost.md +++ /dev/null @@ -1,8 +0,0 @@ -# SHAREMYHOST - - One click to share your files in your local network. - - SITE: https://github.com/antony-jr/ShareMyHost - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/sharp-tune b/apps/sharp-tune new file mode 100644 index 000000000..d9b77feb6 --- /dev/null +++ b/apps/sharp-tune @@ -0,0 +1,3 @@ +# sharp-tune +Lightweight Cross-platform music player build upon the node using the electron. +# SITES: https://github.com/MD-AZMAL/Sharp-Tune \ No newline at end of file diff --git a/apps/sharp-tune.md b/apps/sharp-tune.md deleted file mode 100644 index 1d8e8469c..000000000 --- a/apps/sharp-tune.md +++ /dev/null @@ -1,8 +0,0 @@ -# SHARP-TUNE - - Lightweight Cross-platform music player build upon the node using the electron. - - SITE: https://github.com/MD-AZMAL/Sharp-Tune - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/sheepshaver b/apps/sheepshaver new file mode 100644 index 000000000..f6becc764 --- /dev/null +++ b/apps/sheepshaver @@ -0,0 +1,3 @@ +# sheepshaver +Builds the popular classic Macintosh emulators BasiliskII and SheepShaver from source to create AppImages +# SITES: https://github.com/Korkman/macemu-appimage-builder \ No newline at end of file diff --git a/apps/sheepshaver.md b/apps/sheepshaver.md deleted file mode 100644 index a4af3fee8..000000000 --- a/apps/sheepshaver.md +++ /dev/null @@ -1,8 +0,0 @@ -# SHEEPSHAVER - - Builds the popular classic Macintosh emulators BasiliskII and SheepShaver from source to create AppImages - - SITE: https://github.com/Korkman/macemu-appimage-builder - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/sheikah b/apps/sheikah new file mode 100644 index 000000000..f45099f36 --- /dev/null +++ b/apps/sheikah @@ -0,0 +1,3 @@ +# sheikah +A Witnet compatible desktop wallet and data requests development environment. +# SITES: https://github.com/witnet/sheikah \ No newline at end of file diff --git a/apps/sheikah.md b/apps/sheikah.md deleted file mode 100644 index e176434eb..000000000 --- a/apps/sheikah.md +++ /dev/null @@ -1,8 +0,0 @@ -# SHEIKAH - - A Witnet compatible desktop wallet and data requests development environment. - - SITE: https://github.com/witnet/sheikah - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/shellcheck b/apps/shellcheck new file mode 100644 index 000000000..b74aa9016 --- /dev/null +++ b/apps/shellcheck @@ -0,0 +1,3 @@ +# shellcheck +ShellCheck, a static analysis tool for shell scripts +# SITES: https://github.com/koalaman/shellcheck \ No newline at end of file diff --git a/apps/shellcheck.md b/apps/shellcheck.md deleted file mode 100644 index 5f63bf784..000000000 --- a/apps/shellcheck.md +++ /dev/null @@ -1,8 +0,0 @@ -# SHELLCHECK - - ShellCheck, a static analysis tool for shell scripts - - SITE: https://github.com/koalaman/shellcheck - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/shellharden b/apps/shellharden new file mode 100644 index 000000000..957c37c7e --- /dev/null +++ b/apps/shellharden @@ -0,0 +1,3 @@ +# shellharden +The corrective bash syntax highlighter +# SITES: https://github.com/anordal/shellharden \ No newline at end of file diff --git a/apps/shellharden.md b/apps/shellharden.md deleted file mode 100644 index 607f83d44..000000000 --- a/apps/shellharden.md +++ /dev/null @@ -1,8 +0,0 @@ -# SHELLHARDEN - - The corrective bash syntax highlighter - - SITE: https://github.com/anordal/shellharden - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/shockolate b/apps/shockolate new file mode 100644 index 000000000..938cd3d98 --- /dev/null +++ b/apps/shockolate @@ -0,0 +1,4 @@ +# shockolate + Unofficial AppImage of Shockolate. +# SITES: https://github.com/pkgforge-dev/shockolate-appimage +# SOURCES: https://github.com/pkgforge-dev/shockolate-appimage \ No newline at end of file diff --git a/apps/shockolate.md b/apps/shockolate.md deleted file mode 100644 index 49c5ebc90..000000000 --- a/apps/shockolate.md +++ /dev/null @@ -1,8 +0,0 @@ -# SHOCKOLATE - - Unofficial AppImage of Shockolate. - - SITE: https://github.com/pkgforge-dev/shockolate-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/shoopdaloop b/apps/shoopdaloop new file mode 100644 index 000000000..64e26a246 --- /dev/null +++ b/apps/shoopdaloop @@ -0,0 +1,3 @@ +# shoopdaloop +A (live) looping application with DAW elements. +# SITES: https://github.com/SanderVocke/shoopdaloop \ No newline at end of file diff --git a/apps/shoopdaloop.md b/apps/shoopdaloop.md deleted file mode 100644 index 3d094908c..000000000 --- a/apps/shoopdaloop.md +++ /dev/null @@ -1,8 +0,0 @@ -# SHOOPDALOOP - - A (live) looping application with DAW elements. - - SITE: https://github.com/SanderVocke/shoopdaloop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/shotcut b/apps/shotcut new file mode 100644 index 000000000..4366b5214 --- /dev/null +++ b/apps/shotcut @@ -0,0 +1,5 @@ +# shotcut +Shotcut - A powerful Video Editor. +# SCREENSHOTS: https://www.shotcut.org/assets/img/screenshots/proxy_editing.png +# SITES: https://www.shotcut.org +# SOURCES: https://github.com/mltframework/shotcut \ No newline at end of file diff --git a/apps/shotcut.md b/apps/shotcut.md deleted file mode 100644 index 9e3929bf8..000000000 --- a/apps/shotcut.md +++ /dev/null @@ -1,12 +0,0 @@ -# SHOTCUT - - Shotcut - A powerful Video Editor. - - ![Screenshot](https://www.shotcut.org/assets/img/screenshots/proxy_editing.png) - - SITE: https://www.shotcut.org - - SOURCE: https://github.com/mltframework/shotcut - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/shotwell b/apps/shotwell new file mode 100644 index 000000000..7060fa700 --- /dev/null +++ b/apps/shotwell @@ -0,0 +1,3 @@ +# shotwell +Unofficial, a digital photo organizer designed for the GNOME desktop environment. +# SITES: https://github.com/pkgforge-dev/Shotwell-AppImage \ No newline at end of file diff --git a/apps/shotwell.md b/apps/shotwell.md deleted file mode 100644 index a4f52f0d7..000000000 --- a/apps/shotwell.md +++ /dev/null @@ -1,8 +0,0 @@ -# SHOTWELL - - Unofficial, a digital photo organizer designed for the GNOME desktop environment. - - SITE: https://github.com/pkgforge-dev/Shotwell-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/shradiko b/apps/shradiko new file mode 100644 index 000000000..c8a2ae7d0 --- /dev/null +++ b/apps/shradiko @@ -0,0 +1,3 @@ +# shradiko +Make Portable AppImages from Distro Packages +# SITES: https://github.com/universe-software/shradiko \ No newline at end of file diff --git a/apps/shradiko.md b/apps/shradiko.md deleted file mode 100644 index 99f73b0ba..000000000 --- a/apps/shradiko.md +++ /dev/null @@ -1,8 +0,0 @@ -# SHRADIKO - - Make Portable AppImages from Distro Packages - - SITE: https://github.com/universe-software/shradiko - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/shred b/apps/shred new file mode 100644 index 000000000..d426b310c --- /dev/null +++ b/apps/shred @@ -0,0 +1,4 @@ +# shred + Overwrite a file to hide its contents, and optionally. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/shred.md b/apps/shred.md deleted file mode 100644 index ffc4223b3..000000000 --- a/apps/shred.md +++ /dev/null @@ -1,8 +0,0 @@ -# SHRED - - Overwrite a file to hide its contents, and optionally. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/shuf b/apps/shuf new file mode 100644 index 000000000..f8e78ec76 --- /dev/null +++ b/apps/shuf @@ -0,0 +1,4 @@ +# shuf + Generate random permutations. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/shuf.md b/apps/shuf.md deleted file mode 100644 index 7034acd83..000000000 --- a/apps/shuf.md +++ /dev/null @@ -1,8 +0,0 @@ -# SHUF - - Generate random permutations. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/shutter-encoder b/apps/shutter-encoder new file mode 100644 index 000000000..665f2ce66 --- /dev/null +++ b/apps/shutter-encoder @@ -0,0 +1,3 @@ +# shutter-encoder +Professional converter & compression tool designed by video editors. +# SITES: https://github.com/https://www.shutterencoder.com/ \ No newline at end of file diff --git a/apps/shutter-encoder.md b/apps/shutter-encoder.md deleted file mode 100644 index 2a154a75f..000000000 --- a/apps/shutter-encoder.md +++ /dev/null @@ -1,8 +0,0 @@ -# SHUTTER-ENCODER - - Professional converter & compression tool designed by video editors. - - SITE: https://github.com/https://www.shutterencoder.com/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/shuttle b/apps/shuttle new file mode 100644 index 000000000..e039d7144 --- /dev/null +++ b/apps/shuttle @@ -0,0 +1,3 @@ +# shuttle +The fastest access to your favorite applications +# SITES: https://github.com/ShuttleBrowser/Shuttle \ No newline at end of file diff --git a/apps/shuttle.md b/apps/shuttle.md deleted file mode 100644 index 0ea5c4b7b..000000000 --- a/apps/shuttle.md +++ /dev/null @@ -1,8 +0,0 @@ -# SHUTTLE - - The fastest access to your favorite applications - - SITE: https://github.com/ShuttleBrowser/Shuttle - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/shvspy b/apps/shvspy new file mode 100644 index 000000000..1e320e5aa --- /dev/null +++ b/apps/shvspy @@ -0,0 +1,3 @@ +# shvspy +Qt GUI tool for shvbroker administration and browsing. +# SITES: https://github.com/silicon-heaven/shvspy \ No newline at end of file diff --git a/apps/shvspy.md b/apps/shvspy.md deleted file mode 100644 index fd10d8e31..000000000 --- a/apps/shvspy.md +++ /dev/null @@ -1,8 +0,0 @@ -# SHVSPY - - Qt GUI tool for shvbroker administration and browsing. - - SITE: https://github.com/silicon-heaven/shvspy - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/sideka b/apps/sideka new file mode 100644 index 000000000..985d0d46b --- /dev/null +++ b/apps/sideka @@ -0,0 +1,3 @@ +# sideka +Platform Tata Kelola Desa +# SITES: https://github.com/ghk/sideka-electron \ No newline at end of file diff --git a/apps/sideka.md b/apps/sideka.md deleted file mode 100644 index bc823b8a0..000000000 --- a/apps/sideka.md +++ /dev/null @@ -1,8 +0,0 @@ -# SIDEKA - - Platform Tata Kelola Desa - - SITE: https://github.com/ghk/sideka-electron - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/sidenote b/apps/sidenote new file mode 100644 index 000000000..1fcb11e69 --- /dev/null +++ b/apps/sidenote @@ -0,0 +1,3 @@ +# sidenote +A CLI tool that helps to manage plain text notes per working directory +# SITES: https://github.com/ryot4/sidenote \ No newline at end of file diff --git a/apps/sidenote.md b/apps/sidenote.md deleted file mode 100644 index 718894751..000000000 --- a/apps/sidenote.md +++ /dev/null @@ -1,8 +0,0 @@ -# SIDENOTE - - A CLI tool that helps to manage plain text notes per working directory - - SITE: https://github.com/ryot4/sidenote - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/sigdigger b/apps/sigdigger new file mode 100644 index 000000000..2c850a804 --- /dev/null +++ b/apps/sigdigger @@ -0,0 +1,3 @@ +# sigdigger +The free digital signal analyzer +# SITES: https://github.com/BatchDrake/SigDigger \ No newline at end of file diff --git a/apps/sigdigger.md b/apps/sigdigger.md deleted file mode 100644 index b7dfbf9b6..000000000 --- a/apps/sigdigger.md +++ /dev/null @@ -1,8 +0,0 @@ -# SIGDIGGER - - The free digital signal analyzer - - SITE: https://github.com/BatchDrake/SigDigger - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/sigil b/apps/sigil new file mode 100644 index 000000000..faf3a5e74 --- /dev/null +++ b/apps/sigil @@ -0,0 +1,3 @@ +# sigil +Sigil is a multi-platform EPUB ebook editor. +# SITES: https://github.com/Sigil-Ebook/Sigil \ No newline at end of file diff --git a/apps/sigil.md b/apps/sigil.md deleted file mode 100644 index fa03a8896..000000000 --- a/apps/sigil.md +++ /dev/null @@ -1,8 +0,0 @@ -# SIGIL - - Sigil is a multi-platform EPUB ebook editor. - - SITE: https://github.com/Sigil-Ebook/Sigil - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/sigma-file-manager b/apps/sigma-file-manager new file mode 100644 index 000000000..88af2ae29 --- /dev/null +++ b/apps/sigma-file-manager @@ -0,0 +1,3 @@ +# sigma-file-manager +A free, open-source, quickly evolving, modern file manager (explorer / finder) app for Windows and Linux. +# SITES: https://github.com/aleksey-hoffman/sigma-file-manager \ No newline at end of file diff --git a/apps/sigma-file-manager.md b/apps/sigma-file-manager.md deleted file mode 100644 index 73b6f5769..000000000 --- a/apps/sigma-file-manager.md +++ /dev/null @@ -1,8 +0,0 @@ -# SIGMA-FILE-MANAGER - - A free, open-source, quickly evolving, modern file manager (explorer / finder) app for Windows and Linux. - - SITE: https://github.com/aleksey-hoffman/sigma-file-manager - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/sigmaspectra b/apps/sigmaspectra new file mode 100644 index 000000000..971661ddd --- /dev/null +++ b/apps/sigmaspectra @@ -0,0 +1,3 @@ +# sigmaspectra +Semi-automated selection and scaling of time series +# SITES: https://github.com/arkottke/sigmaspectra \ No newline at end of file diff --git a/apps/sigmaspectra.md b/apps/sigmaspectra.md deleted file mode 100644 index 56048d9ad..000000000 --- a/apps/sigmaspectra.md +++ /dev/null @@ -1,8 +0,0 @@ -# SIGMASPECTRA - - Semi-automated selection and scaling of time series - - SITE: https://github.com/arkottke/sigmaspectra - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/signal b/apps/signal new file mode 100644 index 000000000..339e8c1ad --- /dev/null +++ b/apps/signal @@ -0,0 +1,6 @@ +# signal +Unofficial AppImage package for Signal. + + Say "hello" to a different messaging experience. An unexpected focus on privacy, combined with all of the features you expect. +# SITES: https://signal.org +# SOURCES: https://github.com/karo-solutions/Signal-Desktop-AppImage \ No newline at end of file diff --git a/apps/signal.md b/apps/signal.md deleted file mode 100644 index 992ddba1f..000000000 --- a/apps/signal.md +++ /dev/null @@ -1,12 +0,0 @@ -# SIGNAL - - Unofficial AppImage package for Signal. - - Say "hello" to a different messaging experience. An unexpected focus on privacy, combined with all of the features you expect. - - SITE: https://signal.org - - UNOFFICIAL APPIMAGE: https://github.com/karo-solutions/Signal-Desktop-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/silex-desktop b/apps/silex-desktop new file mode 100644 index 000000000..e8cc437a3 --- /dev/null +++ b/apps/silex-desktop @@ -0,0 +1,3 @@ +# silex-desktop +This is the official Silex desktop version. +# SITES: https://github.com/silexlabs/silex-desktop \ No newline at end of file diff --git a/apps/silex-desktop.md b/apps/silex-desktop.md deleted file mode 100644 index d9d52db33..000000000 --- a/apps/silex-desktop.md +++ /dev/null @@ -1,8 +0,0 @@ -# SILEX-DESKTOP - - This is the official Silex desktop version. - - SITE: https://github.com/silexlabs/silex-desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/siliconsneaker b/apps/siliconsneaker new file mode 100644 index 000000000..000e48798 --- /dev/null +++ b/apps/siliconsneaker @@ -0,0 +1,3 @@ +# siliconsneaker +View runs from your Garmin brand watch +# SITES: https://github.com/cprevallet/siliconsneaker \ No newline at end of file diff --git a/apps/siliconsneaker.md b/apps/siliconsneaker.md deleted file mode 100644 index 17bf773d2..000000000 --- a/apps/siliconsneaker.md +++ /dev/null @@ -1,8 +0,0 @@ -# SILICONSNEAKER - - View runs from your Garmin brand watch - - SITE: https://github.com/cprevallet/siliconsneaker - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/silverkey b/apps/silverkey new file mode 100644 index 000000000..ccb516729 --- /dev/null +++ b/apps/silverkey @@ -0,0 +1,3 @@ +# silverkey +The best Qt Application Ever +# SITES: https://github.com/metacoma/silverkey \ No newline at end of file diff --git a/apps/silverkey.md b/apps/silverkey.md deleted file mode 100644 index 5202a4aac..000000000 --- a/apps/silverkey.md +++ /dev/null @@ -1,8 +0,0 @@ -# SILVERKEY - - The best Qt Application Ever - - SITE: https://github.com/metacoma/silverkey - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/simdock b/apps/simdock new file mode 100644 index 000000000..1237d4ad3 --- /dev/null +++ b/apps/simdock @@ -0,0 +1,3 @@ +# simdock +Small dock with pseudo-transparency and good window handling. +# SITES: https://github.com/onli/simdock \ No newline at end of file diff --git a/apps/simdock.md b/apps/simdock.md deleted file mode 100644 index b996657cd..000000000 --- a/apps/simdock.md +++ /dev/null @@ -1,8 +0,0 @@ -# SIMDOCK - - Small dock with pseudo-transparency and good window handling. - - SITE: https://github.com/onli/simdock - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/simdsp b/apps/simdsp new file mode 100644 index 000000000..9493f8d72 --- /dev/null +++ b/apps/simdsp @@ -0,0 +1,3 @@ +# simdsp +DSP Simulator +# SITES: https://github.com/lmcapacho/SimDSP \ No newline at end of file diff --git a/apps/simdsp.md b/apps/simdsp.md deleted file mode 100644 index 2cd9bd58b..000000000 --- a/apps/simdsp.md +++ /dev/null @@ -1,8 +0,0 @@ -# SIMDSP - - DSP Simulator - - SITE: https://github.com/lmcapacho/SimDSP - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/simitone b/apps/simitone new file mode 100644 index 000000000..ae3a7edad --- /dev/null +++ b/apps/simitone @@ -0,0 +1,3 @@ +# simitone +Unofficial, re-implementation of The Sims 1, based off of FreeSO. +# SITES: https://github.com/pkgforge-dev/Simitone-AppImage \ No newline at end of file diff --git a/apps/simitone.md b/apps/simitone.md deleted file mode 100644 index 673bc2d9e..000000000 --- a/apps/simitone.md +++ /dev/null @@ -1,8 +0,0 @@ -# SIMITONE - - Unofficial, re-implementation of The Sims 1, based off of FreeSO. - - SITE: https://github.com/pkgforge-dev/Simitone-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/simple-s3-uploader b/apps/simple-s3-uploader new file mode 100644 index 000000000..05e64d59e --- /dev/null +++ b/apps/simple-s3-uploader @@ -0,0 +1,3 @@ +# simple-s3-uploader +simple-uploader is a tool for easily uploading files and sharing links via AWS S3. The user enters their bucket name and credentials, then they can easily drop in files to be uploaded and are given a link to share that file with others. They can also delete files that they have uploaded from that device. +# SITES: https://github.com/rBurgett/simple-uploader \ No newline at end of file diff --git a/apps/simple-s3-uploader.md b/apps/simple-s3-uploader.md deleted file mode 100644 index cec001185..000000000 --- a/apps/simple-s3-uploader.md +++ /dev/null @@ -1,7 +0,0 @@ -# SIMPLE-S3-UPLOADER - - simple-uploader is a tool for easily uploading files and sharing links via AWS S3. The user enters their bucket name and credentials, then they can easily drop in files to be uploaded and are given a link to share that file with others. They can also delete files that they have uploaded from that device. - - SITE: https://github.com/rBurgett/simple-uploader - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/simple-scan b/apps/simple-scan new file mode 100644 index 000000000..795f9e7a3 --- /dev/null +++ b/apps/simple-scan @@ -0,0 +1,4 @@ +# simple-scan + Make a digital copy of your photos and documents. Simple scanning utility for the GNOME desktop environment. +# SITES: https://github.com/REPLACETHIS +# SOURCES: https://github.com/REPLACETHIS \ No newline at end of file diff --git a/apps/simple-scan.md b/apps/simple-scan.md deleted file mode 100644 index 214793d3e..000000000 --- a/apps/simple-scan.md +++ /dev/null @@ -1,10 +0,0 @@ -# SIMPLE-SCAN - - Make a digital copy of your photos and documents. Simple scanning utility for the GNOME desktop environment. - - This script can install the latest release (if any) and a legacy variant. - - SITE (GTK3): https://github.com/ivan-hc/GNOME3-appimages - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/simple-timer b/apps/simple-timer new file mode 100644 index 000000000..9705f7436 --- /dev/null +++ b/apps/simple-timer @@ -0,0 +1,3 @@ +# simple-timer +A really simple timer with a customizable logo and heading. +# SITES: https://github.com/fliegwerk/simple-timer \ No newline at end of file diff --git a/apps/simple-timer.md b/apps/simple-timer.md deleted file mode 100644 index 872d2042d..000000000 --- a/apps/simple-timer.md +++ /dev/null @@ -1,8 +0,0 @@ -# SIMPLE-TIMER - - A really simple timer with a customizable logo and heading. - - SITE: https://github.com/fliegwerk/simple-timer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/simplechroot b/apps/simplechroot new file mode 100644 index 000000000..3b727cf97 --- /dev/null +++ b/apps/simplechroot @@ -0,0 +1,6 @@ +# simplechroot +Chroot with ease featuring: + + - Setup a chroot and chroot in in a single command + - The ability to reinstall grub easily +# SITES: https://github.com/BobyMCbobs/simplechroot \ No newline at end of file diff --git a/apps/simplechroot.md b/apps/simplechroot.md deleted file mode 100644 index 72a0a386e..000000000 --- a/apps/simplechroot.md +++ /dev/null @@ -1,10 +0,0 @@ -# SIMPLECHROOT - - Chroot with ease featuring: - - - Setup a chroot and chroot in in a single command - - The ability to reinstall grub easily - - SITE: https://github.com/BobyMCbobs/simplechroot - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/simpleinstabot b/apps/simpleinstabot new file mode 100644 index 000000000..6801974e1 --- /dev/null +++ b/apps/simpleinstabot @@ -0,0 +1,3 @@ +# simpleinstabot +Simple Instagram bot +# SITES: https://github.com/mifi/SimpleInstaBot \ No newline at end of file diff --git a/apps/simpleinstabot.md b/apps/simpleinstabot.md deleted file mode 100644 index 6a2f89c9c..000000000 --- a/apps/simpleinstabot.md +++ /dev/null @@ -1,8 +0,0 @@ -# SIMPLEINSTABOT - - Simple Instagram bot - - SITE: https://github.com/mifi/SimpleInstaBot - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/simplenote-electron b/apps/simplenote-electron new file mode 100644 index 000000000..60743c8cc --- /dev/null +++ b/apps/simplenote-electron @@ -0,0 +1,3 @@ +# simplenote-electron +Simplenote for Web, Windows, and Linux +# SITES: https://github.com/Automattic/simplenote-electron \ No newline at end of file diff --git a/apps/simplenote-electron.md b/apps/simplenote-electron.md deleted file mode 100644 index 5e67ef2fe..000000000 --- a/apps/simplenote-electron.md +++ /dev/null @@ -1,8 +0,0 @@ -# SIMPLENOTE-ELECTRON - - Simplenote for Web, Windows, and Linux - - SITE: https://github.com/Automattic/simplenote-electron - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/simpleos b/apps/simpleos new file mode 100644 index 000000000..50a4cf31a --- /dev/null +++ b/apps/simpleos @@ -0,0 +1,3 @@ +# simpleos +EOS Blockchain Interface & Wallet +# SITES: https://github.com/eosrio/simpleos \ No newline at end of file diff --git a/apps/simpleos.md b/apps/simpleos.md deleted file mode 100644 index 29a94ef24..000000000 --- a/apps/simpleos.md +++ /dev/null @@ -1,8 +0,0 @@ -# SIMPLEOS - - EOS Blockchain Interface & Wallet - - SITE: https://github.com/eosrio/simpleos - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/simplescreenrecorder b/apps/simplescreenrecorder new file mode 100644 index 000000000..d0996fccc --- /dev/null +++ b/apps/simplescreenrecorder @@ -0,0 +1,6 @@ +# simplescreenrecorder +SimpleScreenRecorder is a screen recorder for Linux. Despite the name, this program is actually quite complex. It's 'simple' in the sense that it's easier to use than ffmpeg/avconv or VLC. + + This is the unofficial AppImage. +# SITES: https://www.maartenbaert.be/simplescreenrecorder +# SOURCES: https://github.com/ivan-hc/SimpleScreenRecorder-appimage \ No newline at end of file diff --git a/apps/simplescreenrecorder.md b/apps/simplescreenrecorder.md deleted file mode 100644 index cf7aafe4d..000000000 --- a/apps/simplescreenrecorder.md +++ /dev/null @@ -1,11 +0,0 @@ -# SIMPLESCREENRECORDER - - SimpleScreenRecorder is a screen recorder for Linux. Despite the name, this program is actually quite complex. It's 'simple' in the sense that it's easier to use than ffmpeg/avconv or VLC. - - This is the unofficial AppImage. - - SITE: https://www.maartenbaert.be/simplescreenrecorder - - SOURCE: https://github.com/ivan-hc/SimpleScreenRecorder-appimage - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/simplest-file-renamer b/apps/simplest-file-renamer new file mode 100644 index 000000000..d8e808850 --- /dev/null +++ b/apps/simplest-file-renamer @@ -0,0 +1,3 @@ +# simplest-file-renamer +Simplest file renamer - rename your files quickly and easily +# SITES: https://github.com/whyboris/Simplest-File-Renamer \ No newline at end of file diff --git a/apps/simplest-file-renamer.md b/apps/simplest-file-renamer.md deleted file mode 100644 index dc473ee57..000000000 --- a/apps/simplest-file-renamer.md +++ /dev/null @@ -1,8 +0,0 @@ -# SIMPLEST-FILE-RENAMER - - Simplest file renamer - rename your files quickly and easily - - SITE: https://github.com/whyboris/Simplest-File-Renamer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/simplex-chat b/apps/simplex-chat new file mode 100644 index 000000000..185e7e30d --- /dev/null +++ b/apps/simplex-chat @@ -0,0 +1,3 @@ +# simplex-chat +SimpleX - the first messaging platform operating without user identifiers of any kind. 100% private by design! iOS and Android apps are released! +# SITES: https://github.com/simplex-chat/simplex-chat \ No newline at end of file diff --git a/apps/simplex-chat.md b/apps/simplex-chat.md deleted file mode 100644 index f8041cd0b..000000000 --- a/apps/simplex-chat.md +++ /dev/null @@ -1,8 +0,0 @@ -# SIMPLEX-CHAT - - SimpleX - the first messaging platform operating without user identifiers of any kind. 100% private by design! iOS and Android apps are released! - - SITE: https://github.com/simplex-chat/simplex-chat - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/simplex-solver b/apps/simplex-solver new file mode 100644 index 000000000..3b2940b7e --- /dev/null +++ b/apps/simplex-solver @@ -0,0 +1,3 @@ +# simplex-solver +Simplex for optimization problems. +# SITES: https://github.com/xeland314/simplex \ No newline at end of file diff --git a/apps/simplex-solver.md b/apps/simplex-solver.md deleted file mode 100644 index 4c3925d70..000000000 --- a/apps/simplex-solver.md +++ /dev/null @@ -1,8 +0,0 @@ -# SIMPLEX-SOLVER - - Simplex for optimization problems. - - SITE: https://github.com/xeland314/simplex - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/simtoolkitpro b/apps/simtoolkitpro new file mode 100644 index 000000000..07cf30c6b --- /dev/null +++ b/apps/simtoolkitpro @@ -0,0 +1,3 @@ +# simtoolkitpro +The all-in-one flight simulation EFB +# SITES: https://simtoolkitpro.co.uk/ \ No newline at end of file diff --git a/apps/simtoolkitpro.md b/apps/simtoolkitpro.md deleted file mode 100644 index 0a82edad9..000000000 --- a/apps/simtoolkitpro.md +++ /dev/null @@ -1,8 +0,0 @@ -# SIMTOOLKITPRO - - The all-in-one flight simulation EFB - - SITE: https://simtoolkitpro.co.uk/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/simutrans b/apps/simutrans new file mode 100644 index 000000000..835b33129 --- /dev/null +++ b/apps/simutrans @@ -0,0 +1,3 @@ +# simutrans +Unofficial, a freeware and open-source transportation simulator. +# SITES: https://github.com/pkgforge-dev/Simutrans-AppImage \ No newline at end of file diff --git a/apps/simutrans.md b/apps/simutrans.md deleted file mode 100644 index afac60263..000000000 --- a/apps/simutrans.md +++ /dev/null @@ -1,8 +0,0 @@ -# SIMUTRANS - - Unofficial, a freeware and open-source transportation simulator. - - SITE: https://github.com/pkgforge-dev/Simutrans-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/singlebox b/apps/singlebox new file mode 100644 index 000000000..5b8fbaf6e --- /dev/null +++ b/apps/singlebox @@ -0,0 +1,3 @@ +# singlebox +AppView template for WebCatalog +# SITES: https://singlebox.app \ No newline at end of file diff --git a/apps/singlebox.md b/apps/singlebox.md deleted file mode 100644 index c8f089447..000000000 --- a/apps/singlebox.md +++ /dev/null @@ -1,8 +0,0 @@ -# SINGLEBOX - - AppView template for WebCatalog - - SITE: https://singlebox.app - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/sinon b/apps/sinon new file mode 100644 index 000000000..81e5eff6b --- /dev/null +++ b/apps/sinon @@ -0,0 +1,3 @@ +# sinon +A handy video tool. +# SITES: https://github.com/JCGithu/Sinon \ No newline at end of file diff --git a/apps/sinon.md b/apps/sinon.md deleted file mode 100644 index 1b2f0045c..000000000 --- a/apps/sinon.md +++ /dev/null @@ -1,8 +0,0 @@ -# SINON - - A handy video tool. - - SITE: https://github.com/JCGithu/Sinon - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/sioyek b/apps/sioyek new file mode 100644 index 000000000..2c9d95604 --- /dev/null +++ b/apps/sioyek @@ -0,0 +1,3 @@ +# sioyek +A PDF viewer designed for reading research papers and technical books. +# SITES: https://github.com/ahrm/sioyek \ No newline at end of file diff --git a/apps/sioyek.md b/apps/sioyek.md deleted file mode 100644 index b9b5f454d..000000000 --- a/apps/sioyek.md +++ /dev/null @@ -1,8 +0,0 @@ -# SIOYEK - - A PDF viewer designed for reading research papers and technical books. - - SITE: https://github.com/ahrm/sioyek - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/sipgate-softphone b/apps/sipgate-softphone new file mode 100644 index 000000000..c995c0f64 --- /dev/null +++ b/apps/sipgate-softphone @@ -0,0 +1,3 @@ +# sipgate-softphone +The sipgate softphone is developed directly by sipgate. +# SITES: https://www.sipgate.de/funktionen/softphone \ No newline at end of file diff --git a/apps/sipgate-softphone.md b/apps/sipgate-softphone.md deleted file mode 100644 index ac0314556..000000000 --- a/apps/sipgate-softphone.md +++ /dev/null @@ -1,8 +0,0 @@ -# SIPGATE-SOFTPHONE - - The sipgate softphone is developed directly by sipgate. - - SITE: https://www.sipgate.de/funktionen/softphone - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/siyuan b/apps/siyuan new file mode 100644 index 000000000..b7d226da4 --- /dev/null +++ b/apps/siyuan @@ -0,0 +1,3 @@ +# siyuan +A local-first personal knowledge management system, support fine-grained block-level reference and Markdown WYSIWYG +# SITES: https://b3log.org/siyuan \ No newline at end of file diff --git a/apps/siyuan.md b/apps/siyuan.md deleted file mode 100644 index 89a32377c..000000000 --- a/apps/siyuan.md +++ /dev/null @@ -1,8 +0,0 @@ -# SIYUAN - - A local-first personal knowledge management system, support fine-grained block-level reference and Markdown WYSIWYG - - SITE: https://b3log.org/siyuan - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/size b/apps/size new file mode 100644 index 000000000..a0c8fbbdb --- /dev/null +++ b/apps/size @@ -0,0 +1,4 @@ +# size + Sizes and total size of binary files. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/size.md b/apps/size.md deleted file mode 100644 index 83054560f..000000000 --- a/apps/size.md +++ /dev/null @@ -1,8 +0,0 @@ -# SIZE - - Sizes and total size of binary files. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/skanpage b/apps/skanpage new file mode 100644 index 000000000..ab3491e02 --- /dev/null +++ b/apps/skanpage @@ -0,0 +1,7 @@ +# skanpage +Skanpage is a simple scanning application optimized for multi-page document scanning. It can also scan and save single-page documents and images. + + This tool is part of the KDE Utils Suite. +# SCREENSHOTS: https://cdn.kde.org/screenshots/skanpage/skanpage.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-utils-appimage \ No newline at end of file diff --git a/apps/skanpage.md b/apps/skanpage.md deleted file mode 100644 index e015db72b..000000000 --- a/apps/skanpage.md +++ /dev/null @@ -1,14 +0,0 @@ -# SKANPAGE - - Skanpage is a simple scanning application optimized for multi-page document scanning. It can also scan and save single-page documents and images. - - This tool is part of the KDE Utils Suite. - - ![Screenshot](https://cdn.kde.org/screenshots/skanpage/skanpage.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-utils-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/skyemu b/apps/skyemu new file mode 100644 index 000000000..d549e8f43 --- /dev/null +++ b/apps/skyemu @@ -0,0 +1,3 @@ +# skyemu +Game Boy Advance, Game Boy, Game Boy Color, and DS Emulator +# SITES: https://github.com/skylersaleh/SkyEmu \ No newline at end of file diff --git a/apps/skyemu.md b/apps/skyemu.md deleted file mode 100644 index 0e5a11d66..000000000 --- a/apps/skyemu.md +++ /dev/null @@ -1,8 +0,0 @@ -# SKYEMU - - Game Boy Advance, Game Boy, Game Boy Color, and DS Emulator - - SITE: https://github.com/skylersaleh/SkyEmu - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/skype b/apps/skype new file mode 100644 index 000000000..65157b7a6 --- /dev/null +++ b/apps/skype @@ -0,0 +1,8 @@ +# skype +Skype is a proprietary telecommunications application that specializes in providing VoIP-based videotelephony, videoconferencing and voice calls. + + It also has instant messaging, file transfer, debit-based calls to landline and mobile telephones (over traditional telephone networks), and other features. Skype is available on various desktop, mobile and video game console platforms, and is operated by Skype Technologies, a division of Microsoft. + + This is the Unofficial AppImage built from the official Snap package. +# SITES: https://www.skype.com +# SOURCES: https://github.com/ivan-hc/Skype-appimage \ No newline at end of file diff --git a/apps/skype.md b/apps/skype.md deleted file mode 100644 index 32c05ed5e..000000000 --- a/apps/skype.md +++ /dev/null @@ -1,18 +0,0 @@ -# SKYPE - - Skype is a proprietary telecommunications application that specializes in providing VoIP-based videotelephony, videoconferencing and voice calls. - - It also has instant messaging, file transfer, debit-based calls to landline and mobile telephones (over traditional telephone networks), and other features. Skype is available on various desktop, mobile and video game console platforms, and is operated by Skype Technologies, a division of Microsoft. - - This is the Unofficial AppImage built from the official Snap package. - - WARNING: since May 5, 2025, Skype is deprecated! Microsoft suggests switching to "Teams". - - ![Screenshot](https://www.addictivetips.com/app/uploads/2018/02/skype1.png) - - SITE: https://www.skype.com - - SOURCE: https://github.com/ivan-hc/Skype-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/slack b/apps/slack new file mode 100644 index 000000000..7ac5833b7 --- /dev/null +++ b/apps/slack @@ -0,0 +1,4 @@ +# slack + Unofficial AppImage of Slack. +# SITES: https://github.com/pkgforge-dev/slack-appimage +# SOURCES: https://github.com/pkgforge-dev/slack-appimage \ No newline at end of file diff --git a/apps/slack.md b/apps/slack.md deleted file mode 100644 index 75328cb39..000000000 --- a/apps/slack.md +++ /dev/null @@ -1,8 +0,0 @@ -# SLACK - - Unofficial AppImage of Slack. - - SITE: https://github.com/pkgforge-dev/slack-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/slackbackup b/apps/slackbackup new file mode 100644 index 000000000..26c178799 --- /dev/null +++ b/apps/slackbackup @@ -0,0 +1,3 @@ +# slackbackup +An application to archive Slack messages and perform some simple account +# SITES: https://github.com/jcolag/SlackBackup \ No newline at end of file diff --git a/apps/slackbackup.md b/apps/slackbackup.md deleted file mode 100644 index 6c136db73..000000000 --- a/apps/slackbackup.md +++ /dev/null @@ -1,8 +0,0 @@ -# SLACKBACKUP - - An application to archive Slack messages and perform some simple account - - SITE: https://github.com/jcolag/SlackBackup - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/slacktronic b/apps/slacktronic new file mode 100644 index 000000000..19bd27590 --- /dev/null +++ b/apps/slacktronic @@ -0,0 +1,3 @@ +# slacktronic +Connect your Slack workspace to Arduino +# SITES: https://github.com/migmartri/slacktronic \ No newline at end of file diff --git a/apps/slacktronic.md b/apps/slacktronic.md deleted file mode 100644 index fdae5065d..000000000 --- a/apps/slacktronic.md +++ /dev/null @@ -1,8 +0,0 @@ -# SLACKTRONIC - - Connect your Slack workspace to Arduino - - SITE: https://github.com/migmartri/slacktronic - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/slang-ed b/apps/slang-ed new file mode 100644 index 000000000..bad61abaf --- /dev/null +++ b/apps/slang-ed @@ -0,0 +1,3 @@ +# slang-ed +Simple Lang Files Editor. An Electron/Ionic application to edit i18n language translations files. It is intended to ease the translation of your content to different languages when using the ngx-translate internationalization (i18n) library for Angular. Allows the edition of JSON translation files. +# SITES: https://github.com/jrierab/slang-ed \ No newline at end of file diff --git a/apps/slang-ed.md b/apps/slang-ed.md deleted file mode 100644 index 4f4b5b349..000000000 --- a/apps/slang-ed.md +++ /dev/null @@ -1,7 +0,0 @@ -# SLANG-ED - - Simple Lang Files Editor. An Electron/Ionic application to edit i18n language translations files. It is intended to ease the translation of your content to different languages when using the ngx-translate internationalization (i18n) library for Angular. Allows the edition of JSON translation files. - - SITE: https://github.com/jrierab/slang-ed - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/sleek b/apps/sleek new file mode 100644 index 000000000..f2cc67e3a --- /dev/null +++ b/apps/sleek @@ -0,0 +1,3 @@ +# sleek +A todo.txt manager for Linux, Windows and MacOS, free and open-source (FOSS) +# SITES: https://github.com/ransome1/sleek \ No newline at end of file diff --git a/apps/sleek.md b/apps/sleek.md deleted file mode 100644 index 05f53bbde..000000000 --- a/apps/sleek.md +++ /dev/null @@ -1,8 +0,0 @@ -# SLEEK - - A todo.txt manager for Linux, Windows and MacOS, free and open-source (FOSS) - - SITE: https://github.com/ransome1/sleek - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/sleep b/apps/sleep new file mode 100644 index 000000000..a84ba95cc --- /dev/null +++ b/apps/sleep @@ -0,0 +1,3 @@ +# sleep +Delay for a specified amount of time. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/sleep.md b/apps/sleep.md deleted file mode 100644 index fd43ce83f..000000000 --- a/apps/sleep.md +++ /dev/null @@ -1,8 +0,0 @@ -# SLEEP - - Delay for a specified amount of time. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/slic3r b/apps/slic3r new file mode 100644 index 000000000..5316c1493 --- /dev/null +++ b/apps/slic3r @@ -0,0 +1,3 @@ +# slic3r +Open Source toolpath generator for 3D printers +# SITES: https://slic3r.org/ \ No newline at end of file diff --git a/apps/slic3r.md b/apps/slic3r.md deleted file mode 100644 index fe58f5de6..000000000 --- a/apps/slic3r.md +++ /dev/null @@ -1,8 +0,0 @@ -# SLIC3R - - Open Source toolpath generator for 3D printers - - SITE: https://slic3r.org/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/slippi b/apps/slippi new file mode 100644 index 000000000..222fbcbaf --- /dev/null +++ b/apps/slippi @@ -0,0 +1,3 @@ +# slippi +Slippi Launcher program for browsing and playing replays. +# SITES: https://github.com/project-slippi/slippi-desktop-app \ No newline at end of file diff --git a/apps/slippi.md b/apps/slippi.md deleted file mode 100644 index 99ea27a13..000000000 --- a/apps/slippi.md +++ /dev/null @@ -1,8 +0,0 @@ -# SLIPPI - - Slippi Launcher program for browsing and playing replays. - - SITE: https://github.com/project-slippi/slippi-desktop-app - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/slogidex b/apps/slogidex new file mode 100644 index 000000000..fa4472276 --- /dev/null +++ b/apps/slogidex @@ -0,0 +1,3 @@ +# slogidex +Task management and automation tool +# SITES: https://github.com/aklos/slogidex \ No newline at end of file diff --git a/apps/slogidex.md b/apps/slogidex.md deleted file mode 100644 index ed28d0933..000000000 --- a/apps/slogidex.md +++ /dev/null @@ -1,8 +0,0 @@ -# SLOGIDEX - - Task management and automation tool - - SITE: https://github.com/aklos/slogidex - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/smallbasic b/apps/smallbasic new file mode 100644 index 000000000..f330e6594 --- /dev/null +++ b/apps/smallbasic @@ -0,0 +1,3 @@ +# smallbasic +SmallBASIC is a fast and easy to learn BASIC language interpreter ideal for everyday calculations, scripts and prototypes. SmallBASIC includes trigonometric, matrices and algebra functions, a built in IDE, a powerful string library, system, sound, and graphic commands along with structured programming syntax. +# SITES: https://github.com/smallbasic/SmallBASIC \ No newline at end of file diff --git a/apps/smallbasic.md b/apps/smallbasic.md deleted file mode 100644 index 18c5b74b5..000000000 --- a/apps/smallbasic.md +++ /dev/null @@ -1,8 +0,0 @@ -# SMALLBASIC - - SmallBASIC is a fast and easy to learn BASIC language interpreter ideal for everyday calculations, scripts and prototypes. SmallBASIC includes trigonometric, matrices and algebra functions, a built in IDE, a powerful string library, system, sound, and graphic commands along with structured programming syntax. - - SITE: https://github.com/smallbasic/SmallBASIC - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/smartservogui b/apps/smartservogui new file mode 100644 index 000000000..38bbce4b2 --- /dev/null +++ b/apps/smartservogui @@ -0,0 +1,3 @@ +# smartservogui +SmartServoGui helps you scan for servo devices easily view and tweak their +# SITES: https://github.com/emericg/SmartServoFramework \ No newline at end of file diff --git a/apps/smartservogui.md b/apps/smartservogui.md deleted file mode 100644 index 7c233016d..000000000 --- a/apps/smartservogui.md +++ /dev/null @@ -1,8 +0,0 @@ -# SMARTSERVOGUI - - SmartServoGui helps you scan for servo devices easily view and tweak their - - SITE: https://github.com/emericg/SmartServoFramework - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/smassh b/apps/smassh new file mode 100644 index 000000000..87a0f7208 --- /dev/null +++ b/apps/smassh @@ -0,0 +1,3 @@ +# smassh +Smassh your Keyboard, TUI Edition +# SITES: https://github.com/kraanzu/smassh \ No newline at end of file diff --git a/apps/smassh.md b/apps/smassh.md deleted file mode 100644 index 179646c47..000000000 --- a/apps/smassh.md +++ /dev/null @@ -1,8 +0,0 @@ -# SMASSH - - Smassh your Keyboard, TUI Edition - - SITE: https://github.com/kraanzu/smassh - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/smath-studio b/apps/smath-studio new file mode 100644 index 000000000..6d8b5f2d3 --- /dev/null +++ b/apps/smath-studio @@ -0,0 +1,3 @@ +# smath-studio +Tiny, but powerful mathematical program with WYSIWYG editor and complete units of measurements support. +# SITES: https://github.com/gntech/smath-appimage \ No newline at end of file diff --git a/apps/smath-studio.md b/apps/smath-studio.md deleted file mode 100644 index a40216fc9..000000000 --- a/apps/smath-studio.md +++ /dev/null @@ -1,8 +0,0 @@ -# SMATH-STUDIO - - Tiny, but powerful mathematical program with WYSIWYG editor and complete units of measurements support. - - SITE: https://github.com/gntech/smath-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/smf-dsp b/apps/smf-dsp new file mode 100644 index 000000000..f077e4c81 --- /dev/null +++ b/apps/smf-dsp @@ -0,0 +1,3 @@ +# smf-dsp +Standard MIDI file player +# SITES: https://github.com/jpcima/smf-dsp \ No newline at end of file diff --git a/apps/smf-dsp.md b/apps/smf-dsp.md deleted file mode 100644 index 6931d0b1a..000000000 --- a/apps/smf-dsp.md +++ /dev/null @@ -1,8 +0,0 @@ -# SMF-DSP - - Standard MIDI file player - - SITE: https://github.com/jpcima/smf-dsp - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/smplayer b/apps/smplayer new file mode 100644 index 000000000..d70a3f66a --- /dev/null +++ b/apps/smplayer @@ -0,0 +1,4 @@ +# smplayer +SMPlayer is a free media player for Windows and Linux with built-in codecs that can play virtually all video and audio formats. It doesn't need any external codecs. Just install SMPlayer and you'll be able to play all formats without the hassle to find and install codec packs. +# SITES: https://www.smplayer.info +# SOURCES: https://github.com/smplayer-dev/smplayer \ No newline at end of file diff --git a/apps/smplayer.md b/apps/smplayer.md deleted file mode 100644 index 0527080f7..000000000 --- a/apps/smplayer.md +++ /dev/null @@ -1,10 +0,0 @@ -# SMPLAYER - - SMPlayer is a free media player for Windows and Linux with built-in codecs that can play virtually all video and audio formats. It doesn't need any external codecs. Just install SMPlayer and you'll be able to play all formats without the hassle to find and install codec packs. - - SITE: https://www.smplayer.info - - SOURCE: https://github.com/smplayer-dev/smplayer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/smuview b/apps/smuview new file mode 100644 index 000000000..a0d1e753a --- /dev/null +++ b/apps/smuview @@ -0,0 +1,3 @@ +# smuview +A Qt based source measure unit GUI for sigrok +# SITES: https://github.com/knarfS/smuview \ No newline at end of file diff --git a/apps/smuview.md b/apps/smuview.md deleted file mode 100644 index da32912b0..000000000 --- a/apps/smuview.md +++ /dev/null @@ -1,8 +0,0 @@ -# SMUVIEW - - A Qt based source measure unit GUI for sigrok - - SITE: https://github.com/knarfS/smuview - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/snake-js b/apps/snake-js new file mode 100644 index 000000000..4fd21216e --- /dev/null +++ b/apps/snake-js @@ -0,0 +1,3 @@ +# snake-js +Canvas/JavaScript based Snake Game with support for controllers. (SNES/PS/XBOX) +# SITES: https://github.com/aenany/snake.js \ No newline at end of file diff --git a/apps/snake-js.md b/apps/snake-js.md deleted file mode 100644 index b9b010381..000000000 --- a/apps/snake-js.md +++ /dev/null @@ -1,8 +0,0 @@ -# SNAKE-JS - - Canvas/JavaScript based Snake Game with support for controllers. (SNES/PS/XBOX) - - SITE: https://github.com/aenany/snake.js - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/snapclear b/apps/snapclear new file mode 100644 index 000000000..5def5c37f --- /dev/null +++ b/apps/snapclear @@ -0,0 +1,3 @@ +# snapclear +emove Image Background with AI for Free Offline. +# SITES: https://www.snapclear.app \ No newline at end of file diff --git a/apps/snapclear.md b/apps/snapclear.md deleted file mode 100644 index 7021324bb..000000000 --- a/apps/snapclear.md +++ /dev/null @@ -1,8 +0,0 @@ -# SNAPCLEAR - - emove Image Background with AI for Free Offline. - - SITE: https://www.snapclear.app - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/snapmaker-orca b/apps/snapmaker-orca new file mode 100644 index 000000000..e86d53e13 --- /dev/null +++ b/apps/snapmaker-orca @@ -0,0 +1,3 @@ +# snapmaker-orca +G-code generator for 3D printers (Bambu, Prusa, Voron, VzBot, RatRig, Creality...). +# SITES: https://github.com/Snapmaker/OrcaSlicer \ No newline at end of file diff --git a/apps/snapmaker-orca.md b/apps/snapmaker-orca.md deleted file mode 100644 index 79043a4ea..000000000 --- a/apps/snapmaker-orca.md +++ /dev/null @@ -1,8 +0,0 @@ -# SNAPMAKER-ORCA - - G-code generator for 3D printers (Bambu, Prusa, Voron, VzBot, RatRig, Creality...). - - SITE: https://github.com/Snapmaker/OrcaSlicer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/snapshot-slider b/apps/snapshot-slider new file mode 100644 index 000000000..03f79ec85 --- /dev/null +++ b/apps/snapshot-slider @@ -0,0 +1,3 @@ +# snapshot-slider +A slider to present, print and email Snapshots of modern mathematics from Oberwolfach. +# SITES: https://github.com/IMAGINARY/snapshot-slider \ No newline at end of file diff --git a/apps/snapshot-slider.md b/apps/snapshot-slider.md deleted file mode 100644 index a50b6b7aa..000000000 --- a/apps/snapshot-slider.md +++ /dev/null @@ -1,7 +0,0 @@ -# SNAPSHOT-SLIDER - - A slider to present, print and email Snapshots of modern mathematics from Oberwolfach. - - SITE: https://github.com/IMAGINARY/snapshot-slider - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/snes9x b/apps/snes9x new file mode 100644 index 000000000..41289ed3b --- /dev/null +++ b/apps/snes9x @@ -0,0 +1,3 @@ +# snes9x +Snes9x - Portable Super Nintendo Entertainment System (TM) emulator +# SITES: https://github.com/snes9xgit/snes9x \ No newline at end of file diff --git a/apps/snes9x-enhanced b/apps/snes9x-enhanced new file mode 100644 index 000000000..be57c8edf --- /dev/null +++ b/apps/snes9x-enhanced @@ -0,0 +1,3 @@ +# snes9x-enhanced +Unofficial, Snes9x - Portable Super Nintendo Entertainment System TM emulator. +# SITES: https://github.com/pkgforge-dev/Snes9x-AppImage-Enhanced \ No newline at end of file diff --git a/apps/snes9x-enhanced.md b/apps/snes9x-enhanced.md deleted file mode 100644 index 0699a2bd4..000000000 --- a/apps/snes9x-enhanced.md +++ /dev/null @@ -1,8 +0,0 @@ -# SNES9X-ENHANCED - - Unofficial, Snes9x - Portable Super Nintendo Entertainment System TM emulator. - - SITE: https://github.com/pkgforge-dev/Snes9x-AppImage-Enhanced - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/snes9x.md b/apps/snes9x.md deleted file mode 100644 index 8e03d7e2c..000000000 --- a/apps/snes9x.md +++ /dev/null @@ -1,8 +0,0 @@ -# SNES9X - - Snes9x - Portable Super Nintendo Entertainment System (TM) emulator - - SITE: https://github.com/snes9xgit/snes9x - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/sniffnet b/apps/sniffnet new file mode 100644 index 000000000..df2407dc1 --- /dev/null +++ b/apps/sniffnet @@ -0,0 +1,3 @@ +# sniffnet +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. +# SITES: https://github.com/GyulyVGC/sniffnet \ No newline at end of file diff --git a/apps/sniffnet.md b/apps/sniffnet.md deleted file mode 100644 index 8b6e9c98c..000000000 --- a/apps/sniffnet.md +++ /dev/null @@ -1,8 +0,0 @@ -# SNIFFNET - - 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. - - SITE: https://github.com/GyulyVGC/sniffnet - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/snippetstore b/apps/snippetstore new file mode 100644 index 000000000..1396dc518 --- /dev/null +++ b/apps/snippetstore @@ -0,0 +1,3 @@ +# snippetstore +A snippet management app for developers +# SITES: https://github.com/ZeroX-DG/SnippetStore \ No newline at end of file diff --git a/apps/snippetstore.md b/apps/snippetstore.md deleted file mode 100644 index 88617e481..000000000 --- a/apps/snippetstore.md +++ /dev/null @@ -1,8 +0,0 @@ -# SNIPPETSTORE - - A snippet management app for developers - - SITE: https://github.com/ZeroX-DG/SnippetStore - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/snomcontrol b/apps/snomcontrol new file mode 100644 index 000000000..f335afaa3 --- /dev/null +++ b/apps/snomcontrol @@ -0,0 +1,3 @@ +# snomcontrol +An application to control snom (D)3xx phones from the desktop. +# SITES: https://github.com/ballessay/snomcontrol \ No newline at end of file diff --git a/apps/snomcontrol.md b/apps/snomcontrol.md deleted file mode 100644 index c4de96271..000000000 --- a/apps/snomcontrol.md +++ /dev/null @@ -1,8 +0,0 @@ -# SNOMCONTROL - - An application to control snom (D)3xx phones from the desktop. - - SITE: https://github.com/ballessay/snomcontrol - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/snowball b/apps/snowball new file mode 100644 index 000000000..e3d1ea412 --- /dev/null +++ b/apps/snowball @@ -0,0 +1,3 @@ +# snowball +Find and filter literature, fast. +# SITES: https://github.com/shaunabanana/snowball \ No newline at end of file diff --git a/apps/snowball.md b/apps/snowball.md deleted file mode 100644 index 0a389697b..000000000 --- a/apps/snowball.md +++ /dev/null @@ -1,8 +0,0 @@ -# SNOWBALL - - Find and filter literature, fast. - - SITE: https://github.com/shaunabanana/snowball - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/snowboardkids2-recomp b/apps/snowboardkids2-recomp new file mode 100644 index 000000000..9d60bf693 --- /dev/null +++ b/apps/snowboardkids2-recomp @@ -0,0 +1,4 @@ +# snowboardkids2-recomp + Unofficial AppImage of game Snowboard Kids 2 Recompilation. +# SITES: https://github.com/pkgforge-dev/SnowboardKids2Recomp-AppImage +# SOURCES: https://github.com/pkgforge-dev/SnowboardKids2Recomp-AppImage \ No newline at end of file diff --git a/apps/snowboardkids2-recomp.md b/apps/snowboardkids2-recomp.md deleted file mode 100644 index 99fc6a923..000000000 --- a/apps/snowboardkids2-recomp.md +++ /dev/null @@ -1,8 +0,0 @@ -# SNOWBOARDKIDS2-RECOMP - - Unofficial AppImage of game Snowboard Kids 2 Recompilation. - - SITE: https://github.com/pkgforge-dev/SnowboardKids2Recomp-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/soapy-sdr b/apps/soapy-sdr new file mode 100644 index 000000000..d0c9aa930 --- /dev/null +++ b/apps/soapy-sdr @@ -0,0 +1,3 @@ +# soapy-sdr +I/Q recorder and processor using SoapySDR as backend +# SITES: https://github.com/mryndzionek/composable-sdr \ No newline at end of file diff --git a/apps/soapy-sdr.md b/apps/soapy-sdr.md deleted file mode 100644 index a9113cc39..000000000 --- a/apps/soapy-sdr.md +++ /dev/null @@ -1,8 +0,0 @@ -# SOAPY-SDR - - I/Q recorder and processor using SoapySDR as backend - - SITE: https://github.com/mryndzionek/composable-sdr - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/soar b/apps/soar new file mode 100644 index 000000000..9d36dc0d1 --- /dev/null +++ b/apps/soar @@ -0,0 +1,4 @@ +# soar +A fast, modern package manager for Static Binaries, Portable Formats (AppImage|AppBundle|FlatImage|Runimage) & More. +# SCREENSHOTS: https://camo.githubusercontent.com/2ccca7c007a4654aa5a68159a6993bd1cc7b3582f3a173db9a864fdbc544d146/68747470733a2f2f736f61722e706b67666f7267652e6465762f6769663f76657273696f6e3d76302e352e37 +# SITES: https://github.com/pkgforge/soar \ No newline at end of file diff --git a/apps/soar.md b/apps/soar.md deleted file mode 100644 index d84cad2bc..000000000 --- a/apps/soar.md +++ /dev/null @@ -1,10 +0,0 @@ -# SOAR - - A fast, modern package manager for Static Binaries, Portable Formats (AppImage|AppBundle|FlatImage|Runimage) & More. - - ![sample](https://camo.githubusercontent.com/2ccca7c007a4654aa5a68159a6993bd1cc7b3582f3a173db9a864fdbc544d146/68747470733a2f2f736f61722e706b67666f7267652e6465762f6769663f76657273696f6e3d76302e352e37) - - SITE: https://github.com/pkgforge/soar - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/socnetv b/apps/socnetv new file mode 100644 index 000000000..87bdbe9bb --- /dev/null +++ b/apps/socnetv @@ -0,0 +1,3 @@ +# socnetv +Social Network Analysis and Visualization software +# SITES: https://github.com/socnetv/app \ No newline at end of file diff --git a/apps/socnetv.md b/apps/socnetv.md deleted file mode 100644 index d44c65e58..000000000 --- a/apps/socnetv.md +++ /dev/null @@ -1,8 +0,0 @@ -# SOCNETV - - Social Network Analysis and Visualization software - - SITE: https://github.com/socnetv/app - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/soft-serve b/apps/soft-serve new file mode 100644 index 000000000..6ffde1c5c --- /dev/null +++ b/apps/soft-serve @@ -0,0 +1,3 @@ +# soft-serve +The mighty, self-hostable Git server for the command line. +# SITES: https://github.com/charmbracelet/soft-serve \ No newline at end of file diff --git a/apps/soft-serve.md b/apps/soft-serve.md deleted file mode 100644 index 00da6a9b0..000000000 --- a/apps/soft-serve.md +++ /dev/null @@ -1,8 +0,0 @@ -# SOFT-SERVE - - The mighty, self-hostable Git server for the command line. - - SITE: https://github.com/charmbracelet/soft-serve - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/software-challenge-gui b/apps/software-challenge-gui new file mode 100644 index 000000000..664d96319 --- /dev/null +++ b/apps/software-challenge-gui @@ -0,0 +1,3 @@ +# software-challenge-gui +GUI für die Software-Challenge +# SITES: https://github.com/CAU-Kiel-Tech-Inf/socha-gui \ No newline at end of file diff --git a/apps/software-challenge-gui.md b/apps/software-challenge-gui.md deleted file mode 100644 index 46a76639d..000000000 --- a/apps/software-challenge-gui.md +++ /dev/null @@ -1,8 +0,0 @@ -# SOFTWARE-CHALLENGE-GUI - - GUI für die Software-Challenge - - SITE: https://github.com/CAU-Kiel-Tech-Inf/socha-gui - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/soh-enhanced b/apps/soh-enhanced new file mode 100644 index 000000000..5f0d696ee --- /dev/null +++ b/apps/soh-enhanced @@ -0,0 +1,3 @@ +# soh-enhanced +Unofficial, Ship of Harkinian. +# SITES: https://github.com/pkgforge-dev/soh-AppImage-Enhanced \ No newline at end of file diff --git a/apps/soh-enhanced.md b/apps/soh-enhanced.md deleted file mode 100644 index 53ea71089..000000000 --- a/apps/soh-enhanced.md +++ /dev/null @@ -1,8 +0,0 @@ -# SOH-ENHANCED - - Unofficial, Ship of Harkinian. - - SITE: https://github.com/pkgforge-dev/soh-AppImage-Enhanced - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/soil-editor b/apps/soil-editor new file mode 100644 index 000000000..862bff712 --- /dev/null +++ b/apps/soil-editor @@ -0,0 +1,8 @@ +# soil-editor +CRITERIA 1D is a one-dimensional agro-hydrological model. It includes soil water fluxes, crop development and water needs, a GIS interface (CRITERIA GEO) for geographical simulations and tools to manage crop and soil parameters. + + The software is written in C++ using Qt libraries, so cross-platform building is possible (Windows, Linux, MacOS). + + Soil editor is a tool to edit the soil properties. It uses a modified Van Genuchten - Mualem model to estimate the water retention and hydraulic c onductivity curves. +# SCREENSHOTS: https://github.com/ARPA-SIMC/CRITERIA1D/raw/master/DOC/img/soilEditor.png +# SITES: https://github.com/ARPA-SIMC/CRITERIA1D \ No newline at end of file diff --git a/apps/soil-editor.md b/apps/soil-editor.md deleted file mode 100644 index b3a542cd9..000000000 --- a/apps/soil-editor.md +++ /dev/null @@ -1,14 +0,0 @@ -# SOIL-EDITOR - - CRITERIA 1D is a one-dimensional agro-hydrological model. It includes soil water fluxes, crop development and water needs, a GIS interface (CRITERIA GEO) for geographical simulations and tools to manage crop and soil parameters. - - The software is written in C++ using Qt libraries, so cross-platform building is possible (Windows, Linux, MacOS). - - Soil editor is a tool to edit the soil properties. It uses a modified Van Genuchten - Mualem model to estimate the water retention and hydraulic c onductivity curves. - - ![Screenshot](https://github.com/ARPA-SIMC/CRITERIA1D/raw/master/DOC/img/soilEditor.png) - - SITE: https://github.com/ARPA-SIMC/CRITERIA1D - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/solaar b/apps/solaar new file mode 100644 index 000000000..7a26065ca --- /dev/null +++ b/apps/solaar @@ -0,0 +1,4 @@ +# solaar + Unofficial AppImage of solaar. +# SITES: https://github.com/pkgforge-dev/solaar-appimage +# SOURCES: https://github.com/pkgforge-dev/solaar-appimage \ No newline at end of file diff --git a/apps/solaar.md b/apps/solaar.md deleted file mode 100644 index a5be93425..000000000 --- a/apps/solaar.md +++ /dev/null @@ -1,8 +0,0 @@ -# SOLAAR - - Unofficial AppImage of solaar. - - SITE: https://github.com/pkgforge-dev/solaar-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/solars b/apps/solars new file mode 100644 index 000000000..3a9cbd507 --- /dev/null +++ b/apps/solars @@ -0,0 +1,3 @@ +# solars +Visualize the planets of our solar system. +# SITES: https://github.com/hiltontj/solars \ No newline at end of file diff --git a/apps/solars.md b/apps/solars.md deleted file mode 100644 index ec4707f99..000000000 --- a/apps/solars.md +++ /dev/null @@ -1,8 +0,0 @@ -# SOLARS - - Visualize the planets of our solar system. - - SITE: https://github.com/hiltontj/solars - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/solarwallet b/apps/solarwallet new file mode 100644 index 000000000..f39061c68 --- /dev/null +++ b/apps/solarwallet @@ -0,0 +1,3 @@ +# solarwallet +Stellar wallet. Secure and user-friendly. +# SITES: https://solarwallet.io/ \ No newline at end of file diff --git a/apps/solarwallet.md b/apps/solarwallet.md deleted file mode 100644 index af8591256..000000000 --- a/apps/solarwallet.md +++ /dev/null @@ -1,8 +0,0 @@ -# SOLARWALLET - - Stellar wallet. Secure and user-friendly. - - SITE: https://solarwallet.io/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/songrec b/apps/songrec new file mode 100644 index 000000000..682e15553 --- /dev/null +++ b/apps/songrec @@ -0,0 +1,3 @@ +# songrec +Unofficial, an open-source Shazam client for Linux. +# SITES: https://github.com/pkgforge-dev/SongRec-AppImage \ No newline at end of file diff --git a/apps/songrec.md b/apps/songrec.md deleted file mode 100644 index ed253dc20..000000000 --- a/apps/songrec.md +++ /dev/null @@ -1,8 +0,0 @@ -# SONGREC - - Unofficial, an open-source Shazam client for Linux. - - SITE: https://github.com/pkgforge-dev/SongRec-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/sonic-3-air b/apps/sonic-3-air new file mode 100644 index 000000000..068777ca3 --- /dev/null +++ b/apps/sonic-3-air @@ -0,0 +1,3 @@ +# sonic-3-air +Unofficial AppImage of Sonic 3 A.I.R. +# SITES: https://github.com/pkgforge-dev/Sonic-3-AIR-AppImage \ No newline at end of file diff --git a/apps/sonic-3-air.md b/apps/sonic-3-air.md deleted file mode 100644 index 51c0cef5b..000000000 --- a/apps/sonic-3-air.md +++ /dev/null @@ -1,8 +0,0 @@ -# SONIC-3-AIR - - Unofficial AppImage of Sonic 3 A.I.R. - - SITE: https://github.com/pkgforge-dev/Sonic-3-AIR-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/sonic-mania-decompilation b/apps/sonic-mania-decompilation new file mode 100644 index 000000000..5f774a8b9 --- /dev/null +++ b/apps/sonic-mania-decompilation @@ -0,0 +1,3 @@ +# sonic-mania-decompilation +A complete decompilation of Sonic Mania (2017). +# SITES: https://github.com/pkgforge-dev/Sonic-Mania-Decompilation-AppImage \ No newline at end of file diff --git a/apps/sonic-mania-decompilation.md b/apps/sonic-mania-decompilation.md deleted file mode 100644 index 81bab8b51..000000000 --- a/apps/sonic-mania-decompilation.md +++ /dev/null @@ -1,8 +0,0 @@ -# SONIC-MANIA-DECOMPILATION - - A complete decompilation of Sonic Mania (2017). - - SITE: https://github.com/pkgforge-dev/Sonic-Mania-Decompilation-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/sonicvisualiser b/apps/sonicvisualiser new file mode 100644 index 000000000..1b745a43e --- /dev/null +++ b/apps/sonicvisualiser @@ -0,0 +1,3 @@ +# sonicvisualiser +Viewing and analysing the contents of music audio files +# SITES: https://www.sonicvisualiser.org \ No newline at end of file diff --git a/apps/sonicvisualiser.md b/apps/sonicvisualiser.md deleted file mode 100644 index 5997670b9..000000000 --- a/apps/sonicvisualiser.md +++ /dev/null @@ -1,7 +0,0 @@ -# SONICVISUALISER - - Viewing and analysing the contents of music audio files - - SITE: https://www.sonicvisualiser.org - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/sonixd b/apps/sonixd new file mode 100644 index 000000000..7cb6eced3 --- /dev/null +++ b/apps/sonixd @@ -0,0 +1,4 @@ +# sonixd +A full-featured Subsonic/Jellyfin compatible desktop + music player. +# SITES: https://github.com/jeffvli/sonixd \ No newline at end of file diff --git a/apps/sonixd.md b/apps/sonixd.md deleted file mode 100644 index 9af9a2b7a..000000000 --- a/apps/sonixd.md +++ /dev/null @@ -1,9 +0,0 @@ -# SONIXD - - A full-featured Subsonic/Jellyfin compatible desktop - music player. - - SITE: https://github.com/jeffvli/sonixd - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/sonos-controller b/apps/sonos-controller new file mode 100644 index 000000000..4c5e5a0cb --- /dev/null +++ b/apps/sonos-controller @@ -0,0 +1,3 @@ +# sonos-controller +An Electron based linux app for controlling your sonos system. +# SITES: https://github.com/pascalopitz/unoffical-sonos-controller-for-linux \ No newline at end of file diff --git a/apps/sonos-controller.md b/apps/sonos-controller.md deleted file mode 100644 index de1babf6f..000000000 --- a/apps/sonos-controller.md +++ /dev/null @@ -1,8 +0,0 @@ -# SONOS-CONTROLLER - - An Electron based linux app for controlling your sonos system. - - SITE: https://github.com/pascalopitz/unoffical-sonos-controller-for-linux - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/sonusmix b/apps/sonusmix new file mode 100644 index 000000000..bc263f7d7 --- /dev/null +++ b/apps/sonusmix @@ -0,0 +1,4 @@ +# sonusmix +Next-gen Pipewire audio routing tool. +# SCREENSHOTS: https://codeberg.org/sonusmix/sonusmix/media/branch/main/assets/readme/sonusmix2.png +# SITES: https://codeberg.org/sonusmix/sonusmix \ No newline at end of file diff --git a/apps/sonusmix.md b/apps/sonusmix.md deleted file mode 100644 index 9871b8de8..000000000 --- a/apps/sonusmix.md +++ /dev/null @@ -1,10 +0,0 @@ -# SONUSMIX - - Next-gen Pipewire audio routing tool. - - ![Screenshot](https://codeberg.org/sonusmix/sonusmix/media/branch/main/assets/readme/sonusmix2.png) - - SITE: https://codeberg.org/sonusmix/sonusmix - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/sort b/apps/sort new file mode 100644 index 000000000..4100516d4 --- /dev/null +++ b/apps/sort @@ -0,0 +1,3 @@ +# sort +Sort lines of text files. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/sort.md b/apps/sort.md deleted file mode 100644 index 5c30ccec9..000000000 --- a/apps/sort.md +++ /dev/null @@ -1,8 +0,0 @@ -# SORT - - Sort lines of text files. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/soul-arena b/apps/soul-arena new file mode 100644 index 000000000..1249867da --- /dev/null +++ b/apps/soul-arena @@ -0,0 +1,3 @@ +# soul-arena +Bleach-based online multiplayer strategy game +# SITES: https://soul.arena-game.app/ \ No newline at end of file diff --git a/apps/soul-arena.md b/apps/soul-arena.md deleted file mode 100644 index 41b3d9bb9..000000000 --- a/apps/soul-arena.md +++ /dev/null @@ -1,8 +0,0 @@ -# SOUL-ARENA - - Bleach-based online multiplayer strategy game - - SITE: https://soul.arena-game.app/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/sound-space-plus b/apps/sound-space-plus new file mode 100644 index 000000000..9bae8125d --- /dev/null +++ b/apps/sound-space-plus @@ -0,0 +1,3 @@ +# sound-space-plus +Unofficial AppImage of sound-space-plus, Rhythm-based aim game. +# SITES: https://github.com/pkgforge-dev/sound-space-plus-AppImage \ No newline at end of file diff --git a/apps/sound-space-plus.md b/apps/sound-space-plus.md deleted file mode 100644 index 06b95a502..000000000 --- a/apps/sound-space-plus.md +++ /dev/null @@ -1,8 +0,0 @@ -# SOUND-SPACE-PLUS - - Unofficial AppImage of sound-space-plus, Rhythm-based aim game. - - SITE: https://github.com/pkgforge-dev/sound-space-plus-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/soundcloud-rpc b/apps/soundcloud-rpc new file mode 100644 index 000000000..33f7bd61e --- /dev/null +++ b/apps/soundcloud-rpc @@ -0,0 +1,3 @@ +# soundcloud-rpc +A SoundCloud client with Discord Rich Presence, Dark Mode, and AdBlock support. +# SITES: https://github.com/richardhbtz/soundcloud-rpc \ No newline at end of file diff --git a/apps/soundcloud-rpc.md b/apps/soundcloud-rpc.md deleted file mode 100644 index 02aca718a..000000000 --- a/apps/soundcloud-rpc.md +++ /dev/null @@ -1,8 +0,0 @@ -# SOUNDCLOUD-RPC - - A SoundCloud client with Discord Rich Presence, Dark Mode, and AdBlock support. - - SITE: https://github.com/richardhbtz/soundcloud-rpc - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/sourcetrail b/apps/sourcetrail new file mode 100644 index 000000000..f3b0da4aa --- /dev/null +++ b/apps/sourcetrail @@ -0,0 +1,3 @@ +# sourcetrail +Source Code Explorer +# SITES: https://github.com/CoatiSoftware/Sourcetrail \ No newline at end of file diff --git a/apps/sourcetrail.md b/apps/sourcetrail.md deleted file mode 100644 index 421aaaa2c..000000000 --- a/apps/sourcetrail.md +++ /dev/null @@ -1,9 +0,0 @@ -# SOURCETRAIL - - Source Code Explorer - - SITE: https://github.com/CoatiSoftware/Sourcetrail - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | - diff --git a/apps/sozi b/apps/sozi new file mode 100644 index 000000000..be5c971a4 --- /dev/null +++ b/apps/sozi @@ -0,0 +1,3 @@ +# sozi +A "zooming" presentation editor +# SITES: https://github.com/sozi-projects/Sozi \ No newline at end of file diff --git a/apps/sozi.md b/apps/sozi.md deleted file mode 100644 index be9de5f25..000000000 --- a/apps/sozi.md +++ /dev/null @@ -1,8 +0,0 @@ -# SOZI - - A "zooming" presentation editor - - SITE: https://github.com/sozi-projects/Sozi - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/spacebar b/apps/spacebar new file mode 100644 index 000000000..eddcbb261 --- /dev/null +++ b/apps/spacebar @@ -0,0 +1,3 @@ +# spacebar +Open source, themeable and extendable discord-compatible native Spacebar client +# SITES: https://github.com/spacebarchat/client \ No newline at end of file diff --git a/apps/spacebar-debug b/apps/spacebar-debug new file mode 100644 index 000000000..c312862bf --- /dev/null +++ b/apps/spacebar-debug @@ -0,0 +1,3 @@ +# spacebar-debug +Open source, themeable and extendable discord-compatible native Spacebar client +# SITES: https://github.com/spacebarchat/client \ No newline at end of file diff --git a/apps/spacebar-debug.md b/apps/spacebar-debug.md deleted file mode 100644 index 0406df719..000000000 --- a/apps/spacebar-debug.md +++ /dev/null @@ -1,8 +0,0 @@ -# SPACEBAR-DEBUG - - Open source, themeable and extendable discord-compatible native Spacebar client - - SITE: https://github.com/spacebarchat/client - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/spacebar.md b/apps/spacebar.md deleted file mode 100644 index f3161b81e..000000000 --- a/apps/spacebar.md +++ /dev/null @@ -1,8 +0,0 @@ -# SPACEBAR - - Open source, themeable and extendable discord-compatible native Spacebar client - - SITE: https://github.com/spacebarchat/client - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/spacecadet b/apps/spacecadet new file mode 100644 index 000000000..6d9465a6c --- /dev/null +++ b/apps/spacecadet @@ -0,0 +1,4 @@ +# spacecadet +Reverse engineered port of \"3D Pinball for Windows – Space Cadet\" to Linux. +# SCREENSHOTS: https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io/assets/88724353/7cce9e1d-bee4-44bd-8d02-3518c7fd085d +# SITES: https://github.com/ivan-hc/Spacecadetpinball-git-appimage \ No newline at end of file diff --git a/apps/spacecadet.md b/apps/spacecadet.md deleted file mode 100644 index 81d208172..000000000 --- a/apps/spacecadet.md +++ /dev/null @@ -1,10 +0,0 @@ -# SPACECADET - - Reverse engineered port of \"3D Pinball for Windows – Space Cadet\" to Linux. - - ![spacecadetpinball](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io/assets/88724353/7cce9e1d-bee4-44bd-8d02-3518c7fd085d) - - SITE: https://github.com/ivan-hc/Spacecadetpinball-git-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/spacewars b/apps/spacewars new file mode 100644 index 000000000..51a8be915 --- /dev/null +++ b/apps/spacewars @@ -0,0 +1,3 @@ +# spacewars +A re-imagining of the classic game Spacewar! in Rust using the Amethyst game engine. +# SITES: https://github.com/spotzero/spacewars \ No newline at end of file diff --git a/apps/spacewars.md b/apps/spacewars.md deleted file mode 100644 index 208d4032d..000000000 --- a/apps/spacewars.md +++ /dev/null @@ -1,8 +0,0 @@ -# SPACEWARS - - A re-imagining of the classic game Spacewar! in Rust using the Amethyst game engine. - - SITE: https://github.com/spotzero/spacewars - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/spaghettikart-enhanced b/apps/spaghettikart-enhanced new file mode 100644 index 000000000..61a87c893 --- /dev/null +++ b/apps/spaghettikart-enhanced @@ -0,0 +1,3 @@ +# spaghettikart-enhanced +Unofficial, Mario Kart 64 PC game Port. +# SITES: https://github.com/pkgforge-dev/SpaghettiKart-AppImage-Enhanced \ No newline at end of file diff --git a/apps/spaghettikart-enhanced.md b/apps/spaghettikart-enhanced.md deleted file mode 100644 index 5d36abc50..000000000 --- a/apps/spaghettikart-enhanced.md +++ /dev/null @@ -1,8 +0,0 @@ -# SPAGHETTIKART-ENHANCED - - Unofficial, Mario Kart 64 PC game Port. - - SITE: https://github.com/pkgforge-dev/SpaghettiKart-AppImage-Enhanced - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/spark-wallet b/apps/spark-wallet new file mode 100644 index 000000000..0bd9421f6 --- /dev/null +++ b/apps/spark-wallet @@ -0,0 +1,3 @@ +# spark-wallet +A minimalistic wallet GUI for c-lightning, accessible over the web or through mobile and desktop apps. +# SITES: https://github.com/shesek/spark-wallet \ No newline at end of file diff --git a/apps/spark-wallet.md b/apps/spark-wallet.md deleted file mode 100644 index a6dd79c4f..000000000 --- a/apps/spark-wallet.md +++ /dev/null @@ -1,7 +0,0 @@ -# SPARK-WALLET - - A minimalistic wallet GUI for c-lightning, accessible over the web or through mobile and desktop apps. - - SITE: https://github.com/shesek/spark-wallet - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/speak-to-ai b/apps/speak-to-ai new file mode 100644 index 000000000..503ad3e5b --- /dev/null +++ b/apps/speak-to-ai @@ -0,0 +1,3 @@ +# speak-to-ai +Speak to AI - native Linux voice-to-text app. +# SITES: https://github.com/AshBuk/speak-to-ai \ No newline at end of file diff --git a/apps/speak-to-ai.md b/apps/speak-to-ai.md deleted file mode 100644 index 7889d495f..000000000 --- a/apps/speak-to-ai.md +++ /dev/null @@ -1,8 +0,0 @@ -# SPEAK-TO-AI - - Speak to AI - native Linux voice-to-text app. - - SITE: https://github.com/AshBuk/speak-to-ai - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/speaky-miniplayer b/apps/speaky-miniplayer new file mode 100644 index 000000000..63b025467 --- /dev/null +++ b/apps/speaky-miniplayer @@ -0,0 +1,3 @@ +# speaky-miniplayer +A miniplayer with a synthetic radio speaker for online streaming radio +# SITES: https://github.com/fjrd84/speaky-miniplayer \ No newline at end of file diff --git a/apps/speaky-miniplayer.md b/apps/speaky-miniplayer.md deleted file mode 100644 index 435c253a8..000000000 --- a/apps/speaky-miniplayer.md +++ /dev/null @@ -1,8 +0,0 @@ -# SPEAKY-MINIPLAYER - - A miniplayer with a synthetic radio speaker for online streaming radio - - SITE: https://github.com/fjrd84/speaky-miniplayer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/speed-dreams b/apps/speed-dreams new file mode 100644 index 000000000..07d021665 --- /dev/null +++ b/apps/speed-dreams @@ -0,0 +1,14 @@ +# speed-dreams +Speed Dreams is a 3d cross-platform, open source motorsport simulation and racing game. It is a fork of the open racing car simulator Torcs, aiming to implement exciting new features, cars, tracks and AI opponents to make a more enjoyable game for the player, as well as constantly improving visual and physics realism. + + Features: + + - Accurate driving behaviour, with different physics engines + - Playable with a variety of input devices (force feed-back is in development) + - Several different racing modes (from a simple practice session, to a full pilot career) + - Variety of cars/car classes (1936 Grand Prix, Supercars, Long Day Series GT1, etc) + - Variety of tracks/tracks categories and always expanding + - Customizable daytime and weather conditions + - Several different AI bots to race with + - Up to 4 user local multiplayer in "split-screen" mode +# SITES: https://www.speed-dreams.net \ No newline at end of file diff --git a/apps/speed-dreams.md b/apps/speed-dreams.md deleted file mode 100644 index f26079dd1..000000000 --- a/apps/speed-dreams.md +++ /dev/null @@ -1,19 +0,0 @@ -# SPEED-DREAMS - - Speed Dreams is a 3d cross-platform, open source motorsport simulation and racing game. It is a fork of the open racing car simulator Torcs, aiming to implement exciting new features, cars, tracks and AI opponents to make a more enjoyable game for the player, as well as constantly improving visual and physics realism. - - Features: - - - Accurate driving behaviour, with different physics engines - - Playable with a variety of input devices (force feed-back is in development) - - Several different racing modes (from a simple practice session, to a full pilot career) - - Variety of cars/car classes (1936 Grand Prix, Supercars, Long Day Series GT1, etc) - - Variety of tracks/tracks categories and always expanding - - Customizable daytime and weather conditions - - Several different AI bots to race with - - Up to 4 user local multiplayer in "split-screen" mode - - SITE: https://www.speed-dreams.net - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/speedcrunch b/apps/speedcrunch new file mode 100644 index 000000000..1a6c670ce --- /dev/null +++ b/apps/speedcrunch @@ -0,0 +1,6 @@ +# speedcrunch +A high-precision scientific calculator featuring a fast, keyboard-driven user interface. It is free and open-source software, licensed under the GPL. + + This is the unofficial AppImage. +# SITES: http://speedcrunch.org +# SOURCES: https://github.com/pkgforge-dev/SpeedCrunch-AppImage \ No newline at end of file diff --git a/apps/speedcrunch.md b/apps/speedcrunch.md deleted file mode 100644 index 15b7e1272..000000000 --- a/apps/speedcrunch.md +++ /dev/null @@ -1,12 +0,0 @@ -# SPEEDCRUNCH - - A high-precision scientific calculator featuring a fast, keyboard-driven user interface. It is free and open-source software, licensed under the GPL. - - This is the unofficial AppImage. - - SITE: http://speedcrunch.org - - APPIMAGE: https://github.com/pkgforge-dev/SpeedCrunch-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/speedyloader b/apps/speedyloader new file mode 100644 index 000000000..26dec02c1 --- /dev/null +++ b/apps/speedyloader @@ -0,0 +1,3 @@ +# speedyloader +Speeduino universal firmware loader +# SITES: https://github.com/noisymime/SpeedyLoader \ No newline at end of file diff --git a/apps/speedyloader.md b/apps/speedyloader.md deleted file mode 100644 index 8c75efc62..000000000 --- a/apps/speedyloader.md +++ /dev/null @@ -1,8 +0,0 @@ -# SPEEDYLOADER - - Speeduino universal firmware loader - - SITE: https://github.com/noisymime/SpeedyLoader - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/speek b/apps/speek new file mode 100644 index 000000000..73d1056c9 --- /dev/null +++ b/apps/speek @@ -0,0 +1,3 @@ +# speek +Privacy focused messenger that doesn't trust anyone with your identity, your contact list, or your communications. +# SITES: https://github.com/Speek-App/Speek \ No newline at end of file diff --git a/apps/speek.md b/apps/speek.md deleted file mode 100644 index 8e78965f3..000000000 --- a/apps/speek.md +++ /dev/null @@ -1,8 +0,0 @@ -# SPEEK - - Privacy focused messenger that doesn't trust anyone with your identity, your contact list, or your communications. - - SITE: https://github.com/Speek-App/Speek - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/spek b/apps/spek new file mode 100644 index 000000000..e3d06c99b --- /dev/null +++ b/apps/spek @@ -0,0 +1,4 @@ +# spek + Unofficial AppImage of Spek. +# SITES: https://github.com/pkgforge-dev/spek-appimage +# SOURCES: https://github.com/pkgforge-dev/spek-appimage \ No newline at end of file diff --git a/apps/spek.md b/apps/spek.md deleted file mode 100644 index 6aeea788f..000000000 --- a/apps/spek.md +++ /dev/null @@ -1,8 +0,0 @@ -# SPEK - - Unofficial AppImage of Spek. - - SITE: https://github.com/pkgforge-dev/spek-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/sphia b/apps/sphia new file mode 100644 index 000000000..e2380bef5 --- /dev/null +++ b/apps/sphia @@ -0,0 +1,3 @@ +# sphia +Sphia - a Proxy Handling Intuitive Application +# SITES: https://github.com/YukidouSatoru/sphia \ No newline at end of file diff --git a/apps/sphia.md b/apps/sphia.md deleted file mode 100644 index bcf2cf910..000000000 --- a/apps/sphia.md +++ /dev/null @@ -1,8 +0,0 @@ -# SPHIA - - Sphia - a Proxy Handling Intuitive Application - - SITE: https://github.com/YukidouSatoru/sphia - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/spicy-launcher b/apps/spicy-launcher new file mode 100644 index 000000000..439dae3d3 --- /dev/null +++ b/apps/spicy-launcher @@ -0,0 +1,3 @@ +# spicy-launcher +Cross-platform launcher for Spicy Lobster games 🌶🦞 +# SITES: https://github.com/spicylobstergames/SpicyLauncher \ No newline at end of file diff --git a/apps/spicy-launcher.md b/apps/spicy-launcher.md deleted file mode 100644 index 3694efb13..000000000 --- a/apps/spicy-launcher.md +++ /dev/null @@ -1,8 +0,0 @@ -# SPICY-LAUNCHER - - Cross-platform launcher for Spicy Lobster games 🌶🦞 - - SITE: https://github.com/spicylobstergames/SpicyLauncher - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/spivak b/apps/spivak new file mode 100644 index 000000000..5f40ad7b4 --- /dev/null +++ b/apps/spivak @@ -0,0 +1,3 @@ +# spivak +Portable free Karaoke Player +# SITES: https://github.com/gyunaev/spivak \ No newline at end of file diff --git a/apps/spivak.md b/apps/spivak.md deleted file mode 100644 index be36ba59b..000000000 --- a/apps/spivak.md +++ /dev/null @@ -1,8 +0,0 @@ -# SPIVAK - - Portable free Karaoke Player - - SITE: https://github.com/gyunaev/spivak - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/splayer b/apps/splayer new file mode 100644 index 000000000..13e6414a6 --- /dev/null +++ b/apps/splayer @@ -0,0 +1,3 @@ +# splayer +🎉 一个简约的音乐播放器,支持逐字歌词,下载歌曲,展示评论区,音乐云盘及歌单管理,音乐频谱,移动端基础适配 | 网易云音乐 | A minimalist music player +# SITES: https://github.com/imsyy/SPlayer \ No newline at end of file diff --git a/apps/splayer.md b/apps/splayer.md deleted file mode 100644 index 82a3e6fd5..000000000 --- a/apps/splayer.md +++ /dev/null @@ -1,8 +0,0 @@ -# SPLAYER - - 🎉 一个简约的音乐播放器,支持逐字歌词,下载歌曲,展示评论区,音乐云盘及歌单管理,音乐频谱,移动端基础适配 | 网易云音乐 | A minimalist music player - - SITE: https://github.com/imsyy/SPlayer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/split b/apps/split new file mode 100644 index 000000000..856b20264 --- /dev/null +++ b/apps/split @@ -0,0 +1,4 @@ +# split + Divide a file into multiple smaller files. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/split.md b/apps/split.md deleted file mode 100644 index 47c4dbc8e..000000000 --- a/apps/split.md +++ /dev/null @@ -1,8 +0,0 @@ -# SPLIT - - Divide a file into multiple smaller files. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/spm b/apps/spm new file mode 100644 index 000000000..d624e22cf --- /dev/null +++ b/apps/spm @@ -0,0 +1,3 @@ +# spm +spm is a command line package manager that mainly provides AppImages. spm uses spm-feed.json from the releases page to get information about packages. +# SITES: https://github.com/simoniz0r/spm \ No newline at end of file diff --git a/apps/spm.md b/apps/spm.md deleted file mode 100644 index 77ceb6d21..000000000 --- a/apps/spm.md +++ /dev/null @@ -1,7 +0,0 @@ -# SPM - - spm is a command line package manager that mainly provides AppImages. spm uses spm-feed.json from the releases page to get information about packages. - - SITE: https://github.com/simoniz0r/spm - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/spmp b/apps/spmp new file mode 100644 index 000000000..016006f25 --- /dev/null +++ b/apps/spmp @@ -0,0 +1,3 @@ +# spmp +A YouTube Music client with a focus on customisation of colours and song metadata. Built with Compose Multiplatform for Android and desktop. +# SITES: https://github.com/toasterofbread/spmp \ No newline at end of file diff --git a/apps/spmp.md b/apps/spmp.md deleted file mode 100644 index 5783f6e79..000000000 --- a/apps/spmp.md +++ /dev/null @@ -1,8 +0,0 @@ -# SPMP - - A YouTube Music client with a focus on customisation of colours and song metadata. Built with Compose Multiplatform for Android and desktop. - - SITE: https://github.com/toasterofbread/spmp - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/sponge-hash-aes256 b/apps/sponge-hash-aes256 new file mode 100644 index 000000000..b38d4b0cf --- /dev/null +++ b/apps/sponge-hash-aes256 @@ -0,0 +1,3 @@ +# sponge-hash-aes256 +A sponge-based secure hash function that uses AES-256 as its internal PRF. +# SITES: https://github.com/lordmulder/sponge-hash-aes256 \ No newline at end of file diff --git a/apps/sponge-hash-aes256.md b/apps/sponge-hash-aes256.md deleted file mode 100644 index f0da87d1f..000000000 --- a/apps/sponge-hash-aes256.md +++ /dev/null @@ -1,8 +0,0 @@ -# SPONGE-HASH-AES256 - - A sponge-based secure hash function that uses AES-256 as its internal PRF. - - SITE: https://github.com/lordmulder/sponge-hash-aes256 - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/spotifetch b/apps/spotifetch new file mode 100644 index 000000000..00284166a --- /dev/null +++ b/apps/spotifetch @@ -0,0 +1,3 @@ +# spotifetch +A simple and beautiful fetch tool for spotify, now rusty :) +# SITES: https://github.com/dotzenith/SpotiFetch.rs \ No newline at end of file diff --git a/apps/spotifetch.md b/apps/spotifetch.md deleted file mode 100644 index a649d2aa9..000000000 --- a/apps/spotifetch.md +++ /dev/null @@ -1,8 +0,0 @@ -# SPOTIFETCH - - A simple and beautiful fetch tool for spotify, now rusty :) - - SITE: https://github.com/dotzenith/SpotiFetch.rs - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/spotify b/apps/spotify new file mode 100644 index 000000000..fb1317989 --- /dev/null +++ b/apps/spotify @@ -0,0 +1,3 @@ +# spotify +Unofficial. A proprietary music streaming service. +# SITES: https://github.com/ivan-hc/Spotify-appimage \ No newline at end of file diff --git a/apps/spotify-candidate b/apps/spotify-candidate new file mode 100644 index 000000000..7db3db42c --- /dev/null +++ b/apps/spotify-candidate @@ -0,0 +1,3 @@ +# spotify-candidate +Unofficial. A proprietary music streaming service. +# SITES: https://github.com/ivan-hc/Spotify-appimage \ No newline at end of file diff --git a/apps/spotify-candidate.md b/apps/spotify-candidate.md deleted file mode 100644 index 469ce9e00..000000000 --- a/apps/spotify-candidate.md +++ /dev/null @@ -1,8 +0,0 @@ -# SPOTIFY-CANDIDATE - - Unofficial. A proprietary music streaming service. - - SITE: https://github.com/ivan-hc/Spotify-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/spotify-dl b/apps/spotify-dl new file mode 100644 index 000000000..3788697ec --- /dev/null +++ b/apps/spotify-dl @@ -0,0 +1,3 @@ +# spotify-dl +A command-line utility to download songs and playlists directly from Spotify's servers +# SITES: https://github.com/GuillemCastro/spotify-dl \ No newline at end of file diff --git a/apps/spotify-dl.md b/apps/spotify-dl.md deleted file mode 100644 index d350efe31..000000000 --- a/apps/spotify-dl.md +++ /dev/null @@ -1,8 +0,0 @@ -# SPOTIFY-DL - - A command-line utility to download songs and playlists directly from Spotify's servers - - SITE: https://github.com/GuillemCastro/spotify-dl - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/spotify-edge b/apps/spotify-edge new file mode 100644 index 000000000..dc2f7e874 --- /dev/null +++ b/apps/spotify-edge @@ -0,0 +1,3 @@ +# spotify-edge +Unofficial. A proprietary music streaming service. +# SITES: https://github.com/ivan-hc/Spotify-appimage \ No newline at end of file diff --git a/apps/spotify-edge.md b/apps/spotify-edge.md deleted file mode 100644 index 9c576b2c7..000000000 --- a/apps/spotify-edge.md +++ /dev/null @@ -1,8 +0,0 @@ -# SPOTIFY-EDGE - - Unofficial. A proprietary music streaming service. - - SITE: https://github.com/ivan-hc/Spotify-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/spotify-player b/apps/spotify-player new file mode 100644 index 000000000..90098082c --- /dev/null +++ b/apps/spotify-player @@ -0,0 +1,3 @@ +# spotify-player +A Spotify player in the terminal with full feature parity. +# SITES: https://github.com/aome510/spotify-player \ No newline at end of file diff --git a/apps/spotify-player.md b/apps/spotify-player.md deleted file mode 100644 index 400bde2a2..000000000 --- a/apps/spotify-player.md +++ /dev/null @@ -1,8 +0,0 @@ -# SPOTIFY-PLAYER - - A Spotify player in the terminal with full feature parity. - - SITE: https://github.com/aome510/spotify-player - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/spotify-qt b/apps/spotify-qt new file mode 100644 index 000000000..731034631 --- /dev/null +++ b/apps/spotify-qt @@ -0,0 +1,3 @@ +# spotify-qt +Lightweight Spotify client using Qt +# SITES: https://github.com/kraxarn/spotify-qt \ No newline at end of file diff --git a/apps/spotify-qt.md b/apps/spotify-qt.md deleted file mode 100644 index 27b64317a..000000000 --- a/apps/spotify-qt.md +++ /dev/null @@ -1,8 +0,0 @@ -# SPOTIFY-QT - - Lightweight Spotify client using Qt - - SITE: https://github.com/kraxarn/spotify-qt - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/spotify-tui b/apps/spotify-tui new file mode 100644 index 000000000..a33b7e624 --- /dev/null +++ b/apps/spotify-tui @@ -0,0 +1,3 @@ +# spotify-tui +Spotify for the terminal written in Rust. +# SITES: https://github.com/Rigellute/spotify-tui \ No newline at end of file diff --git a/apps/spotify-tui.md b/apps/spotify-tui.md deleted file mode 100644 index 14151c7f4..000000000 --- a/apps/spotify-tui.md +++ /dev/null @@ -1,8 +0,0 @@ -# SPOTIFY-TUI - - Spotify for the terminal written in Rust. - - SITE: https://github.com/Rigellute/spotify-tui - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/spotify.md b/apps/spotify.md deleted file mode 100644 index 1ebf7cffc..000000000 --- a/apps/spotify.md +++ /dev/null @@ -1,8 +0,0 @@ -# SPOTIFY - - Unofficial. A proprietary music streaming service. - - SITE: https://github.com/ivan-hc/Spotify-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/spotube b/apps/spotube new file mode 100644 index 000000000..f98ab6181 --- /dev/null +++ b/apps/spotube @@ -0,0 +1,3 @@ +# spotube +🎧 Open source Spotify client that doesn't require Premium nor uses Electron! Available for both desktop & mobile! +# SITES: https://github.com/KRTirtho/spotube \ No newline at end of file diff --git a/apps/spotube.md b/apps/spotube.md deleted file mode 100644 index 6e9905b5e..000000000 --- a/apps/spotube.md +++ /dev/null @@ -1,8 +0,0 @@ -# SPOTUBE - - 🎧 Open source Spotify client that doesn't require Premium nor uses Electron! Available for both desktop & mobile! - - SITE: https://github.com/KRTirtho/spotube - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/spritemate4electron b/apps/spritemate4electron new file mode 100644 index 000000000..ff43980a9 --- /dev/null +++ b/apps/spritemate4electron @@ -0,0 +1,3 @@ +# spritemate4electron +A simple "Electron-wrapper" for Esshahn's awesome Spritemate-webapp. +# SITES: https://github.com/4ch1m/spritemate4electron \ No newline at end of file diff --git a/apps/spritemate4electron.md b/apps/spritemate4electron.md deleted file mode 100644 index 2d910343b..000000000 --- a/apps/spritemate4electron.md +++ /dev/null @@ -1,8 +0,0 @@ -# SPRITEMATE4ELECTRON - - A simple "Electron-wrapper" for Esshahn's awesome Spritemate-webapp. - - SITE: https://github.com/4ch1m/spritemate4electron - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/sptlrx b/apps/sptlrx new file mode 100644 index 000000000..1507aa980 --- /dev/null +++ b/apps/sptlrx @@ -0,0 +1,3 @@ +# sptlrx +Synchronized lyrics in your terminal +# SITES: https://github.com/raitonoberu/sptlrx \ No newline at end of file diff --git a/apps/sptlrx.md b/apps/sptlrx.md deleted file mode 100644 index c7b0b17ab..000000000 --- a/apps/sptlrx.md +++ /dev/null @@ -1,8 +0,0 @@ -# SPTLRX - - Synchronized lyrics in your terminal - - SITE: https://github.com/raitonoberu/sptlrx - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/spyglass b/apps/spyglass new file mode 100644 index 000000000..cfbf1d099 --- /dev/null +++ b/apps/spyglass @@ -0,0 +1,3 @@ +# spyglass +A personal search engine: Create a searchable library from your personal documents, interests, and more! +# SITES: https://github.com/spyglass-search/spyglass \ No newline at end of file diff --git a/apps/spyglass.md b/apps/spyglass.md deleted file mode 100644 index 1651a2112..000000000 --- a/apps/spyglass.md +++ /dev/null @@ -1,8 +0,0 @@ -# SPYGLASS - - A personal search engine: Create a searchable library from your personal documents, interests, and more! - - SITE: https://github.com/spyglass-search/spyglass - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/sqlitebrowser b/apps/sqlitebrowser new file mode 100644 index 000000000..abf16c822 --- /dev/null +++ b/apps/sqlitebrowser @@ -0,0 +1,3 @@ +# sqlitebrowser +DB Browser for SQLite is a light GUI editor for SQLite databases. +# SITES: https://sqlitebrowser.org \ No newline at end of file diff --git a/apps/sqlitebrowser.md b/apps/sqlitebrowser.md deleted file mode 100644 index 8a7a71f2f..000000000 --- a/apps/sqlitebrowser.md +++ /dev/null @@ -1,8 +0,0 @@ -# SQLITEBROWSER - - DB Browser for SQLite is a light GUI editor for SQLite databases. - - SITE: https://sqlitebrowser.org - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/squirrel-disk b/apps/squirrel-disk new file mode 100644 index 000000000..3090d99bf --- /dev/null +++ b/apps/squirrel-disk @@ -0,0 +1,3 @@ +# squirrel-disk +Beautiful, Cross-Platform and Super Fast Disk Usage Analysis Tool - Built With Rust 🦀 +# SITES: https://github.com/adileo/squirreldisk \ No newline at end of file diff --git a/apps/squirrel-disk.md b/apps/squirrel-disk.md deleted file mode 100644 index 3e3b87e43..000000000 --- a/apps/squirrel-disk.md +++ /dev/null @@ -1,8 +0,0 @@ -# SQUIRREL-DISK - - Beautiful, Cross-Platform and Super Fast Disk Usage Analysis Tool - Built With Rust 🦀 - - SITE: https://github.com/adileo/squirreldisk - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/srb2 b/apps/srb2 new file mode 100644 index 000000000..cf05008ac --- /dev/null +++ b/apps/srb2 @@ -0,0 +1,3 @@ +# srb2 +Unofficial, a 3D Sonic the Hedgehog fangame based on a modified version of Doom Legacy. +# SITES: https://github.com/pkgforge-dev/SRB2-AppImage \ No newline at end of file diff --git a/apps/srb2.md b/apps/srb2.md deleted file mode 100644 index 92a2bdda9..000000000 --- a/apps/srb2.md +++ /dev/null @@ -1,8 +0,0 @@ -# SRB2 - - Unofficial, a 3D Sonic the Hedgehog fangame based on a modified version of Doom Legacy. - - SITE: https://github.com/pkgforge-dev/SRB2-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/srb2k b/apps/srb2k new file mode 100644 index 000000000..58880e3c4 --- /dev/null +++ b/apps/srb2k @@ -0,0 +1,3 @@ +# srb2k +AppImage Packages for Sonic Robo Blast 2 Kart (SRB2Kart). +# SITES: https://github.com/Lonsfor/srb2k-appimage \ No newline at end of file diff --git a/apps/srb2k.md b/apps/srb2k.md deleted file mode 100644 index 6221af9b6..000000000 --- a/apps/srb2k.md +++ /dev/null @@ -1,8 +0,0 @@ -# SRB2K - - AppImage Packages for Sonic Robo Blast 2 Kart (SRB2Kart). - - SITE: https://github.com/Lonsfor/srb2k-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/srb2kart b/apps/srb2kart new file mode 100644 index 000000000..1ae37fa7d --- /dev/null +++ b/apps/srb2kart @@ -0,0 +1,4 @@ +# srb2kart + Unofficial AppImage of SRB2kart. +# SITES: https://github.com/pkgforge-dev/srb2kart-appimage +# SOURCES: https://github.com/pkgforge-dev/srb2kart-appimage \ No newline at end of file diff --git a/apps/srb2kart.md b/apps/srb2kart.md deleted file mode 100644 index d5534dff9..000000000 --- a/apps/srb2kart.md +++ /dev/null @@ -1,8 +0,0 @@ -# SRB2KART - - Unofficial AppImage of SRB2kart. - - SITE: https://github.com/pkgforge-dev/srb2kart-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/ssh-mitm b/apps/ssh-mitm new file mode 100644 index 000000000..f2e145c90 --- /dev/null +++ b/apps/ssh-mitm @@ -0,0 +1,3 @@ +# ssh-mitm +ssh mitm server for security audits supporting public key authentication, session hijacking and file manipulation. +# SITES: https://github.com/ssh-mitm/ssh-mitm \ No newline at end of file diff --git a/apps/ssh-mitm.md b/apps/ssh-mitm.md deleted file mode 100644 index 5e5476bc3..000000000 --- a/apps/ssh-mitm.md +++ /dev/null @@ -1,8 +0,0 @@ -# SSH-MITM - - ssh mitm server for security audits supporting public key authentication, session hijacking and file manipulation. - - SITE: https://github.com/ssh-mitm/ssh-mitm - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ssplot b/apps/ssplot new file mode 100644 index 000000000..39833da7e --- /dev/null +++ b/apps/ssplot @@ -0,0 +1,3 @@ +# ssplot +A simple plotting utility for dynamical systems. +# SITES: https://github.com/babaissarkar/ssplot \ No newline at end of file diff --git a/apps/ssplot.md b/apps/ssplot.md deleted file mode 100644 index f36473747..000000000 --- a/apps/ssplot.md +++ /dev/null @@ -1,8 +0,0 @@ -# SSPLOT - - A simple plotting utility for dynamical systems. - - SITE: https://github.com/babaissarkar/ssplot - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/st b/apps/st new file mode 100644 index 000000000..577acbcf5 --- /dev/null +++ b/apps/st @@ -0,0 +1,4 @@ +# st + Unofficial AppImage of the suckless terminal st. +# SITES: https://github.com/pkgforge-dev/st-appimage +# SOURCES: https://github.com/pkgforge-dev/st-appimage \ No newline at end of file diff --git a/apps/st+ b/apps/st+ new file mode 100644 index 000000000..0e6b64a92 --- /dev/null +++ b/apps/st+ @@ -0,0 +1,4 @@ +# st+ + 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. +# SITES: https://github.com/vishnu350/st +# SOURCES: https://github.com/vishnu350/st \ No newline at end of file diff --git a/apps/st+.md b/apps/st+.md deleted file mode 100644 index ca35e7aee..000000000 --- a/apps/st+.md +++ /dev/null @@ -1,8 +0,0 @@ -# ST+ - - 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. - - SITE: https://github.com/vishnu350/st - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/st.md b/apps/st.md deleted file mode 100644 index 01930e674..000000000 --- a/apps/st.md +++ /dev/null @@ -1,8 +0,0 @@ -# ST - - Unofficial AppImage of the suckless terminal st. - - SITE: https://github.com/pkgforge-dev/st-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/stabilitymatrix b/apps/stabilitymatrix new file mode 100644 index 000000000..58aba3b3b --- /dev/null +++ b/apps/stabilitymatrix @@ -0,0 +1,4 @@ +# stabilitymatrix + Multi-Platform Package Manager for Stable Diffusion, a deep AI learning model used for converting text to images. +# SITES: https://github.com/lykosai/stabilitymatrix +# SOURCES: https://github.com/lykosai/stabilitymatrix \ No newline at end of file diff --git a/apps/stabilitymatrix.md b/apps/stabilitymatrix.md deleted file mode 100644 index 2613cc871..000000000 --- a/apps/stabilitymatrix.md +++ /dev/null @@ -1,8 +0,0 @@ -# STABILITYMATRIX - - Multi-Platform Package Manager for Stable Diffusion, a deep AI learning model used for converting text to images. - - SITE: https://github.com/lykosai/stabilitymatrix - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/stacer b/apps/stacer new file mode 100644 index 000000000..90bda6658 --- /dev/null +++ b/apps/stacer @@ -0,0 +1,3 @@ +# stacer +Linux System Optimizer and Monitoring +# SITES: https://github.com/QuentiumYT/Stacer \ No newline at end of file diff --git a/apps/stacer.md b/apps/stacer.md deleted file mode 100644 index 5de2f509f..000000000 --- a/apps/stacer.md +++ /dev/null @@ -1,8 +0,0 @@ -# STACER - - Linux System Optimizer and Monitoring - - SITE: https://github.com/QuentiumYT/Stacer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/stack-wallet b/apps/stack-wallet new file mode 100644 index 000000000..7504f95fc --- /dev/null +++ b/apps/stack-wallet @@ -0,0 +1,3 @@ +# stack-wallet +Stack Wallet, a multicoin, cryptocurrency wallet. +# SITES: https://github.com/cypherstack/stack_wallet \ No newline at end of file diff --git a/apps/stack-wallet.md b/apps/stack-wallet.md deleted file mode 100644 index cb6e8d90e..000000000 --- a/apps/stack-wallet.md +++ /dev/null @@ -1,8 +0,0 @@ -# STACK-WALLET - - Stack Wallet, a multicoin, cryptocurrency wallet. - - SITE: https://github.com/cypherstack/stack_wallet - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/stackandconquer b/apps/stackandconquer new file mode 100644 index 000000000..d9e594051 --- /dev/null +++ b/apps/stackandconquer @@ -0,0 +1,3 @@ +# stackandconquer +A challenging tower conquest board game inspired by "Mixtour". +# SITES: https://github.com/ElTh0r0/stackandconquer \ No newline at end of file diff --git a/apps/stackandconquer.md b/apps/stackandconquer.md deleted file mode 100644 index 8e47e10f3..000000000 --- a/apps/stackandconquer.md +++ /dev/null @@ -1,8 +0,0 @@ -# STACKANDCONQUER - - A challenging tower conquest board game inspired by "Mixtour". - - SITE: https://github.com/ElTh0r0/stackandconquer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/standard-notes b/apps/standard-notes new file mode 100644 index 000000000..f20af7c24 --- /dev/null +++ b/apps/standard-notes @@ -0,0 +1,3 @@ +# standard-notes +A simple and private place for your notes, thoughts, and life’s work. +# SITES: https://github.com/standardnotes/app \ No newline at end of file diff --git a/apps/standard-notes.md b/apps/standard-notes.md deleted file mode 100644 index bfdf4e363..000000000 --- a/apps/standard-notes.md +++ /dev/null @@ -1,8 +0,0 @@ -# STANDARD-NOTES - - A simple and private place for your notes, thoughts, and life’s work. - - SITE: https://github.com/standardnotes/app - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/starc b/apps/starc new file mode 100644 index 000000000..0a711a564 --- /dev/null +++ b/apps/starc @@ -0,0 +1,4 @@ +# starc +Story Architect, reinventing the screenwriting software. +# SITES: https://starc.app +# SOURCES: https://github.com/story-apps/starc \ No newline at end of file diff --git a/apps/starc.md b/apps/starc.md deleted file mode 100644 index f05f7b285..000000000 --- a/apps/starc.md +++ /dev/null @@ -1,10 +0,0 @@ -# STARC - - Story Architect, reinventing the screenwriting software. - - SITE: https://starc.app - - SOURCE: https://github.com/story-apps/starc - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/starfox64recomp b/apps/starfox64recomp new file mode 100644 index 000000000..bc2716e83 --- /dev/null +++ b/apps/starfox64recomp @@ -0,0 +1,3 @@ +# starfox64recomp +Unofficial, a native port of Starfox 64, statically recompiled. +# SITES: https://github.com/pkgforge-dev/Starfox64Recomp-AppImage \ No newline at end of file diff --git a/apps/starfox64recomp.md b/apps/starfox64recomp.md deleted file mode 100644 index 56110279d..000000000 --- a/apps/starfox64recomp.md +++ /dev/null @@ -1,8 +0,0 @@ -# STARFOX64RECOMP - - Unofficial, a native port of Starfox 64, statically recompiled. - - SITE: https://github.com/pkgforge-dev/Starfox64Recomp-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/starship b/apps/starship new file mode 100644 index 000000000..52a0269fd --- /dev/null +++ b/apps/starship @@ -0,0 +1,3 @@ +# starship +The minimal, blazing-fast, and infinitely customizable prompt for any shell. +# SITES: https://github.com/starship/starship \ No newline at end of file diff --git a/apps/starship.md b/apps/starship.md deleted file mode 100644 index 627a2f42e..000000000 --- a/apps/starship.md +++ /dev/null @@ -1,8 +0,0 @@ -# STARSHIP - - The minimal, blazing-fast, and infinitely customizable prompt for any shell. - - SITE: https://github.com/starship/starship - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/stash-electron b/apps/stash-electron new file mode 100644 index 000000000..22062276b --- /dev/null +++ b/apps/stash-electron @@ -0,0 +1,3 @@ +# stash-electron +Stash - The friendly secret storage made for teams. +# SITES: https://github.com/Doccrazy/stash-electron \ No newline at end of file diff --git a/apps/stash-electron.md b/apps/stash-electron.md deleted file mode 100644 index 00b5da23d..000000000 --- a/apps/stash-electron.md +++ /dev/null @@ -1,7 +0,0 @@ -# STASH-ELECTRON - - Stash - The friendly secret storage made for teams. - - SITE: https://github.com/Doccrazy/stash-electron - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/stat b/apps/stat new file mode 100644 index 000000000..e97b8f343 --- /dev/null +++ b/apps/stat @@ -0,0 +1,4 @@ +# stat + Display file or file system status. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/stat.md b/apps/stat.md deleted file mode 100644 index 6dde4bcca..000000000 --- a/apps/stat.md +++ /dev/null @@ -1,8 +0,0 @@ -# STAT - - Display file or file system status. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/station b/apps/station new file mode 100644 index 000000000..5e37f4894 --- /dev/null +++ b/apps/station @@ -0,0 +1,3 @@ +# station +Station is the first open-source smart browser for busy people. A single place for all of your web applications. +# SITES: https://getstation.com \ No newline at end of file diff --git a/apps/station.md b/apps/station.md deleted file mode 100644 index ebdb4b8b1..000000000 --- a/apps/station.md +++ /dev/null @@ -1,7 +0,0 @@ -# STATION - - Station is the first open-source smart browser for busy people. A single place for all of your web applications. - - SITE: https://getstation.com - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/statsbook-tool b/apps/statsbook-tool new file mode 100644 index 000000000..f75725433 --- /dev/null +++ b/apps/statsbook-tool @@ -0,0 +1,3 @@ +# statsbook-tool +A tool for error checking WFTDA Statsbooks +# SITES: https://github.com/AdamSmasherDerby/Statsbook-Tool \ No newline at end of file diff --git a/apps/statsbook-tool.md b/apps/statsbook-tool.md deleted file mode 100644 index 07ca340f0..000000000 --- a/apps/statsbook-tool.md +++ /dev/null @@ -1,8 +0,0 @@ -# STATSBOOK-TOOL - - A tool for error checking WFTDA Statsbooks - - SITE: https://github.com/AdamSmasherDerby/Statsbook-Tool - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/statuspilatus b/apps/statuspilatus new file mode 100644 index 000000000..0f1be09cc --- /dev/null +++ b/apps/statuspilatus @@ -0,0 +1,3 @@ +# statuspilatus +Monitor your PC like never before! +# SITES: https://github.com/PilatusDevs/StatusPilatus \ No newline at end of file diff --git a/apps/statuspilatus.md b/apps/statuspilatus.md deleted file mode 100644 index 322d9990c..000000000 --- a/apps/statuspilatus.md +++ /dev/null @@ -1,8 +0,0 @@ -# STATUSPILATUS - - Monitor your PC like never before! - - SITE: https://github.com/PilatusDevs/StatusPilatus - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/stdbuf b/apps/stdbuf new file mode 100644 index 000000000..8b3ac4f63 --- /dev/null +++ b/apps/stdbuf @@ -0,0 +1,4 @@ +# stdbuf + With modified buffering operations for its. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/stdbuf.md b/apps/stdbuf.md deleted file mode 100644 index 071821b24..000000000 --- a/apps/stdbuf.md +++ /dev/null @@ -1,8 +0,0 @@ -# STDBUF - - With modified buffering operations for its. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/steam b/apps/steam new file mode 100644 index 000000000..6a19d0b62 --- /dev/null +++ b/apps/steam @@ -0,0 +1,16 @@ +# steam +Steam is a video game digital distribution service by Valve. + + It was launched as a standalone software client in September 2003 as a way for Valve to provide automatic updates for their games, and expanded to include games from third-party publishers. + + Steam has also expanded into an online web-based and mobile digital storefront. Steam offers digital rights management (DRM), server hosting, video streaming, and social networking services. + + It also provides the user with installation and automatic updating of games, and community features such as friends lists and groups, cloud storage, and in-game voice and chat functionality. + + This is the Unofficial AppImage built on top of "Conty" (Arch Linux). + + It includes 32-bit libraries, gamescope, gamemode and mangohud. + + It can also install Nvidia drivers locally, if needed. +# SITES: https://store.steampowered.com +# SOURCES: https://github.com/ivan-hc/Steam-appimage \ No newline at end of file diff --git a/apps/steam-rom-manager b/apps/steam-rom-manager new file mode 100644 index 000000000..6bc1721d9 --- /dev/null +++ b/apps/steam-rom-manager @@ -0,0 +1,3 @@ +# steam-rom-manager +Steam ROM Manager is a super flexible tool for adding non-Steam games to steam in bulk and managing their artwork assets. Added games could be ROMs for emulators, games from other stores such as Epic or GOG, or even not games at all. Have you always wanted your notes from junior year as a category in steam? If so that's pretty weird! But now it's possible. +# SITES: https://github.com/SteamGridDB/steam-rom-manager \ No newline at end of file diff --git a/apps/steam-rom-manager.md b/apps/steam-rom-manager.md deleted file mode 100644 index 547f2ebca..000000000 --- a/apps/steam-rom-manager.md +++ /dev/null @@ -1,7 +0,0 @@ -# STEAM-ROM-MANAGER - - Steam ROM Manager is a super flexible tool for adding non-Steam games to steam in bulk and managing their artwork assets. Added games could be ROMs for emulators, games from other stores such as Epic or GOG, or even not games at all. Have you always wanted your notes from junior year as a category in steam? If so that's pretty weird! But now it's possible. - - SITE: https://github.com/SteamGridDB/steam-rom-manager - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/steam-tui b/apps/steam-tui new file mode 100644 index 000000000..2914df64f --- /dev/null +++ b/apps/steam-tui @@ -0,0 +1,3 @@ +# steam-tui +Rust TUI client for steamcmd. +# SITES: https://github.com/dmadisetti/steam-tui \ No newline at end of file diff --git a/apps/steam-tui.md b/apps/steam-tui.md deleted file mode 100644 index ecd9dbe9d..000000000 --- a/apps/steam-tui.md +++ /dev/null @@ -1,8 +0,0 @@ -# STEAM-TUI - - Rust TUI client for steamcmd. - - SITE: https://github.com/dmadisetti/steam-tui - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/steam.md b/apps/steam.md deleted file mode 100644 index 53a307452..000000000 --- a/apps/steam.md +++ /dev/null @@ -1,24 +0,0 @@ -# STEAM - - Steam is a video game digital distribution service by Valve. - - It was launched as a standalone software client in September 2003 as a way for Valve to provide automatic updates for their games, and expanded to include games from third-party publishers. - - Steam has also expanded into an online web-based and mobile digital storefront. Steam offers digital rights management (DRM), server hosting, video streaming, and social networking services. - - It also provides the user with installation and automatic updating of games, and community features such as friends lists and groups, cloud storage, and in-game voice and chat functionality. - - This is the Unofficial AppImage built on top of "Conty" (Arch Linux). - - It includes 32-bit libraries, gamescope, gamemode and mangohud. - - It can also install Nvidia drivers locally, if needed. - | ![Screenshot](https://github.com/user-attachments/assets/b16aaf5d-5e3e-4e6d-b335-5b5c9324ccfa) | ![Screenshot](https://github.com/user-attachments/assets/49bb58f5-dd3a-432a-9437-026f6b6169cf) | ![Screenshot](https://github.com/user-attachments/assets/844b7709-34ab-412d-9515-5e8ebe8bf03c) | - | - | - | - | - - SITE: https://store.steampowered.com - - SOURCE: https://github.com/ivan-hc/Steam-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/steamcad b/apps/steamcad new file mode 100644 index 000000000..cb65600e2 --- /dev/null +++ b/apps/steamcad @@ -0,0 +1,3 @@ +# steamcad +2D CAD especially designed to draw steam locomotives +# SITES: https://github.com/oskardolch/SteamCAD \ No newline at end of file diff --git a/apps/steamcad.md b/apps/steamcad.md deleted file mode 100644 index 5bc6f6726..000000000 --- a/apps/steamcad.md +++ /dev/null @@ -1,8 +0,0 @@ -# STEAMCAD - - 2D CAD especially designed to draw steam locomotives - - SITE: https://github.com/oskardolch/SteamCAD - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/steamdepotdownloadergui b/apps/steamdepotdownloadergui new file mode 100644 index 000000000..6fe8b3410 --- /dev/null +++ b/apps/steamdepotdownloadergui @@ -0,0 +1,3 @@ +# steamdepotdownloadergui +Easily download older versions of games from Steam using DepotDownloader. +# SITES: https://github.com/mmvanheusden/SteamDepotDownloaderGUI \ No newline at end of file diff --git a/apps/steamdepotdownloadergui.md b/apps/steamdepotdownloadergui.md deleted file mode 100644 index d9ac2549a..000000000 --- a/apps/steamdepotdownloadergui.md +++ /dev/null @@ -1,8 +0,0 @@ -# STEAMDEPOTDOWNLOADERGUI - - Easily download older versions of games from Steam using DepotDownloader. - - SITE: https://github.com/mmvanheusden/SteamDepotDownloaderGUI - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/steem-messenger b/apps/steem-messenger new file mode 100644 index 000000000..b2595516a --- /dev/null +++ b/apps/steem-messenger @@ -0,0 +1,3 @@ +# steem-messenger +Messer for Steem +# SITES: https://github.com/therealwolf42/steemmessenger \ No newline at end of file diff --git a/apps/steem-messenger.md b/apps/steem-messenger.md deleted file mode 100644 index cb93c96b6..000000000 --- a/apps/steem-messenger.md +++ /dev/null @@ -1,8 +0,0 @@ -# STEEM-MESSENGER - - Messer for Steem - - SITE: https://github.com/therealwolf42/steemmessenger - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/stele b/apps/stele new file mode 100644 index 000000000..e781983f7 --- /dev/null +++ b/apps/stele @@ -0,0 +1,3 @@ +# stele +Kiosk app wrapper for museum media exhibits +# SITES: https://github.com/scimusmn/stele \ No newline at end of file diff --git a/apps/stele.md b/apps/stele.md deleted file mode 100644 index 1b454bfab..000000000 --- a/apps/stele.md +++ /dev/null @@ -1,8 +0,0 @@ -# STELE - - Kiosk app wrapper for museum media exhibits - - SITE: https://github.com/scimusmn/stele - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/stella b/apps/stella new file mode 100644 index 000000000..9c3292d6f --- /dev/null +++ b/apps/stella @@ -0,0 +1,3 @@ +# stella +Unofficial, A multi-platform Atari 2600 Emulator. +# SITES: https://github.com/pkgforge-dev/Stella-AppImage \ No newline at end of file diff --git a/apps/stella.md b/apps/stella.md deleted file mode 100644 index 7b9bb4faa..000000000 --- a/apps/stella.md +++ /dev/null @@ -1,8 +0,0 @@ -# STELLA - - Unofficial, A multi-platform Atari 2600 Emulator. - - SITE: https://github.com/pkgforge-dev/Stella-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/stellarium b/apps/stellarium new file mode 100644 index 000000000..04cfd92c0 --- /dev/null +++ b/apps/stellarium @@ -0,0 +1,3 @@ +# stellarium +Stellarium is a free GPL software which renders realistic skies in real time with OpenGL. +# SITES: https://stellarium.org \ No newline at end of file diff --git a/apps/stellarium.md b/apps/stellarium.md deleted file mode 100644 index 6a629b8dc..000000000 --- a/apps/stellarium.md +++ /dev/null @@ -1,8 +0,0 @@ -# STELLARIUM - - Stellarium is a free GPL software which renders realistic skies in real time with OpenGL. - - SITE: https://stellarium.org - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/stellarmaps b/apps/stellarmaps new file mode 100644 index 000000000..274980c2b --- /dev/null +++ b/apps/stellarmaps @@ -0,0 +1,3 @@ +# stellarmaps +Stylized maps from Stellaris saves. +# SITES: https://github.com/oatmealproblem/stellarmaps \ No newline at end of file diff --git a/apps/stellarmaps.md b/apps/stellarmaps.md deleted file mode 100644 index be0c07f9b..000000000 --- a/apps/stellarmaps.md +++ /dev/null @@ -1,8 +0,0 @@ -# STELLARMAPS - - Stylized maps from Stellaris saves. - - SITE: https://github.com/oatmealproblem/stellarmaps - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/stew b/apps/stew new file mode 100644 index 000000000..4dc8db3e0 --- /dev/null +++ b/apps/stew @@ -0,0 +1,3 @@ +# stew +🥘 An independent package manager for compiled binaries. +# SITES: https://github.com/marwanhawari/stew \ No newline at end of file diff --git a/apps/stew.md b/apps/stew.md deleted file mode 100644 index 0c3a56ecd..000000000 --- a/apps/stew.md +++ /dev/null @@ -1,8 +0,0 @@ -# STEW - - 🥘 An independent package manager for compiled binaries. - - SITE: https://github.com/marwanhawari/stew - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/sticker-convert b/apps/sticker-convert new file mode 100644 index 000000000..c17ccad09 --- /dev/null +++ b/apps/sticker-convert @@ -0,0 +1,3 @@ +# sticker-convert +Convert (animated) stickers to/from WhatsApp, Telegram, Signal, Line, Kakao, iMessage. Written in Python. +# SITES: https://github.com/laggykiller/sticker-convert \ No newline at end of file diff --git a/apps/sticker-convert.md b/apps/sticker-convert.md deleted file mode 100644 index 5d0e63cfa..000000000 --- a/apps/sticker-convert.md +++ /dev/null @@ -1,8 +0,0 @@ -# STICKER-CONVERT - - Convert (animated) stickers to/from WhatsApp, Telegram, Signal, Line, Kakao, iMessage. Written in Python. - - SITE: https://github.com/laggykiller/sticker-convert - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/stirling-pdf b/apps/stirling-pdf new file mode 100644 index 000000000..f8d52d535 --- /dev/null +++ b/apps/stirling-pdf @@ -0,0 +1,3 @@ +# stirling-pdf +Unofficial. Powerful, open-source PDF editing platform. +# SITES: https://github.com/pkgforge-dev/Stirling-PDF-AppImage \ No newline at end of file diff --git a/apps/stirling-pdf.md b/apps/stirling-pdf.md deleted file mode 100644 index 222ec06f7..000000000 --- a/apps/stirling-pdf.md +++ /dev/null @@ -1,8 +0,0 @@ -# STIRLING-PDF - - Unofficial. Powerful, open-source PDF editing platform. - - SITE: https://github.com/pkgforge-dev/Stirling-PDF-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/stockstalk b/apps/stockstalk new file mode 100644 index 000000000..0e1dd964b --- /dev/null +++ b/apps/stockstalk @@ -0,0 +1,3 @@ +# stockstalk +Your stocks on your desktop +# SITES: https://github.com/sagivo/StockStalk \ No newline at end of file diff --git a/apps/stockstalk.md b/apps/stockstalk.md deleted file mode 100644 index e94f6670c..000000000 --- a/apps/stockstalk.md +++ /dev/null @@ -1,8 +0,0 @@ -# STOCKSTALK - - Your stocks on your desktop - - SITE: https://github.com/sagivo/StockStalk - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/stoplight b/apps/stoplight new file mode 100644 index 000000000..f81e5616e --- /dev/null +++ b/apps/stoplight @@ -0,0 +1,3 @@ +# stoplight +The kickass API platform. +# SITES: https://github.com/stoplightio/desktop \ No newline at end of file diff --git a/apps/stoplight.md b/apps/stoplight.md deleted file mode 100644 index faf466c2c..000000000 --- a/apps/stoplight.md +++ /dev/null @@ -1,8 +0,0 @@ -# STOPLIGHT - - The kickass API platform. - - SITE: https://github.com/stoplightio/desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/storadit b/apps/storadit new file mode 100644 index 000000000..21faed554 --- /dev/null +++ b/apps/storadit @@ -0,0 +1,3 @@ +# storadit +Minimalistic Todo list/notes taking app +# SITES: https://github.com/josippapez/StoRadit \ No newline at end of file diff --git a/apps/storadit.md b/apps/storadit.md deleted file mode 100644 index 4ad54b2f6..000000000 --- a/apps/storadit.md +++ /dev/null @@ -1,8 +0,0 @@ -# STORADIT - - Minimalistic Todo list/notes taking app - - SITE: https://github.com/josippapez/StoRadit - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/storaji b/apps/storaji new file mode 100644 index 000000000..455ca9cd6 --- /dev/null +++ b/apps/storaji @@ -0,0 +1,3 @@ +# storaji +The Light/Responsive Inventory Management System. +# SITES: https://github.com/IndomaximTechID/storaji \ No newline at end of file diff --git a/apps/storaji.md b/apps/storaji.md deleted file mode 100644 index 9f7ffd7e8..000000000 --- a/apps/storaji.md +++ /dev/null @@ -1,8 +0,0 @@ -# STORAJI - - The Light/Responsive Inventory Management System. - - SITE: https://github.com/IndomaximTechID/storaji - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/storyboarder b/apps/storyboarder new file mode 100644 index 000000000..d36a1b9cb --- /dev/null +++ b/apps/storyboarder @@ -0,0 +1,3 @@ +# storyboarder +Storyboarder makes it easy to visualize a story as fast you can draw stick figures. +# SITES: https://github.com/wonderunit/storyboarder \ No newline at end of file diff --git a/apps/storyboarder.md b/apps/storyboarder.md deleted file mode 100644 index 306a263c4..000000000 --- a/apps/storyboarder.md +++ /dev/null @@ -1,7 +0,0 @@ -# STORYBOARDER - - Storyboarder makes it easy to visualize a story as fast you can draw stick figures. - - SITE: https://github.com/wonderunit/storyboarder - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/strace b/apps/strace new file mode 100644 index 000000000..274584bde --- /dev/null +++ b/apps/strace @@ -0,0 +1,3 @@ +# strace +Trace system calls and signals. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/strace.md b/apps/strace.md deleted file mode 100644 index 5923f6298..000000000 --- a/apps/strace.md +++ /dev/null @@ -1,8 +0,0 @@ -# STRACE - - Trace system calls and signals. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/strans b/apps/strans new file mode 100644 index 000000000..23fb787cc --- /dev/null +++ b/apps/strans @@ -0,0 +1,3 @@ +# strans +Performs string manipulation tasks by learning from the provided example(s), instead of having to program them out explicitly. +# SITES: https://github.com/Inventitech/strans \ No newline at end of file diff --git a/apps/strans.md b/apps/strans.md deleted file mode 100644 index 387f53eb6..000000000 --- a/apps/strans.md +++ /dev/null @@ -1,8 +0,0 @@ -# STRANS - - Performs string manipulation tasks by learning from the provided example(s), instead of having to program them out explicitly. - - SITE: https://github.com/Inventitech/strans - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/strata b/apps/strata new file mode 100644 index 000000000..6da31470a --- /dev/null +++ b/apps/strata @@ -0,0 +1,3 @@ +# strata +Semi-automated selection and scaling of time series +# SITES: https://github.com/arkottke/strata \ No newline at end of file diff --git a/apps/strata.md b/apps/strata.md deleted file mode 100644 index 24f996b65..000000000 --- a/apps/strata.md +++ /dev/null @@ -1,8 +0,0 @@ -# STRATA - - Semi-automated selection and scaling of time series - - SITE: https://github.com/arkottke/strata - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/strawberry b/apps/strawberry new file mode 100644 index 000000000..a6320ce2b --- /dev/null +++ b/apps/strawberry @@ -0,0 +1,3 @@ +# strawberry +Unofficial AppImage of the strawberry music player +# SITES: https://github.com/Samueru-sama/strawberry-AppImage \ No newline at end of file diff --git a/apps/strawberry.md b/apps/strawberry.md deleted file mode 100644 index d55feb069..000000000 --- a/apps/strawberry.md +++ /dev/null @@ -1,8 +0,0 @@ -# STRAWBERRY - - Unofficial AppImage of the strawberry music player - - SITE: https://github.com/Samueru-sama/strawberry-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/streamdock b/apps/streamdock new file mode 100644 index 000000000..43c55c162 --- /dev/null +++ b/apps/streamdock @@ -0,0 +1,3 @@ +# streamdock +Streaming service viewer. +# SITES: https://github.com/jtvberg/StreamDock \ No newline at end of file diff --git a/apps/streamdock.md b/apps/streamdock.md deleted file mode 100644 index adb3cea70..000000000 --- a/apps/streamdock.md +++ /dev/null @@ -1,8 +0,0 @@ -# STREAMDOCK - - Streaming service viewer. - - SITE: https://github.com/jtvberg/StreamDock - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/streamlink b/apps/streamlink new file mode 100644 index 000000000..5986c9c76 --- /dev/null +++ b/apps/streamlink @@ -0,0 +1,4 @@ +# streamlink +Streamlink is a command-line utility which pipes video streams from various services into a video player, such as VLC. The main purpose of Streamlink is to avoid resource-heavy and unoptimized websites, while still allowing the user to enjoy various streamed content. There is also an API available for developers who want access to the stream data. + This project was forked from Livestreamer, which is no longer maintained. +# SITES: https://github.com/streamlink \ No newline at end of file diff --git a/apps/streamlink-twitch-gui b/apps/streamlink-twitch-gui new file mode 100644 index 000000000..c417eeaba --- /dev/null +++ b/apps/streamlink-twitch-gui @@ -0,0 +1,3 @@ +# streamlink-twitch-gui +A multi platform Twitch.tv browser for Streamlink. +# SITES: https://github.com/streamlink/streamlink-twitch-gui \ No newline at end of file diff --git a/apps/streamlink-twitch-gui.md b/apps/streamlink-twitch-gui.md deleted file mode 100644 index 9ee0353c3..000000000 --- a/apps/streamlink-twitch-gui.md +++ /dev/null @@ -1,8 +0,0 @@ -# STREAMLINK-TWITCH-GUI - - A multi platform Twitch.tv browser for Streamlink. - - SITE: https://github.com/streamlink/streamlink-twitch-gui - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/streamlink.md b/apps/streamlink.md deleted file mode 100644 index 98b533e38..000000000 --- a/apps/streamlink.md +++ /dev/null @@ -1,9 +0,0 @@ -# STREAMLINK - - Streamlink is a command-line utility which pipes video streams from various services into a video player, such as VLC. The main purpose of Streamlink is to avoid resource-heavy and unoptimized websites, while still allowing the user to enjoy various streamed content. There is also an API available for developers who want access to the stream data. - This project was forked from Livestreamer, which is no longer maintained. - - SITE: https://github.com/streamlink - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/streamon b/apps/streamon new file mode 100644 index 000000000..b67933cd8 --- /dev/null +++ b/apps/streamon @@ -0,0 +1,3 @@ +# streamon +Create streaming links to instagram live +# SITES: https://github.com/haxzie/instagram-live-streamer \ No newline at end of file diff --git a/apps/streamon.md b/apps/streamon.md deleted file mode 100644 index 048199320..000000000 --- a/apps/streamon.md +++ /dev/null @@ -1,8 +0,0 @@ -# STREAMON - - Create streaming links to instagram live - - SITE: https://github.com/haxzie/instagram-live-streamer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/stremio-enhanced b/apps/stremio-enhanced new file mode 100644 index 000000000..e695d8243 --- /dev/null +++ b/apps/stremio-enhanced @@ -0,0 +1,3 @@ +# stremio-enhanced +Electron-based Stremio client with support for plugins and themes. This is a community project and is not affiliated with Stremio in any way. +# SITES: https://github.com/REVENGE977/stremio-enhanced \ No newline at end of file diff --git a/apps/stremio-enhanced.md b/apps/stremio-enhanced.md deleted file mode 100644 index 58114ff7e..000000000 --- a/apps/stremio-enhanced.md +++ /dev/null @@ -1,8 +0,0 @@ -# STREMIO-ENHANCED - - Electron-based Stremio client with support for plugins and themes. This is a community project and is not affiliated with Stremio in any way. - - SITE: https://github.com/REVENGE977/stremio-enhanced - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/stretchly b/apps/stretchly new file mode 100644 index 000000000..d0a70f764 --- /dev/null +++ b/apps/stretchly @@ -0,0 +1,3 @@ +# stretchly +Stretchly is a cross-platform Electron app that reminds you to take breaks when working on your computer. +# SITES: https://github.com/hovancik/stretchly \ No newline at end of file diff --git a/apps/stretchly.md b/apps/stretchly.md deleted file mode 100644 index da515c62b..000000000 --- a/apps/stretchly.md +++ /dev/null @@ -1,7 +0,0 @@ -# STRETCHLY - - Stretchly is a cross-platform Electron app that reminds you to take breaks when working on your computer. - - SITE: https://github.com/hovancik/stretchly - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/strings b/apps/strings new file mode 100644 index 000000000..b9b2d3eac --- /dev/null +++ b/apps/strings @@ -0,0 +1,3 @@ +# strings +Strings is another bad static string library, written in C. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/strings.md b/apps/strings.md deleted file mode 100644 index a15abce18..000000000 --- a/apps/strings.md +++ /dev/null @@ -1,8 +0,0 @@ -# STRINGS - - Strings is another bad static string library, written in C. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/strip b/apps/strip new file mode 100644 index 000000000..d69fe164d --- /dev/null +++ b/apps/strip @@ -0,0 +1,3 @@ +# strip +And other data from object files. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/strip.md b/apps/strip.md deleted file mode 100644 index d1235fe36..000000000 --- a/apps/strip.md +++ /dev/null @@ -1,8 +0,0 @@ -# STRIP - - And other data from object files. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/strongbox b/apps/strongbox new file mode 100644 index 000000000..342ee33b2 --- /dev/null +++ b/apps/strongbox @@ -0,0 +1,4 @@ +# strongbox +A World of Warcraft Addon Manager aimed at Linux players. +# SCREENSHOTS: https://raw.githubusercontent.com/ogri-la/strongbox/develop/screenshots/screenshot-7.0.0-installed-fat.png +# SITES: https://github.com/ogri-la/strongbox \ No newline at end of file diff --git a/apps/strongbox.md b/apps/strongbox.md deleted file mode 100644 index f9f695072..000000000 --- a/apps/strongbox.md +++ /dev/null @@ -1,10 +0,0 @@ -# STRONGBOX - - A World of Warcraft Addon Manager aimed at Linux players. - - ![Screenshot](https://raw.githubusercontent.com/ogri-la/strongbox/develop/screenshots/screenshot-7.0.0-installed-fat.png) - - SITE: https://github.com/ogri-la/strongbox - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/structure b/apps/structure new file mode 100644 index 000000000..653686609 --- /dev/null +++ b/apps/structure @@ -0,0 +1,3 @@ +# structure +A knowledge management tool. +# SITES: https://github.com/neopostmodern/structure \ No newline at end of file diff --git a/apps/structure.md b/apps/structure.md deleted file mode 100644 index 32c6a2e4a..000000000 --- a/apps/structure.md +++ /dev/null @@ -1,8 +0,0 @@ -# STRUCTURE - - A knowledge management tool. - - SITE: https://github.com/neopostmodern/structure - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/stty b/apps/stty new file mode 100644 index 000000000..6cda4ae1c --- /dev/null +++ b/apps/stty @@ -0,0 +1,4 @@ +# stty + Change and print terminal line settings. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/stty.md b/apps/stty.md deleted file mode 100644 index 38718e7ba..000000000 --- a/apps/stty.md +++ /dev/null @@ -1,8 +0,0 @@ -# STTY - - Change and print terminal line settings. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/studymd b/apps/studymd new file mode 100644 index 000000000..22765b747 --- /dev/null +++ b/apps/studymd @@ -0,0 +1,3 @@ +# studymd +Flashcards from Markdown. Built with React and Electron +# SITES: https://github.com/jotron/StudyMD \ No newline at end of file diff --git a/apps/studymd.md b/apps/studymd.md deleted file mode 100644 index 2658a707d..000000000 --- a/apps/studymd.md +++ /dev/null @@ -1,8 +0,0 @@ -# STUDYMD - - Flashcards from Markdown. Built with React and Electron - - SITE: https://github.com/jotron/StudyMD - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/stunt-car-remake b/apps/stunt-car-remake new file mode 100644 index 000000000..05e8fd4f6 --- /dev/null +++ b/apps/stunt-car-remake @@ -0,0 +1,3 @@ +# stunt-car-remake +Remake of the old game Stunt Car Racer +# SITES: https://github.com/ptitSeb/stuntcarremake \ No newline at end of file diff --git a/apps/stunt-car-remake.md b/apps/stunt-car-remake.md deleted file mode 100644 index 33455a360..000000000 --- a/apps/stunt-car-remake.md +++ /dev/null @@ -1,8 +0,0 @@ -# STUNT-CAR-REMAKE - - Remake of the old game Stunt Car Racer - - SITE: https://github.com/ptitSeb/stuntcarremake - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/subillmanager b/apps/subillmanager new file mode 100644 index 000000000..ef226eca0 --- /dev/null +++ b/apps/subillmanager @@ -0,0 +1,3 @@ +# subillmanager +A simple Flutter app to manage electricity bill. +# SITES: https://github.com/prateekmedia/subillmanager \ No newline at end of file diff --git a/apps/subillmanager.md b/apps/subillmanager.md deleted file mode 100644 index e9f052531..000000000 --- a/apps/subillmanager.md +++ /dev/null @@ -1,8 +0,0 @@ -# SUBILLMANAGER - - A simple Flutter app to manage electricity bill. - - SITE: https://github.com/prateekmedia/subillmanager - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/substrate-ide b/apps/substrate-ide new file mode 100644 index 000000000..20db80955 --- /dev/null +++ b/apps/substrate-ide @@ -0,0 +1,3 @@ +# substrate-ide +Graphic IDE for developing Substrate blockchains +# SITES: https://github.com/ObsidianLabs/SubstrateIDE \ No newline at end of file diff --git a/apps/substrate-ide.md b/apps/substrate-ide.md deleted file mode 100644 index 3dca3eb50..000000000 --- a/apps/substrate-ide.md +++ /dev/null @@ -1,8 +0,0 @@ -# SUBSTRATE-IDE - - Graphic IDE for developing Substrate blockchains - - SITE: https://github.com/ObsidianLabs/SubstrateIDE - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/subsurface b/apps/subsurface new file mode 100644 index 000000000..b6ffa1da1 --- /dev/null +++ b/apps/subsurface @@ -0,0 +1,3 @@ +# subsurface +This is the official upstream of the Subsurface divelog program. +# SITES: https://github.com/subsurface/subsurface \ No newline at end of file diff --git a/apps/subsurface.md b/apps/subsurface.md deleted file mode 100644 index f377acdf5..000000000 --- a/apps/subsurface.md +++ /dev/null @@ -1,8 +0,0 @@ -# SUBSURFACE - - This is the official upstream of the Subsurface divelog program. - - SITE: https://github.com/subsurface/subsurface - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/subtitld b/apps/subtitld new file mode 100644 index 000000000..ddbf9b812 --- /dev/null +++ b/apps/subtitld @@ -0,0 +1,3 @@ +# subtitld +Transform your video content creation with Subtitld, the open source software that streamlines your video content creation process. +# SITES: https://subtitld.org \ No newline at end of file diff --git a/apps/subtitld.md b/apps/subtitld.md deleted file mode 100644 index 9bfa2953e..000000000 --- a/apps/subtitld.md +++ /dev/null @@ -1,8 +0,0 @@ -# SUBTITLD - - Transform your video content creation with Subtitld, the open source software that streamlines your video content creation process. - - SITE: https://subtitld.org - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/subtitle-composer b/apps/subtitle-composer new file mode 100644 index 000000000..fb75a8058 --- /dev/null +++ b/apps/subtitle-composer @@ -0,0 +1,3 @@ +# subtitle-composer +Subtitle Composer - KF5/Qt Video Subtitle Editor. +# SITES: https://github.com/maxrd2/subtitlecomposer \ No newline at end of file diff --git a/apps/subtitle-composer.md b/apps/subtitle-composer.md deleted file mode 100644 index bd2225eeb..000000000 --- a/apps/subtitle-composer.md +++ /dev/null @@ -1,8 +0,0 @@ -# SUBTITLE-COMPOSER - - Subtitle Composer - KF5/Qt Video Subtitle Editor. - - SITE: https://github.com/maxrd2/subtitlecomposer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/subtitler b/apps/subtitler new file mode 100644 index 000000000..26631c237 --- /dev/null +++ b/apps/subtitler @@ -0,0 +1,3 @@ +# subtitler +Quickly download subtitles. +# SITES: https://s8sachin.github.io/subtitler/ \ No newline at end of file diff --git a/apps/subtitler.md b/apps/subtitler.md deleted file mode 100644 index 84c586040..000000000 --- a/apps/subtitler.md +++ /dev/null @@ -1,8 +0,0 @@ -# SUBTITLER - - Quickly download subtitles. - - SITE: https://s8sachin.github.io/subtitler/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/sultanpos b/apps/sultanpos new file mode 100644 index 000000000..a3fd111ee --- /dev/null +++ b/apps/sultanpos @@ -0,0 +1,3 @@ +# sultanpos +Simple POS for minimarket +# SITES: https://github.com/apinprastya/sultan \ No newline at end of file diff --git a/apps/sultanpos.md b/apps/sultanpos.md deleted file mode 100644 index 8ff3802e1..000000000 --- a/apps/sultanpos.md +++ /dev/null @@ -1,8 +0,0 @@ -# SULTANPOS - - Simple POS for minimarket - - SITE: https://github.com/apinprastya/sultan - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/sum b/apps/sum new file mode 100644 index 000000000..b66f6dd17 --- /dev/null +++ b/apps/sum @@ -0,0 +1,4 @@ +# sum + Checksum and count the blocks in a file. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/sum.md b/apps/sum.md deleted file mode 100644 index fa477a655..000000000 --- a/apps/sum.md +++ /dev/null @@ -1,8 +0,0 @@ -# SUM - - Checksum and count the blocks in a file. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/summoners.war.exporter b/apps/summoners.war.exporter new file mode 100644 index 000000000..866919aac --- /dev/null +++ b/apps/summoners.war.exporter @@ -0,0 +1,3 @@ +# summoners.war.exporter +This tool will parse intercepted data from Summoners War and extract information +# SITES: https://github.com/Xzandro/sw-exporter \ No newline at end of file diff --git a/apps/summoners.war.exporter.md b/apps/summoners.war.exporter.md deleted file mode 100644 index 4ca9e261b..000000000 --- a/apps/summoners.war.exporter.md +++ /dev/null @@ -1,8 +0,0 @@ -# SUMMONERS.WAR.EXPORTER - - This tool will parse intercepted data from Summoners War and extract information - - SITE: https://github.com/Xzandro/sw-exporter - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/sumoco b/apps/sumoco new file mode 100644 index 000000000..16cd98fe4 --- /dev/null +++ b/apps/sumoco @@ -0,0 +1,3 @@ +# sumoco +Simple Unified Model for Orthopaedics +# SITES: https://github.com/fortius-digital/sumo \ No newline at end of file diff --git a/apps/sumoco.md b/apps/sumoco.md deleted file mode 100644 index c09d36a31..000000000 --- a/apps/sumoco.md +++ /dev/null @@ -1,8 +0,0 @@ -# SUMOCO - - Simple Unified Model for Orthopaedics - - SITE: https://github.com/fortius-digital/sumo - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/sunny b/apps/sunny new file mode 100644 index 000000000..28cebffe2 --- /dev/null +++ b/apps/sunny @@ -0,0 +1,3 @@ +# sunny +Simple and beautiful screenshot software that supports Windows, macOS, and Linux. It also supports OCR and image translation features. +# SITES: https://github.com/XMuli/SunnyPages \ No newline at end of file diff --git a/apps/sunny.md b/apps/sunny.md deleted file mode 100644 index fe60e87a2..000000000 --- a/apps/sunny.md +++ /dev/null @@ -1,8 +0,0 @@ -# SUNNY - - Simple and beautiful screenshot software that supports Windows, macOS, and Linux. It also supports OCR and image translation features. - - SITE: https://github.com/XMuli/SunnyPages - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/sunsama b/apps/sunsama new file mode 100644 index 000000000..fc9396610 --- /dev/null +++ b/apps/sunsama @@ -0,0 +1,3 @@ +# sunsama +The daily planner for elite professionals. Organize everything you need to do today in one place. Tasks, meetings, emails, you name it. +# SITES: https://sunsama.com/ \ No newline at end of file diff --git a/apps/sunsama.md b/apps/sunsama.md deleted file mode 100644 index 788ed0903..000000000 --- a/apps/sunsama.md +++ /dev/null @@ -1,8 +0,0 @@ -# SUNSAMA - - The daily planner for elite professionals. Organize everything you need to do today in one place. Tasks, meetings, emails, you name it. - - SITE: https://sunsama.com/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/sunshine b/apps/sunshine new file mode 100644 index 000000000..1933ab046 --- /dev/null +++ b/apps/sunshine @@ -0,0 +1,3 @@ +# sunshine +Sunshine is a Gamestream host for Moonlight. +# SITES: https://github.com/LizardByte/Sunshine \ No newline at end of file diff --git a/apps/sunshine.md b/apps/sunshine.md deleted file mode 100644 index d2fb1c388..000000000 --- a/apps/sunshine.md +++ /dev/null @@ -1,8 +0,0 @@ -# SUNSHINE - - Sunshine is a Gamestream host for Moonlight. - - SITE: https://github.com/LizardByte/Sunshine - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/sunvox b/apps/sunvox new file mode 100644 index 000000000..25df6d00e --- /dev/null +++ b/apps/sunvox @@ -0,0 +1,3 @@ +# sunvox +Unofficial. Small, fast and powerful modular synthesizer with pattern-based sequencer (tracker). +# SITES: https://github.com/ivan-hc/sunvox-appimage \ No newline at end of file diff --git a/apps/sunvox.md b/apps/sunvox.md deleted file mode 100644 index 64f7abfce..000000000 --- a/apps/sunvox.md +++ /dev/null @@ -1,8 +0,0 @@ -# SUNVOX - - Unofficial. Small, fast and powerful modular synthesizer with pattern-based sequencer (tracker). - - SITE: https://github.com/ivan-hc/sunvox-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/sup b/apps/sup new file mode 100644 index 000000000..a004b289f --- /dev/null +++ b/apps/sup @@ -0,0 +1,3 @@ +# sup +A Slack client with WhatsApp like UI +# SITES: https://github.com/arnnis/Sup \ No newline at end of file diff --git a/apps/sup.md b/apps/sup.md deleted file mode 100644 index 1a554be42..000000000 --- a/apps/sup.md +++ /dev/null @@ -1,8 +0,0 @@ -# SUP - - A Slack client with WhatsApp like UI - - SITE: https://github.com/arnnis/Sup - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/super-zsnes b/apps/super-zsnes new file mode 100644 index 000000000..bcb683b58 --- /dev/null +++ b/apps/super-zsnes @@ -0,0 +1,4 @@ +# super-zsnes + Unofficial AppImage of SUPER ZSNES. +# SITES: https://github.com/pkgforge-dev/super-zsnes-appimage +# SOURCES: https://github.com/pkgforge-dev/super-zsnes-appimage \ No newline at end of file diff --git a/apps/super-zsnes.md b/apps/super-zsnes.md deleted file mode 100644 index 0ea8be491..000000000 --- a/apps/super-zsnes.md +++ /dev/null @@ -1,8 +0,0 @@ -# SUPER-ZSNES - - Unofficial AppImage of SUPER ZSNES. - - SITE: https://github.com/pkgforge-dev/super-zsnes-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/superbacked b/apps/superbacked new file mode 100644 index 000000000..a82a25bd2 --- /dev/null +++ b/apps/superbacked @@ -0,0 +1,5 @@ +# superbacked +Superbacked is a secret management platform used to back up and pass on sensitive data from one generation to the next. + + Don’t lose your secrets. +# SITES: https://github.com/superbacked/superbacked \ No newline at end of file diff --git a/apps/superbacked.md b/apps/superbacked.md deleted file mode 100644 index 19a29ca5c..000000000 --- a/apps/superbacked.md +++ /dev/null @@ -1,10 +0,0 @@ -# SUPERBACKED - - Superbacked is a secret management platform used to back up and pass on sensitive data from one generation to the next. - - Don’t lose your secrets. - - SITE: https://github.com/superbacked/superbacked - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/supercell-wx b/apps/supercell-wx new file mode 100644 index 000000000..07d23466f --- /dev/null +++ b/apps/supercell-wx @@ -0,0 +1,3 @@ +# supercell-wx +Supercell Wx is a free, open source advanced weather radar viewer. +# SITES: https://github.com/dpaulat/supercell-wx \ No newline at end of file diff --git a/apps/supercell-wx.md b/apps/supercell-wx.md deleted file mode 100644 index 493b45784..000000000 --- a/apps/supercell-wx.md +++ /dev/null @@ -1,8 +0,0 @@ -# SUPERCELL-WX - - Supercell Wx is a free, open source advanced weather radar viewer. - - SITE: https://github.com/dpaulat/supercell-wx - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/superfile b/apps/superfile new file mode 100644 index 000000000..31555eda9 --- /dev/null +++ b/apps/superfile @@ -0,0 +1,3 @@ +# superfile +Pretty fancy and modern terminal file manager. +# SITES: https://github.com/yorukot/superfile \ No newline at end of file diff --git a/apps/superfile.md b/apps/superfile.md deleted file mode 100644 index 153e18ef7..000000000 --- a/apps/superfile.md +++ /dev/null @@ -1,8 +0,0 @@ -# SUPERFILE - - Pretty fancy and modern terminal file manager. - - SITE: https://github.com/yorukot/superfile - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/supermariowar b/apps/supermariowar new file mode 100644 index 000000000..f40c0654c --- /dev/null +++ b/apps/supermariowar @@ -0,0 +1,3 @@ +# supermariowar +Unofficial, a fan-made multiplayer Super Mario Bros. style deathmatch game. +# SITES: https://github.com/pkgforge-dev/Supermariowar-AppImage \ No newline at end of file diff --git a/apps/supermariowar.md b/apps/supermariowar.md deleted file mode 100644 index 8092f3b2d..000000000 --- a/apps/supermariowar.md +++ /dev/null @@ -1,8 +0,0 @@ -# SUPERMARIOWAR - - Unofficial, a fan-made multiplayer Super Mario Bros. style deathmatch game. - - SITE: https://github.com/pkgforge-dev/Supermariowar-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/supermodel b/apps/supermodel new file mode 100644 index 000000000..cbb615ce9 --- /dev/null +++ b/apps/supermodel @@ -0,0 +1,3 @@ +# supermodel +Sega Model 3 arcade emulator. +# SITES: https://github.com/pkgforge-dev/Supermodel-AppImage \ No newline at end of file diff --git a/apps/supermodel.md b/apps/supermodel.md deleted file mode 100644 index fcb5da091..000000000 --- a/apps/supermodel.md +++ /dev/null @@ -1,8 +0,0 @@ -# SUPERMODEL - - Sega Model 3 arcade emulator. - - SITE: https://github.com/pkgforge-dev/Supermodel-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/supernotes b/apps/supernotes new file mode 100644 index 000000000..27d0708a1 --- /dev/null +++ b/apps/supernotes @@ -0,0 +1,3 @@ +# supernotes +Enjoy efficient note-taking without the hassle. +# SITES: https://supernotes.app \ No newline at end of file diff --git a/apps/supernotes.md b/apps/supernotes.md deleted file mode 100644 index 72ff8fae1..000000000 --- a/apps/supernotes.md +++ /dev/null @@ -1,8 +0,0 @@ -# SUPERNOTES - - Enjoy efficient note-taking without the hassle. - - SITE: https://supernotes.app - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/superpaper b/apps/superpaper new file mode 100644 index 000000000..6ffa610da --- /dev/null +++ b/apps/superpaper @@ -0,0 +1,3 @@ +# superpaper +A cross-platform multi monitor wallpaper manager. +# SITES: https://github.com/hhannine/superpaper \ No newline at end of file diff --git a/apps/superpaper.md b/apps/superpaper.md deleted file mode 100644 index 1e9232332..000000000 --- a/apps/superpaper.md +++ /dev/null @@ -1,8 +0,0 @@ -# SUPERPAPER - - A cross-platform multi monitor wallpaper manager. - - SITE: https://github.com/hhannine/superpaper - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/superproductivity b/apps/superproductivity new file mode 100644 index 000000000..e99534d0c --- /dev/null +++ b/apps/superproductivity @@ -0,0 +1,3 @@ +# superproductivity +An advanced todo list app with integrated Timeboxing and time tracking capabilities. It also comes with integrations for Jira, Gitlab, GitHub and Open Project. +# SITES: http://super-productivity.com/ \ No newline at end of file diff --git a/apps/superproductivity.md b/apps/superproductivity.md deleted file mode 100644 index 0f9cf75cb..000000000 --- a/apps/superproductivity.md +++ /dev/null @@ -1,8 +0,0 @@ -# SUPERPRODUCTIVITY - - An advanced todo list app with integrated Timeboxing and time tracking capabilities. It also comes with integrations for Jira, Gitlab, GitHub and Open Project. - - SITE: http://super-productivity.com/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/superslicer-bin b/apps/superslicer-bin new file mode 100644 index 000000000..bd000b15a --- /dev/null +++ b/apps/superslicer-bin @@ -0,0 +1,3 @@ +# superslicer-bin +G-code generator for 3D printers (Creality, RepRap, Makerbot, Ultimaker etc.) binary AppImage. +# SITES: https://github.com/supermerill/SuperSlicer \ No newline at end of file diff --git a/apps/superslicer-bin.md b/apps/superslicer-bin.md deleted file mode 100644 index 2643aca6e..000000000 --- a/apps/superslicer-bin.md +++ /dev/null @@ -1,8 +0,0 @@ -# SUPERSLICER-BIN - - G-code generator for 3D printers (Creality, RepRap, Makerbot, Ultimaker etc.) binary AppImage. - - SITE: https://github.com/supermerill/SuperSlicer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/superslicer-prerelease-bin b/apps/superslicer-prerelease-bin new file mode 100644 index 000000000..301a61715 --- /dev/null +++ b/apps/superslicer-prerelease-bin @@ -0,0 +1,3 @@ +# superslicer-prerelease-bin +G-code generator for 3D printers (Creality, RepRap, Makerbot, Ultimaker etc.). +# SITES: https://github.com/supermerill/SuperSlicer \ No newline at end of file diff --git a/apps/superslicer-prerelease-bin.md b/apps/superslicer-prerelease-bin.md deleted file mode 100644 index 5737204df..000000000 --- a/apps/superslicer-prerelease-bin.md +++ /dev/null @@ -1,8 +0,0 @@ -# SUPERSLICER-PRERELEASE-BIN - - G-code generator for 3D printers (Creality, RepRap, Makerbot, Ultimaker etc.). - - SITE: https://github.com/supermerill/SuperSlicer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/supersonic b/apps/supersonic new file mode 100644 index 000000000..4bb5d73c7 --- /dev/null +++ b/apps/supersonic @@ -0,0 +1,3 @@ +# supersonic +A lightweight and full-featured cross-platform desktop client for self-hosted music servers. +# SITES: https://github.com/dweymouth/supersonic \ No newline at end of file diff --git a/apps/supersonic.md b/apps/supersonic.md deleted file mode 100644 index 846d5f26b..000000000 --- a/apps/supersonic.md +++ /dev/null @@ -1,8 +0,0 @@ -# SUPERSONIC - - A lightweight and full-featured cross-platform desktop client for self-hosted music servers. - - SITE: https://github.com/dweymouth/supersonic - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/supertag b/apps/supertag new file mode 100644 index 000000000..c24f9f48f --- /dev/null +++ b/apps/supertag @@ -0,0 +1,3 @@ +# supertag +A tag-based filesystem written in Rust. +# SITES: https://github.com/amoffat/supertag \ No newline at end of file diff --git a/apps/supertag.md b/apps/supertag.md deleted file mode 100644 index 657963dd9..000000000 --- a/apps/supertag.md +++ /dev/null @@ -1,8 +0,0 @@ -# SUPERTAG - - A tag-based filesystem written in Rust. - - SITE: https://github.com/amoffat/supertag - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/supertux b/apps/supertux new file mode 100644 index 000000000..49b7d8338 --- /dev/null +++ b/apps/supertux @@ -0,0 +1,4 @@ +# supertux +SuperTux is a open-source classic 2D jump'n run sidescroller game in a style similar to the original Super Mario games. +# SCREENSHOTS: https://www.supertux.org/images/0_6_0/0_6_0_5.png +# SITES: https://www.supertux.org \ No newline at end of file diff --git a/apps/supertux.md b/apps/supertux.md deleted file mode 100644 index d2e52f117..000000000 --- a/apps/supertux.md +++ /dev/null @@ -1,10 +0,0 @@ -# SUPERTUX - - SuperTux is a open-source classic 2D jump'n run sidescroller game in a style similar to the original Super Mario games. - - ![Screenshot](https://www.supertux.org/images/0_6_0/0_6_0_5.png) - - SITE: https://www.supertux.org - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/supertuxkart b/apps/supertuxkart new file mode 100644 index 000000000..89bdf8f5d --- /dev/null +++ b/apps/supertuxkart @@ -0,0 +1,11 @@ +# supertuxkart +Karts. Nitro. Action! + + SuperTuxKart is a multi-platform 3D Open Source arcade kart racer with a wide variety of tracks, characters and game modes. + + Play the Story Mode and defeat the evil Nolok, challenge players from all around the world playing online, have fun with up to 8 friends playing together on one PC, explore tracks in egg hunts, challenge yourself in time-trials, race in our official tracks or in hundreds of addons... The choice is yours! + + This is the AppImage built on top of the official archive. +# SCREENSHOTS: https://supertuxkart.net/assets/wiki/STK1.3_1.jpg +# SITES: https://supertuxkart.net +# SOURCES: https://supertuxkart.net https://github.com/ivan-hc/SuperTuxKart-appimage \ No newline at end of file diff --git a/apps/supertuxkart-dev b/apps/supertuxkart-dev new file mode 100644 index 000000000..d00549fab --- /dev/null +++ b/apps/supertuxkart-dev @@ -0,0 +1,13 @@ +# supertuxkart-dev +Karts. Nitro. Action! + + SuperTuxKart is a multi-platform 3D Open Source arcade kart racer with a wide variety of tracks, characters and game modes. + + Play the Story Mode and defeat the evil Nolok, challenge players from all around the world playing online, have fun with up to 8 friends playing together on one PC, explore tracks in egg hunts, challenge yourself in time-trials, race in our official tracks or in hundreds of addons... The choice is yours! + + This is the AppImage built on top of the official archive. + + This script installs the Pre-release / Developer build. +# SCREENSHOTS: https://supertuxkart.net/assets/wiki/STK1.3_1.jpg +# SITES: https://supertuxkart.net +# SOURCES: https://supertuxkart.net https://github.com/ivan-hc/SuperTuxKart-appimage \ No newline at end of file diff --git a/apps/supertuxkart-dev.md b/apps/supertuxkart-dev.md deleted file mode 100644 index ef1222474..000000000 --- a/apps/supertuxkart-dev.md +++ /dev/null @@ -1,20 +0,0 @@ -# SUPERTUXKART-DEV - - Karts. Nitro. Action! - - SuperTuxKart is a multi-platform 3D Open Source arcade kart racer with a wide variety of tracks, characters and game modes. - - Play the Story Mode and defeat the evil Nolok, challenge players from all around the world playing online, have fun with up to 8 friends playing together on one PC, explore tracks in egg hunts, challenge yourself in time-trials, race in our official tracks or in hundreds of addons... The choice is yours! - - This is the AppImage built on top of the official archive. - - This script installs the Pre-release / Developer build. - - ![Screenshot](https://supertuxkart.net/assets/wiki/STK1.3_1.jpg) - - SITE & SOURCE: https://supertuxkart.net - - APPIMAGE: https://github.com/ivan-hc/SuperTuxKart-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/supertuxkart.md b/apps/supertuxkart.md deleted file mode 100644 index 31e9ee50b..000000000 --- a/apps/supertuxkart.md +++ /dev/null @@ -1,18 +0,0 @@ -# SUPERTUXKART - - Karts. Nitro. Action! - - SuperTuxKart is a multi-platform 3D Open Source arcade kart racer with a wide variety of tracks, characters and game modes. - - Play the Story Mode and defeat the evil Nolok, challenge players from all around the world playing online, have fun with up to 8 friends playing together on one PC, explore tracks in egg hunts, challenge yourself in time-trials, race in our official tracks or in hundreds of addons... The choice is yours! - - This is the AppImage built on top of the official archive. - - ![Screenshot](https://supertuxkart.net/assets/wiki/STK1.3_1.jpg) - - SITE & SOURCE: https://supertuxkart.net - - APPIMAGE: https://github.com/ivan-hc/SuperTuxKart-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/surrealist b/apps/surrealist new file mode 100644 index 000000000..df0f0142e --- /dev/null +++ b/apps/surrealist @@ -0,0 +1,3 @@ +# surrealist +Surrealist is the ultimate way to visually manage your SurrealDB database +# SITES: https://github.com/surrealdb/surrealist \ No newline at end of file diff --git a/apps/surrealist.md b/apps/surrealist.md deleted file mode 100644 index 57ea5367c..000000000 --- a/apps/surrealist.md +++ /dev/null @@ -1,8 +0,0 @@ -# SURREALIST - - Surrealist is the ultimate way to visually manage your SurrealDB database - - SITE: https://github.com/surrealdb/surrealist - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/suwayomi b/apps/suwayomi new file mode 100644 index 000000000..929ddf8ba --- /dev/null +++ b/apps/suwayomi @@ -0,0 +1,3 @@ +# suwayomi +A rewrite of Tachiyomi for the Desktop. +# SITES: https://github.com/Suwayomi/Suwayomi-Server \ No newline at end of file diff --git a/apps/suwayomi.md b/apps/suwayomi.md deleted file mode 100644 index 1795c92f6..000000000 --- a/apps/suwayomi.md +++ /dev/null @@ -1,8 +0,0 @@ -# SUWAYOMI - - A rewrite of Tachiyomi for the Desktop. - - SITE: https://github.com/Suwayomi/Suwayomi-Server - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/svelte-electron b/apps/svelte-electron new file mode 100644 index 000000000..1e9d1c7a6 --- /dev/null +++ b/apps/svelte-electron @@ -0,0 +1,3 @@ +# svelte-electron +Create a desktop app with this user-friendly Svelte boilerplate for electron. +# SITES: https://github.com/ptkdev-boilerplate/svelte-electron-boilerplate \ No newline at end of file diff --git a/apps/svelte-electron.md b/apps/svelte-electron.md deleted file mode 100644 index e7582483f..000000000 --- a/apps/svelte-electron.md +++ /dev/null @@ -1,8 +0,0 @@ -# SVELTE-ELECTRON - - Create a desktop app with this user-friendly Svelte boilerplate for electron. - - SITE: https://github.com/ptkdev-boilerplate/svelte-electron-boilerplate - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/svgwall b/apps/svgwall new file mode 100644 index 000000000..c882651ad --- /dev/null +++ b/apps/svgwall @@ -0,0 +1,3 @@ +# svgwall +SVG Wallpaper Utility for Xorg +# SITES: https://github.com/grimpirate/SVGWall \ No newline at end of file diff --git a/apps/svgwall.md b/apps/svgwall.md deleted file mode 100644 index 56f6ea98b..000000000 --- a/apps/svgwall.md +++ /dev/null @@ -1,8 +0,0 @@ -# SVGWALL - - SVG Wallpaper Utility for Xorg - - SITE: https://github.com/grimpirate/SVGWall - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/sview b/apps/sview new file mode 100644 index 000000000..7ae9503a0 --- /dev/null +++ b/apps/sview @@ -0,0 +1,7 @@ +# sview +sView is a cross-platform solution to view 3D stereoscopic videos and images. + + Please visit official site for more information +# SCREENSHOTS: https://www.sview.ru/images/sview1508_playlist.jpg +# SITES: https://www.sview.ru +# SOURCES: https://github.com/pkgforge-dev/sView-AppImage \ No newline at end of file diff --git a/apps/sview.md b/apps/sview.md deleted file mode 100644 index 976a43bce..000000000 --- a/apps/sview.md +++ /dev/null @@ -1,14 +0,0 @@ -# SVIEW - -sView is a cross-platform solution to view 3D stereoscopic videos and images. - - ![Seleucide](https://www.sview.ru/images/sview1508_playlist.jpg) - - Please visit official site for more information - - SITE: https://www.sview.ru - - SOURCE: https://github.com/pkgforge-dev/sView-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/swaglyrics b/apps/swaglyrics new file mode 100644 index 000000000..5cef595b7 --- /dev/null +++ b/apps/swaglyrics @@ -0,0 +1,3 @@ +# swaglyrics +SwagLyrics AppImage (unofficial) +# SITES: https://github.com/srevinsaju/swaglyrics-appimage \ No newline at end of file diff --git a/apps/swaglyrics.md b/apps/swaglyrics.md deleted file mode 100644 index d8ed2f42c..000000000 --- a/apps/swaglyrics.md +++ /dev/null @@ -1,8 +0,0 @@ -# SWAGLYRICS - - SwagLyrics AppImage (unofficial) - - SITE: https://github.com/srevinsaju/swaglyrics-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/swapoff b/apps/swapoff new file mode 100644 index 000000000..77abfbf27 --- /dev/null +++ b/apps/swapoff @@ -0,0 +1,3 @@ +# swapoff +Enable/disable devices and files for paging and. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/swapoff.md b/apps/swapoff.md deleted file mode 100644 index 3fd5ecf0d..000000000 --- a/apps/swapoff.md +++ /dev/null @@ -1,8 +0,0 @@ -# SWAPOFF - - Enable/disable devices and files for paging and. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/swapon b/apps/swapon new file mode 100644 index 000000000..90d9dd9ec --- /dev/null +++ b/apps/swapon @@ -0,0 +1,3 @@ +# swapon +Enable/disable devices and files for paging and. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/swapon.md b/apps/swapon.md deleted file mode 100644 index a5caaaa3c..000000000 --- a/apps/swapon.md +++ /dev/null @@ -1,8 +0,0 @@ -# SWAPON - - Enable/disable devices and files for paging and. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/swc-minecraft-launcher b/apps/swc-minecraft-launcher new file mode 100644 index 000000000..903a5f44e --- /dev/null +++ b/apps/swc-minecraft-launcher @@ -0,0 +1,3 @@ +# swc-minecraft-launcher +SWC Minecraft Launcher +# SITES: https://github.com/Software-City/swc_mclauncher \ No newline at end of file diff --git a/apps/swc-minecraft-launcher.md b/apps/swc-minecraft-launcher.md deleted file mode 100644 index 6742f0f1c..000000000 --- a/apps/swc-minecraft-launcher.md +++ /dev/null @@ -1,8 +0,0 @@ -# SWC-MINECRAFT-LAUNCHER - - SWC Minecraft Launcher - - SITE: https://github.com/Software-City/swc_mclauncher - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/sweeper b/apps/sweeper new file mode 100644 index 000000000..34dac1bb4 --- /dev/null +++ b/apps/sweeper @@ -0,0 +1,7 @@ +# sweeper +Sweeper can quickly remove temporary information, such as web page cookies, browser history, or the list of recently-opened documents. It helps provide additional privacy on a system shared between multiple users. + + This tool is part of the KDE Utils Suite. +# SCREENSHOTS: https://cdn.kde.org/screenshots/sweeper/sweeper.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-utils-appimage \ No newline at end of file diff --git a/apps/sweeper.md b/apps/sweeper.md deleted file mode 100644 index 84dadc25f..000000000 --- a/apps/sweeper.md +++ /dev/null @@ -1,14 +0,0 @@ -# SWEEPER - - Sweeper can quickly remove temporary information, such as web page cookies, browser history, or the list of recently-opened documents. It helps provide additional privacy on a system shared between multiple users. - - This tool is part of the KDE Utils Suite. - - ![Screenshot](https://cdn.kde.org/screenshots/sweeper/sweeper.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-utils-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/sweethome3d b/apps/sweethome3d new file mode 100644 index 000000000..d915ad3cc --- /dev/null +++ b/apps/sweethome3d @@ -0,0 +1,3 @@ +# sweethome3d +An interior design application to draw house plans & arrange furniture. +# SITES: https://www.sweethome3d.com \ No newline at end of file diff --git a/apps/sweethome3d.md b/apps/sweethome3d.md deleted file mode 100644 index 0910eb187..000000000 --- a/apps/sweethome3d.md +++ /dev/null @@ -1,8 +0,0 @@ -# SWEETHOME3D - - An interior design application to draw house plans & arrange furniture. - - SITE: https://www.sweethome3d.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/swell b/apps/swell new file mode 100644 index 000000000..3786cdecc --- /dev/null +++ b/apps/swell @@ -0,0 +1,3 @@ +# swell +Swell, testing for streaming APIs, right at your desktop. +# SITES: https://github.com/open-source-labs/Swell \ No newline at end of file diff --git a/apps/swell.md b/apps/swell.md deleted file mode 100644 index 4aebfbe5f..000000000 --- a/apps/swell.md +++ /dev/null @@ -1,8 +0,0 @@ -# SWELL - - Swell, testing for streaming APIs, right at your desktop. - - SITE: https://github.com/open-source-labs/Swell - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/swiftnessx b/apps/swiftnessx new file mode 100644 index 000000000..8a6dcd799 --- /dev/null +++ b/apps/swiftnessx @@ -0,0 +1,3 @@ +# swiftnessx +Electron application boilerplate based on React, React Router, Webpack. +# SITES: https://github.com/ehrishirajsharma/SwiftnessX \ No newline at end of file diff --git a/apps/swiftnessx.md b/apps/swiftnessx.md deleted file mode 100644 index 0d6f6c807..000000000 --- a/apps/swiftnessx.md +++ /dev/null @@ -1,8 +0,0 @@ -# SWIFTNESSX - - Electron application boilerplate based on React, React Router, Webpack. - - SITE: https://github.com/ehrishirajsharma/SwiftnessX - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/swifty b/apps/swifty new file mode 100644 index 000000000..6ff874fa1 --- /dev/null +++ b/apps/swifty @@ -0,0 +1,3 @@ +# swifty +Free Offline-first Password Manager for MacOS, Windows and Linux. +# SITES: https://getswifty.pro/ \ No newline at end of file diff --git a/apps/swifty.md b/apps/swifty.md deleted file mode 100644 index 40ed45f40..000000000 --- a/apps/swifty.md +++ /dev/null @@ -1,8 +0,0 @@ -# SWIFTY - - Free Offline-first Password Manager for MacOS, Windows and Linux. - - SITE: https://getswifty.pro/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/swiftynotes b/apps/swiftynotes new file mode 100644 index 000000000..1db6a5c1e --- /dev/null +++ b/apps/swiftynotes @@ -0,0 +1,4 @@ +# swiftynotes + Unofficial AppImage of swiftynotes. +# SITES: https://github.com/pkgforge-dev/swiftynotes-appimage +# SOURCES: https://github.com/pkgforge-dev/swiftynotes-appimage \ No newline at end of file diff --git a/apps/swiftynotes.md b/apps/swiftynotes.md deleted file mode 100644 index 1d005a49e..000000000 --- a/apps/swiftynotes.md +++ /dev/null @@ -1,8 +0,0 @@ -# SWIFTYNOTES - - Unofficial AppImage of swiftynotes. - - SITE: https://github.com/pkgforge-dev/swiftynotes-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/swish b/apps/swish new file mode 100644 index 000000000..db2b0e729 --- /dev/null +++ b/apps/swish @@ -0,0 +1,3 @@ +# swish +Command Line Interface for Swisstransfer Infomaniak's free service. +# SITES: https://github.com/Blutsh/Swish \ No newline at end of file diff --git a/apps/swish.md b/apps/swish.md deleted file mode 100644 index d5760196b..000000000 --- a/apps/swish.md +++ /dev/null @@ -1,8 +0,0 @@ -# SWISH - - Command Line Interface for Swisstransfer Infomaniak's free service. - - SITE: https://github.com/Blutsh/Swish - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/switchcraft b/apps/switchcraft new file mode 100644 index 000000000..57dbaa939 --- /dev/null +++ b/apps/switchcraft @@ -0,0 +1,3 @@ +# switchcraft +Switchcraft watches GNOME's light/dark preference and runs your shell commands when the theme changes. +# SITES: https://github.com/kem-a/switchcraft \ No newline at end of file diff --git a/apps/switchcraft.md b/apps/switchcraft.md deleted file mode 100644 index 3756ea785..000000000 --- a/apps/switchcraft.md +++ /dev/null @@ -1,8 +0,0 @@ -# SWITCHCRAFT - - Switchcraft watches GNOME's light/dark preference and runs your shell commands when the theme changes. - - SITE: https://github.com/kem-a/switchcraft - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/switchhosts b/apps/switchhosts new file mode 100644 index 000000000..18a08063e --- /dev/null +++ b/apps/switchhosts @@ -0,0 +1,3 @@ +# switchhosts +Switch hosts quickly! +# SITES: https://github.com/oldj/SwitchHosts \ No newline at end of file diff --git a/apps/switchhosts.md b/apps/switchhosts.md deleted file mode 100644 index de5dc17b4..000000000 --- a/apps/switchhosts.md +++ /dev/null @@ -1,8 +0,0 @@ -# SWITCHHOSTS - - Switch hosts quickly! - - SITE: https://github.com/oldj/SwitchHosts - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/switchshuttle b/apps/switchshuttle new file mode 100644 index 000000000..cfb7902aa --- /dev/null +++ b/apps/switchshuttle @@ -0,0 +1,3 @@ +# switchshuttle +SwitchShuttle is a cross-platform system tray application that allows users to run predefined commands in various terminal applications. It supports macOS, Windows, and Linux, offering a simple and customizable way to manage and execute your frequently used commands. +# SITES: https://github.com/s00d/switchshuttle \ No newline at end of file diff --git a/apps/switchshuttle.md b/apps/switchshuttle.md deleted file mode 100644 index 61b35203b..000000000 --- a/apps/switchshuttle.md +++ /dev/null @@ -1,8 +0,0 @@ -# SWITCHSHUTTLE - - SwitchShuttle is a cross-platform system tray application that allows users to run predefined commands in various terminal applications. It supports macOS, Windows, and Linux, offering a simple and customizable way to manage and execute your frequently used commands. - - SITE: https://github.com/s00d/switchshuttle - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/swradio b/apps/swradio new file mode 100644 index 000000000..55ab8abe0 --- /dev/null +++ b/apps/swradio @@ -0,0 +1,3 @@ +# swradio +A shortwave receiver for use with sdrplay, hackrf, dabsticks and pmsdr. +# SITES: https://github.com/JvanKatwijk/swradio-8 \ No newline at end of file diff --git a/apps/swradio.md b/apps/swradio.md deleted file mode 100644 index 8e4da6c0c..000000000 --- a/apps/swradio.md +++ /dev/null @@ -1,8 +0,0 @@ -# SWRADIO - - A shortwave receiver for use with sdrplay, hackrf, dabsticks and pmsdr. - - SITE: https://github.com/JvanKatwijk/swradio-8 - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/symphonium b/apps/symphonium new file mode 100644 index 000000000..dcc8f9e49 --- /dev/null +++ b/apps/symphonium @@ -0,0 +1,3 @@ +# symphonium +A tool to help when learning to play the piano +# SITES: https://github.com/ttdm/Symphonium \ No newline at end of file diff --git a/apps/symphonium.md b/apps/symphonium.md deleted file mode 100644 index d1eb9ce62..000000000 --- a/apps/symphonium.md +++ /dev/null @@ -1,8 +0,0 @@ -# SYMPHONIUM - - A tool to help when learning to play the piano - - SITE: https://github.com/ttdm/Symphonium - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/sync b/apps/sync new file mode 100644 index 000000000..3dd29b028 --- /dev/null +++ b/apps/sync @@ -0,0 +1,4 @@ +# sync + Backup and synchronization service. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/sync.md b/apps/sync.md deleted file mode 100644 index 446452087..000000000 --- a/apps/sync.md +++ /dev/null @@ -1,8 +0,0 @@ -# SYNC - - Backup and synchronization service. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/syncmyl2p b/apps/syncmyl2p new file mode 100644 index 000000000..4c17c48f3 --- /dev/null +++ b/apps/syncmyl2p @@ -0,0 +1,3 @@ +# syncmyl2p +Sync-my-L2P — L2P synchronisation tool +# SITES: https://github.com/RobertKrajewski/Sync-my-L2P \ No newline at end of file diff --git a/apps/syncmyl2p.md b/apps/syncmyl2p.md deleted file mode 100644 index 5ee72ca7d..000000000 --- a/apps/syncmyl2p.md +++ /dev/null @@ -1,8 +0,0 @@ -# SYNCMYL2P - - Sync-my-L2P — L2P synchronisation tool - - SITE: https://github.com/RobertKrajewski/Sync-my-L2P - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/syncplay b/apps/syncplay new file mode 100644 index 000000000..1e4c22e68 --- /dev/null +++ b/apps/syncplay @@ -0,0 +1,3 @@ +# syncplay +Synchronize video playback over network +# SITES: https://github.com/Syncplay/syncplay \ No newline at end of file diff --git a/apps/syncplay.md b/apps/syncplay.md deleted file mode 100644 index 6604a0913..000000000 --- a/apps/syncplay.md +++ /dev/null @@ -1,8 +0,0 @@ -# SYNCPLAY - - Synchronize video playback over network - - SITE: https://github.com/Syncplay/syncplay - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/syncthing b/apps/syncthing new file mode 100644 index 000000000..3dda2698e --- /dev/null +++ b/apps/syncthing @@ -0,0 +1,3 @@ +# syncthing +Open Source Continuous File Synchronization. +# SITES: https://github.com/syncthing/syncthing \ No newline at end of file diff --git a/apps/syncthing.md b/apps/syncthing.md deleted file mode 100644 index 347baf2e1..000000000 --- a/apps/syncthing.md +++ /dev/null @@ -1,8 +0,0 @@ -# SYNCTHING - - Open Source Continuous File Synchronization. - - SITE: https://github.com/syncthing/syncthing - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/syncthingctl b/apps/syncthingctl new file mode 100644 index 000000000..e5e7f0beb --- /dev/null +++ b/apps/syncthingctl @@ -0,0 +1,3 @@ +# syncthingctl +Tray control application and Dolphin/Plasma integration for Syncthing. +# SITES: https://github.com/Martchus/syncthingtray \ No newline at end of file diff --git a/apps/syncthingctl.md b/apps/syncthingctl.md deleted file mode 100644 index 447aedee1..000000000 --- a/apps/syncthingctl.md +++ /dev/null @@ -1,8 +0,0 @@ -# SYNCTHINGCTL - - Tray control application and Dolphin/Plasma integration for Syncthing. - - SITE: https://github.com/Martchus/syncthingtray - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/syncthingtray b/apps/syncthingtray new file mode 100644 index 000000000..e53dbbeef --- /dev/null +++ b/apps/syncthingtray @@ -0,0 +1,3 @@ +# syncthingtray +Tray application and Dolphin/Plasma integration for Syncthing. +# SITES: https://github.com/Martchus/syncthingtray \ No newline at end of file diff --git a/apps/syncthingtray.md b/apps/syncthingtray.md deleted file mode 100644 index 936d8593d..000000000 --- a/apps/syncthingtray.md +++ /dev/null @@ -1,8 +0,0 @@ -# SYNCTHINGTRAY - - Tray application and Dolphin/Plasma integration for Syncthing. - - SITE: https://github.com/Martchus/syncthingtray - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/synfig b/apps/synfig new file mode 100644 index 000000000..95aeee43f --- /dev/null +++ b/apps/synfig @@ -0,0 +1,4 @@ +# synfig +Synfig Studio animation software. This is the unofficial AppImage. +# SITES: https://github.com/synfig/synfig +# SOURCES: https://github.com/BobSynfig/synfig \ No newline at end of file diff --git a/apps/synfig.md b/apps/synfig.md deleted file mode 100644 index edfe39d38..000000000 --- a/apps/synfig.md +++ /dev/null @@ -1,10 +0,0 @@ -# SYNFIG - - Synfig Studio animation software. This is the unofficial AppImage. - - SITE: https://github.com/synfig/synfig - - UNOFFICIAL APPIMAGE: https://github.com/BobSynfig/synfig - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/synthein b/apps/synthein new file mode 100644 index 000000000..93e42379d --- /dev/null +++ b/apps/synthein @@ -0,0 +1,3 @@ +# synthein +A space ship building and combat game +# SITES: https://github.com/synthein/synthein \ No newline at end of file diff --git a/apps/synthein.md b/apps/synthein.md deleted file mode 100644 index 75db800e0..000000000 --- a/apps/synthein.md +++ /dev/null @@ -1,8 +0,0 @@ -# SYNTHEIN - - A space ship building and combat game - - SITE: https://github.com/synthein/synthein - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/synthv1 b/apps/synthv1 new file mode 100644 index 000000000..9996e805d --- /dev/null +++ b/apps/synthv1 @@ -0,0 +1,3 @@ +# synthv1 +synthv1 is an old school polyphonic synthesizer +# SITES: https://synthv1.sourceforge.io \ No newline at end of file diff --git a/apps/synthv1.md b/apps/synthv1.md deleted file mode 100644 index 434ac4ca2..000000000 --- a/apps/synthv1.md +++ /dev/null @@ -1,7 +0,0 @@ -# SYNTHV1 - - synthv1 is an old school polyphonic synthesizer - - SITE: https://synthv1.sourceforge.io - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/system-monitoring-center b/apps/system-monitoring-center new file mode 100644 index 000000000..491df5bab --- /dev/null +++ b/apps/system-monitoring-center @@ -0,0 +1,3 @@ +# system-monitoring-center +Unofficial. Multi-featured system monitor. +# SITES: https://github.com/pkgforge-dev/system-monitoring-center-AppImage \ No newline at end of file diff --git a/apps/system-monitoring-center.md b/apps/system-monitoring-center.md deleted file mode 100644 index 5a4931137..000000000 --- a/apps/system-monitoring-center.md +++ /dev/null @@ -1,8 +0,0 @@ -# SYSTEM-MONITORING-CENTER - - Unofficial. Multi-featured system monitor. - - SITE: https://github.com/pkgforge-dev/system-monitoring-center-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/sysz b/apps/sysz new file mode 100644 index 000000000..d936f3b03 --- /dev/null +++ b/apps/sysz @@ -0,0 +1,3 @@ +# sysz +An fzf terminal UI for systemctl +# SITES: https://github.com/joehillen/sysz \ No newline at end of file diff --git a/apps/sysz.md b/apps/sysz.md deleted file mode 100644 index b45d93e4b..000000000 --- a/apps/sysz.md +++ /dev/null @@ -1,8 +0,0 @@ -# SYSZ - - An fzf terminal UI for systemctl - - SITE: https://github.com/joehillen/sysz - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/szyszka b/apps/szyszka new file mode 100644 index 000000000..c92ab1583 --- /dev/null +++ b/apps/szyszka @@ -0,0 +1,3 @@ +# szyszka +Szyszka is fast and powerful file renamer +# SITES: https://github.com/qarmin/szyszka \ No newline at end of file diff --git a/apps/szyszka.md b/apps/szyszka.md deleted file mode 100644 index 232cb7a48..000000000 --- a/apps/szyszka.md +++ /dev/null @@ -1,8 +0,0 @@ -# SZYSZKA - - Szyszka is fast and powerful file renamer - - SITE: https://github.com/qarmin/szyszka - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/t.viewer b/apps/t.viewer new file mode 100644 index 000000000..da5d4de85 --- /dev/null +++ b/apps/t.viewer @@ -0,0 +1,3 @@ +# t.viewer +Cross Platform Tizen Log Viewer. +# SITES: https://github.com/msaltnet/T.Viewer \ No newline at end of file diff --git a/apps/t.viewer.md b/apps/t.viewer.md deleted file mode 100644 index 2c7e7d076..000000000 --- a/apps/t.viewer.md +++ /dev/null @@ -1,8 +0,0 @@ -# T.VIEWER - - Cross Platform Tizen Log Viewer. - - SITE: https://github.com/msaltnet/T.Viewer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/t3code b/apps/t3code new file mode 100644 index 000000000..42e1a97a3 --- /dev/null +++ b/apps/t3code @@ -0,0 +1,3 @@ +# t3code +T3 Code is a minimal web GUI for coding agents (currently Codex and Claude, more coming soon). +# SITES: https://github.com/pingdotgg/t3code \ No newline at end of file diff --git a/apps/t3code.md b/apps/t3code.md deleted file mode 100644 index d020ff975..000000000 --- a/apps/t3code.md +++ /dev/null @@ -1,8 +0,0 @@ -# T3CODE - - T3 Code is a minimal web GUI for coding agents (currently Codex and Claude, more coming soon). - - SITE: https://github.com/pingdotgg/t3code - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/tabby b/apps/tabby new file mode 100644 index 000000000..5ec9fa3eb --- /dev/null +++ b/apps/tabby @@ -0,0 +1,3 @@ +# tabby +A terminal for a more modern age. +# SITES: https://github.com/Eugeny/tabby \ No newline at end of file diff --git a/apps/tabby.md b/apps/tabby.md deleted file mode 100644 index 4a5656935..000000000 --- a/apps/tabby.md +++ /dev/null @@ -1,8 +0,0 @@ -# TABBY - - A terminal for a more modern age. - - SITE: https://github.com/Eugeny/tabby - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/tablo-tools b/apps/tablo-tools new file mode 100644 index 000000000..cfd65048e --- /dev/null +++ b/apps/tablo-tools @@ -0,0 +1,3 @@ +# tablo-tools +Tools to Bulk Delete and Export from your Tablo DVR +# SITES: https://github.com/jessedp/tablo-tools-electron \ No newline at end of file diff --git a/apps/tablo-tools.md b/apps/tablo-tools.md deleted file mode 100644 index ec9bc283e..000000000 --- a/apps/tablo-tools.md +++ /dev/null @@ -1,8 +0,0 @@ -# TABLO-TOOLS - - Tools to Bulk Delete and Export from your Tablo DVR - - SITE: https://github.com/jessedp/tablo-tools-electron - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/tabularis b/apps/tabularis new file mode 100644 index 000000000..122364cc8 --- /dev/null +++ b/apps/tabularis @@ -0,0 +1,3 @@ +# tabularis +A lightweight, developer-focused database management tool. +# SITES: https://github.com/debba/tabularis \ No newline at end of file diff --git a/apps/tabularis.md b/apps/tabularis.md deleted file mode 100644 index eacd95fa5..000000000 --- a/apps/tabularis.md +++ /dev/null @@ -1,8 +0,0 @@ -# TABULARIS - - A lightweight, developer-focused database management tool. - - SITE: https://github.com/debba/tabularis - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/tac b/apps/tac new file mode 100644 index 000000000..a6126af27 --- /dev/null +++ b/apps/tac @@ -0,0 +1,4 @@ +# tac + Concatenate and print files in reverse. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/tac.md b/apps/tac.md deleted file mode 100644 index abed2cdba..000000000 --- a/apps/tac.md +++ /dev/null @@ -1,8 +0,0 @@ -# TAC - - Concatenate and print files in reverse. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/tachoparser b/apps/tachoparser new file mode 100644 index 000000000..865b56297 --- /dev/null +++ b/apps/tachoparser @@ -0,0 +1,4 @@ +# tachoparser + Unofficial AppImage of tachoparser, CLI and GUI application for reading DDD tachograph cards. +# SITES: https://github.com/pkgforge-dev/tachoparser-appimage +# SOURCES: https://github.com/pkgforge-dev/tachoparser-appimage \ No newline at end of file diff --git a/apps/tachoparser.md b/apps/tachoparser.md deleted file mode 100644 index c0cbb6aa2..000000000 --- a/apps/tachoparser.md +++ /dev/null @@ -1,8 +0,0 @@ -# TACHOPARSER - - Unofficial AppImage of tachoparser, CLI and GUI application for reading DDD tachograph cards. - - SITE: https://github.com/pkgforge-dev/tachoparser-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/tag-editor b/apps/tag-editor new file mode 100644 index 000000000..4cbf74e61 --- /dev/null +++ b/apps/tag-editor @@ -0,0 +1,4 @@ +# tag-editor +Tag Editor with support for MP4 (iTunes), ID3, Vorbis, Opus, FLAC and Matroska. +# SITES: +# SOURCES: https://download.opensuse.org/repositories/home:/mkittler \ No newline at end of file diff --git a/apps/tag-editor.md b/apps/tag-editor.md deleted file mode 100644 index 299aa0c49..000000000 --- a/apps/tag-editor.md +++ /dev/null @@ -1,9 +0,0 @@ -# TAG-EDITOR - - Tag Editor with support for MP4 (iTunes), ID3, Vorbis, Opus, FLAC and Matroska. - - - SOURCE: https://download.opensuse.org/repositories/home:/mkittler - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/tagger b/apps/tagger new file mode 100644 index 000000000..86cc235ee --- /dev/null +++ b/apps/tagger @@ -0,0 +1,3 @@ +# tagger +Unofficial. Simple audio tagger with support for various audio formats. +# SITES: https://github.com/pkgforge-dev/Tagger-AppImage \ No newline at end of file diff --git a/apps/tagger.md b/apps/tagger.md deleted file mode 100644 index c757b02cf..000000000 --- a/apps/tagger.md +++ /dev/null @@ -1,8 +0,0 @@ -# TAGGER - - Unofficial. Simple audio tagger with support for various audio formats. - - SITE: https://github.com/pkgforge-dev/Tagger-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/tagspaces b/apps/tagspaces new file mode 100644 index 000000000..e3c72f378 --- /dev/null +++ b/apps/tagspaces @@ -0,0 +1,3 @@ +# tagspaces +TagSpaces is an offline, open source, document manager with tagging support. +# SITES: https://github.com/tagspaces/tagspaces \ No newline at end of file diff --git a/apps/tagspaces.md b/apps/tagspaces.md deleted file mode 100644 index 0a8c1899c..000000000 --- a/apps/tagspaces.md +++ /dev/null @@ -1,7 +0,0 @@ -# TAGSPACES - - TagSpaces is an offline, open source, document manager with tagging support. - - SITE: https://github.com/tagspaces/tagspaces - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/tagtime-desktop b/apps/tagtime-desktop new file mode 100644 index 000000000..a6c5ec728 --- /dev/null +++ b/apps/tagtime-desktop @@ -0,0 +1,3 @@ +# tagtime-desktop +Time tracking for space cadets - desktop edition +# SITES: https://github.com/mykter/TagTime-desktop \ No newline at end of file diff --git a/apps/tagtime-desktop.md b/apps/tagtime-desktop.md deleted file mode 100644 index 641888a54..000000000 --- a/apps/tagtime-desktop.md +++ /dev/null @@ -1,8 +0,0 @@ -# TAGTIME-DESKTOP - - Time tracking for space cadets - desktop edition - - SITE: https://github.com/mykter/TagTime-desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/tail b/apps/tail new file mode 100644 index 000000000..ccd545c5c --- /dev/null +++ b/apps/tail @@ -0,0 +1,3 @@ +# tail +Output the last part of files. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/tail.md b/apps/tail.md deleted file mode 100644 index 01cd0a352..000000000 --- a/apps/tail.md +++ /dev/null @@ -1,8 +0,0 @@ -# TAIL - - Output the last part of files. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/taisei-project b/apps/taisei-project new file mode 100644 index 000000000..f53501f98 --- /dev/null +++ b/apps/taisei-project @@ -0,0 +1,3 @@ +# taisei-project +Unofficial, A free and open-source Touhou Project fangame. +# SITES: https://github.com/pkgforge-dev/Taisei-Project-AppImage \ No newline at end of file diff --git a/apps/taisei-project.md b/apps/taisei-project.md deleted file mode 100644 index 2c92a67b6..000000000 --- a/apps/taisei-project.md +++ /dev/null @@ -1,8 +0,0 @@ -# TAISEI-PROJECT - - Unofficial, A free and open-source Touhou Project fangame. - - SITE: https://github.com/pkgforge-dev/Taisei-Project-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/talktype b/apps/talktype new file mode 100644 index 000000000..f087e2422 --- /dev/null +++ b/apps/talktype @@ -0,0 +1,3 @@ +# talktype +Linux speech to text app. +# SITES: https://github.com/ronb1964/TalkType \ No newline at end of file diff --git a/apps/talktype.md b/apps/talktype.md deleted file mode 100644 index ec8d5b6c3..000000000 --- a/apps/talktype.md +++ /dev/null @@ -1,8 +0,0 @@ -# TALKTYPE - - Linux speech to text app. - - SITE: https://github.com/ronb1964/TalkType - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/tamga b/apps/tamga new file mode 100644 index 000000000..a914ab5cc --- /dev/null +++ b/apps/tamga @@ -0,0 +1,3 @@ +# tamga +A 3D sculpting, sketching, and stylized rendering app. +# SITES: https://github.com/galata-ink/tamga-releases \ No newline at end of file diff --git a/apps/tamga.md b/apps/tamga.md deleted file mode 100644 index 8cd92408a..000000000 --- a/apps/tamga.md +++ /dev/null @@ -1,8 +0,0 @@ -# TAMGA - - A 3D sculpting, sketching, and stylized rendering app. - - SITE: https://github.com/galata-ink/tamga-releases - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/tangent b/apps/tangent new file mode 100644 index 000000000..cac8ae61f --- /dev/null +++ b/apps/tangent @@ -0,0 +1,3 @@ +# tangent +A clean and powerful open source notes app. +# SITES: https://www.tangentnotes.com \ No newline at end of file diff --git a/apps/tangent.md b/apps/tangent.md deleted file mode 100644 index 01c2a3cca..000000000 --- a/apps/tangent.md +++ /dev/null @@ -1,8 +0,0 @@ -# TANGENT - - A clean and powerful open source notes app. - - SITE: https://www.tangentnotes.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/tar b/apps/tar new file mode 100644 index 000000000..8b1e1081b --- /dev/null +++ b/apps/tar @@ -0,0 +1,3 @@ +# tar +Utility used to store, backup, and transport files. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/tar.md b/apps/tar.md deleted file mode 100644 index 8b3926591..000000000 --- a/apps/tar.md +++ /dev/null @@ -1,8 +0,0 @@ -# TAR - - Utility used to store, backup, and transport files. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/taradino b/apps/taradino new file mode 100644 index 000000000..e3d8b3346 --- /dev/null +++ b/apps/taradino @@ -0,0 +1,3 @@ +# taradino +Unofficial, SDL2 port of Rise of the Triad. +# SITES: https://github.com/pkgforge-dev/Taradino-AppImage \ No newline at end of file diff --git a/apps/taradino.md b/apps/taradino.md deleted file mode 100644 index bc25b36fd..000000000 --- a/apps/taradino.md +++ /dev/null @@ -1,8 +0,0 @@ -# TARADINO - - Unofficial, SDL2 port of Rise of the Triad. - - SITE: https://github.com/pkgforge-dev/Taradino-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/taskell b/apps/taskell new file mode 100644 index 000000000..9b5f6ab1e --- /dev/null +++ b/apps/taskell @@ -0,0 +1,3 @@ +# taskell +Command-line Kanban board/task manager with support for Trello boards and GitHub projects +# SITES: https://github.com/smallhadroncollider/taskell \ No newline at end of file diff --git a/apps/taskell.md b/apps/taskell.md deleted file mode 100644 index ae1a24f14..000000000 --- a/apps/taskell.md +++ /dev/null @@ -1,8 +0,0 @@ -# TASKELL - - Command-line Kanban board/task manager with support for Trello boards and GitHub projects - - SITE: https://github.com/smallhadroncollider/taskell - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/taskizer b/apps/taskizer new file mode 100644 index 000000000..bcb3f83d1 --- /dev/null +++ b/apps/taskizer @@ -0,0 +1,3 @@ +# taskizer +A task management app +# SITES: https://github.com/SimonBrandner/TaskizerDesktop \ No newline at end of file diff --git a/apps/taskizer.md b/apps/taskizer.md deleted file mode 100644 index 3397d3a36..000000000 --- a/apps/taskizer.md +++ /dev/null @@ -1,8 +0,0 @@ -# TASKIZER - - A task management app - - SITE: https://github.com/SimonBrandner/TaskizerDesktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/tasks-org b/apps/tasks-org new file mode 100644 index 000000000..30a04b233 --- /dev/null +++ b/apps/tasks-org @@ -0,0 +1,3 @@ +# tasks-org +Private, ad-free task lists. Optional sync with Google Tasks, CalDAV or EteSync. +# SITES: https://github.com/tasks/tasks \ No newline at end of file diff --git a/apps/tasks-org.md b/apps/tasks-org.md deleted file mode 100644 index 45cc81065..000000000 --- a/apps/tasks-org.md +++ /dev/null @@ -1,8 +0,0 @@ -# TASKS-ORG - - Private, ad-free task lists. Optional sync with Google Tasks, CalDAV or EteSync. - - SITE: https://github.com/tasks/tasks - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/tastee-ui b/apps/tastee-ui new file mode 100644 index 000000000..2cf0291b5 --- /dev/null +++ b/apps/tastee-ui @@ -0,0 +1,3 @@ +# tastee-ui +Tastee is a tool helping you write executable specifications in your own natural language. +# SITES: https://github.com/tastee/tastee-ui \ No newline at end of file diff --git a/apps/tastee-ui.md b/apps/tastee-ui.md deleted file mode 100644 index 129d95a38..000000000 --- a/apps/tastee-ui.md +++ /dev/null @@ -1,7 +0,0 @@ -# TASTEE-UI - - Tastee is a tool helping you write executable specifications in your own natural language. - - SITE: https://github.com/tastee/tastee-ui - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/tauon b/apps/tauon new file mode 100644 index 000000000..e99573e40 --- /dev/null +++ b/apps/tauon @@ -0,0 +1,3 @@ +# tauon +Unofficial, Tauon is a desktop music player designed for those who love their digital music collection. It’s built on the idea that a music player should be simple to use but deep in functionality. It combines a clean, modern interface with the power features you need to organize and enjoy your library. +# SITES: https://github.com/pkgforge-dev/Tauon-AppImage \ No newline at end of file diff --git a/apps/tauon.md b/apps/tauon.md deleted file mode 100644 index 0fe37bb69..000000000 --- a/apps/tauon.md +++ /dev/null @@ -1,8 +0,0 @@ -# TAUON - - Unofficial, Tauon is a desktop music player designed for those who love their digital music collection. It’s built on the idea that a music player should be simple to use but deep in functionality. It combines a clean, modern interface with the power features you need to organize and enjoy your library. - - SITE: https://github.com/pkgforge-dev/Tauon-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/tb b/apps/tb new file mode 100644 index 000000000..ae3614916 --- /dev/null +++ b/apps/tb @@ -0,0 +1,3 @@ +# tb +Tasks, boards & notes for the command-line habitat +# SITES: https://github.com/araaha/tb.go \ No newline at end of file diff --git a/apps/tb.md b/apps/tb.md deleted file mode 100644 index acf41484e..000000000 --- a/apps/tb.md +++ /dev/null @@ -1,8 +0,0 @@ -# TB - - Tasks, boards & notes for the command-line habitat - - SITE: https://github.com/araaha/tb.go - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/tbc-video-export b/apps/tbc-video-export new file mode 100644 index 000000000..9c26f59dd --- /dev/null +++ b/apps/tbc-video-export @@ -0,0 +1,3 @@ +# tbc-video-export +Tool for exporting S-Video and CVBS-type TBCs to video files. +# SITES: https://github.com/JuniorIsAJitterbug/tbc-video-export \ No newline at end of file diff --git a/apps/tbc-video-export.md b/apps/tbc-video-export.md deleted file mode 100644 index 4cdb87512..000000000 --- a/apps/tbc-video-export.md +++ /dev/null @@ -1,8 +0,0 @@ -# TBC-VIDEO-EXPORT - - Tool for exporting S-Video and CVBS-type TBCs to video files. - - SITE: https://github.com/JuniorIsAJitterbug/tbc-video-export - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/tc b/apps/tc new file mode 100644 index 000000000..67408bc02 --- /dev/null +++ b/apps/tc @@ -0,0 +1,3 @@ +# tc +TC is a desktop chat client for Twitch. +# SITES: https://github.com/mccxiv/tc \ No newline at end of file diff --git a/apps/tc.md b/apps/tc.md deleted file mode 100644 index bcc79987d..000000000 --- a/apps/tc.md +++ /dev/null @@ -1,7 +0,0 @@ -# TC - - TC is a desktop chat client for Twitch. - - SITE: https://github.com/mccxiv/tc - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/tdlib-rs b/apps/tdlib-rs new file mode 100644 index 000000000..bfe030964 --- /dev/null +++ b/apps/tdlib-rs @@ -0,0 +1,3 @@ +# tdlib-rs +Rust wrapper around the Telegram Database Library 🦀 +# SITES: https://github.com/FedericoBruzzone/tdlib-rs \ No newline at end of file diff --git a/apps/tdlib-rs.md b/apps/tdlib-rs.md deleted file mode 100644 index 9f11b810e..000000000 --- a/apps/tdlib-rs.md +++ /dev/null @@ -1,8 +0,0 @@ -# TDLIB-RS - - Rust wrapper around the Telegram Database Library 🦀 - - SITE: https://github.com/FedericoBruzzone/tdlib-rs - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/teams b/apps/teams new file mode 100644 index 000000000..741ee6edb --- /dev/null +++ b/apps/teams @@ -0,0 +1,9 @@ +# teams +Microsoft Teams is a proprietary business communication platform developed by Microsoft, as part of the Microsoft 365 family of products. Teams primarily competes with the similar service Slack, offering workspace chat and videoconferencing, file storage, and application integration. + + Teams is replacing other Microsoft-operated business messaging and collaboration platforms, including Skype for Business and Microsoft Classroom. + + This is the Unofficial AppImage. +# SCREENSHOTS: https://dl.flathub.org/repo/screenshots/com.github.IsmaelMartinez.teams_for_linux-stable/752x423/com.github.IsmaelMartinez.teams_for_linux-3be0de1829a200467d5f48d0381c802f.png +# SITES: https://teams.com +# SOURCES: https://github.com/IsmaelMartinez/teams-for-linux \ No newline at end of file diff --git a/apps/teams.md b/apps/teams.md deleted file mode 100644 index 7f6e1caaa..000000000 --- a/apps/teams.md +++ /dev/null @@ -1,16 +0,0 @@ -# TEAMS - - Microsoft Teams is a proprietary business communication platform developed by Microsoft, as part of the Microsoft 365 family of products. Teams primarily competes with the similar service Slack, offering workspace chat and videoconferencing, file storage, and application integration. - - Teams is replacing other Microsoft-operated business messaging and collaboration platforms, including Skype for Business and Microsoft Classroom. - - This is the Unofficial AppImage. - - ![Screenshot](https://dl.flathub.org/repo/screenshots/com.github.IsmaelMartinez.teams_for_linux-stable/752x423/com.github.IsmaelMartinez.teams_for_linux-3be0de1829a200467d5f48d0381c802f.png) - - SITE: https://teams.com - - SOURCE: https://github.com/IsmaelMartinez/teams-for-linux - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/teamviewer b/apps/teamviewer new file mode 100644 index 000000000..bca3aaa49 --- /dev/null +++ b/apps/teamviewer @@ -0,0 +1,7 @@ +# teamviewer +Deliver remote IT support that’s even more supportive. + + See how you can securely support your customers and colleagues — anytime, anywhere. + + Establish incoming and outgoing connections between devices. Real-time remote access and support Monitor, patch, and protect your devices. +# SITES: https://www.teamviewer.com \ No newline at end of file diff --git a/apps/teamviewer-host b/apps/teamviewer-host new file mode 100644 index 000000000..9acad6fe6 --- /dev/null +++ b/apps/teamviewer-host @@ -0,0 +1,3 @@ +# teamviewer-host +TeamViewer Host is used for 24/7 access to remote computers, which makes it an ideal solution for uses such as remote device monitoring, server maintenance, or connection to a PC, Mac, or Linux device in the office or at home without having to accept the incoming connection on the remote device (unattended access). Install TeamViewer Host on your devices to access them effortlessly. +# SITES: https://www.teamviewer.com \ No newline at end of file diff --git a/apps/teamviewer-host.md b/apps/teamviewer-host.md deleted file mode 100644 index df0f97aef..000000000 --- a/apps/teamviewer-host.md +++ /dev/null @@ -1,8 +0,0 @@ -# TEAMVIEWER-HOST - - TeamViewer Host is used for 24/7 access to remote computers, which makes it an ideal solution for uses such as remote device monitoring, server maintenance, or connection to a PC, Mac, or Linux device in the office or at home without having to accept the incoming connection on the remote device (unattended access). Install TeamViewer Host on your devices to access them effortlessly. - - SITE: https://www.teamviewer.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/teamviewer-qs b/apps/teamviewer-qs new file mode 100644 index 000000000..dd10c85ef --- /dev/null +++ b/apps/teamviewer-qs @@ -0,0 +1,3 @@ +# teamviewer-qs +QuickSupport utility for TeamViewer. Receive instant remote support. TeamViewer QuickSupport is a small customer module that does not require installation or administrator rights – simply download, double click, and join the remote session by entering the session code provided to you by your expert. You can also directly follow a session link sent to you. +# SITES: https://www.teamviewer.com \ No newline at end of file diff --git a/apps/teamviewer-qs.md b/apps/teamviewer-qs.md deleted file mode 100644 index f6d8ebb15..000000000 --- a/apps/teamviewer-qs.md +++ /dev/null @@ -1,8 +0,0 @@ -# TEAMVIEWER-QS - - QuickSupport utility for TeamViewer. Receive instant remote support. TeamViewer QuickSupport is a small customer module that does not require installation or administrator rights – simply download, double click, and join the remote session by entering the session code provided to you by your expert. You can also directly follow a session link sent to you. - - SITE: https://www.teamviewer.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/teamviewer.md b/apps/teamviewer.md deleted file mode 100644 index 325cff538..000000000 --- a/apps/teamviewer.md +++ /dev/null @@ -1,12 +0,0 @@ -# TEAMVIEWER - - Deliver remote IT support that’s even more supportive. - - See how you can securely support your customers and colleagues — anytime, anywhere. - - Establish incoming and outgoing connections between devices. Real-time remote access and support Monitor, patch, and protect your devices. - - SITE: https://www.teamviewer.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/tee b/apps/tee new file mode 100644 index 000000000..81ed17e1a --- /dev/null +++ b/apps/tee @@ -0,0 +1,3 @@ +# tee +Read from standard input and write to standard output and. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/tee.md b/apps/tee.md deleted file mode 100644 index f267d3ef6..000000000 --- a/apps/tee.md +++ /dev/null @@ -1,8 +0,0 @@ -# TEE - - Read from standard input and write to standard output and. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/teledrive b/apps/teledrive new file mode 100644 index 000000000..493a28521 --- /dev/null +++ b/apps/teledrive @@ -0,0 +1,3 @@ +# teledrive +An app that lets you automatically backup to Telegram Saved Messages +# SITES: https://github.com/KhushrajRathod/TeleDrive \ No newline at end of file diff --git a/apps/teledrive.md b/apps/teledrive.md deleted file mode 100644 index 2f095b008..000000000 --- a/apps/teledrive.md +++ /dev/null @@ -1,8 +0,0 @@ -# TELEDRIVE - - An app that lets you automatically backup to Telegram Saved Messages - - SITE: https://github.com/KhushrajRathod/TeleDrive - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/telegram b/apps/telegram new file mode 100644 index 000000000..48d46c65d --- /dev/null +++ b/apps/telegram @@ -0,0 +1,7 @@ +# telegram +Official desktop client of Telegram messaging app. + + This is the portable official version converted to an AppImage by our team, "Portable Linux Apps" , no additional changes have been made. +# SCREENSHOTS: https://ubuntuhandbook.org/wp-content/uploads/2015/01/telegram-in-ubuntu.jpg +# SITES: https://desktop.telegram.org +# SOURCES: https://github.com/telegramdesktop/tdesktop https://github.com/Portable-Linux-Apps/Telegram-AppImage \ No newline at end of file diff --git a/apps/telegram.md b/apps/telegram.md deleted file mode 100644 index 3edf1a5d0..000000000 --- a/apps/telegram.md +++ /dev/null @@ -1,16 +0,0 @@ -# TELEGRAM - - Official desktop client of Telegram messaging app. - - This is the portable official version converted to an AppImage by our team, "Portable Linux Apps" , no additional changes have been made. - - ![Screenshot](https://ubuntuhandbook.org/wp-content/uploads/2015/01/telegram-in-ubuntu.jpg) - - SITE: https://desktop.telegram.org - - SOURCE: https://github.com/telegramdesktop/tdesktop - - APPIMAGE: https://github.com/Portable-Linux-Apps/Telegram-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/telly-skout b/apps/telly-skout new file mode 100644 index 000000000..6bc4af248 --- /dev/null +++ b/apps/telly-skout @@ -0,0 +1,9 @@ +# telly-skout +Telly Skout is a convergent Kirigami TV guide. + + It shows the TV program for your favorite channels from TV Spielfilm or an XMLTV file. + + This tool is part of the KDE Utils Suite. +# SCREENSHOTS: https://cdn.kde.org/screenshots/telly-skout/sort-favorites.png +# SITES: https://apps.kde.org +# SOURCES: https://github.com/ivan-hc/KDE-utils-appimage \ No newline at end of file diff --git a/apps/telly-skout.md b/apps/telly-skout.md deleted file mode 100644 index 7d58f4abd..000000000 --- a/apps/telly-skout.md +++ /dev/null @@ -1,16 +0,0 @@ -# TELLY-SKOUT - - Telly Skout is a convergent Kirigami TV guide. - - It shows the TV program for your favorite channels from TV Spielfilm or an XMLTV file. - - This tool is part of the KDE Utils Suite. - - ![Screenshot](https://cdn.kde.org/screenshots/telly-skout/sort-favorites.png) - - SITE: https://apps.kde.org - - SOURCE: https://github.com/ivan-hc/KDE-utils-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/tenacity b/apps/tenacity new file mode 100644 index 000000000..2cb467848 --- /dev/null +++ b/apps/tenacity @@ -0,0 +1,3 @@ +# tenacity +An easy-to-use, cross-platform multi-track audio editor/recorder. +# SITES: https://tenacityaudio.org \ No newline at end of file diff --git a/apps/tenacity.md b/apps/tenacity.md deleted file mode 100644 index 74d09effa..000000000 --- a/apps/tenacity.md +++ /dev/null @@ -1,8 +0,0 @@ -# TENACITY - - An easy-to-use, cross-platform multi-track audio editor/recorder. - - SITE: https://tenacityaudio.org - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/terabox b/apps/terabox new file mode 100644 index 000000000..d486caeeb --- /dev/null +++ b/apps/terabox @@ -0,0 +1,3 @@ +# terabox +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. +# SITES: https://www.terabox.com \ No newline at end of file diff --git a/apps/terabox.md b/apps/terabox.md deleted file mode 100644 index 41a7ff3cd..000000000 --- a/apps/terabox.md +++ /dev/null @@ -1,8 +0,0 @@ -# TERABOX - - 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. - - SITE: https://www.terabox.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/tere b/apps/tere new file mode 100644 index 000000000..45520aeb4 --- /dev/null +++ b/apps/tere @@ -0,0 +1,3 @@ +# tere +Terminal file explorer +# SITES: https://github.com/mgunyho/tere \ No newline at end of file diff --git a/apps/tere.md b/apps/tere.md deleted file mode 100644 index 535e27fb7..000000000 --- a/apps/tere.md +++ /dev/null @@ -1,8 +0,0 @@ -# TERE - - Terminal file explorer - - SITE: https://github.com/mgunyho/tere - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/terminalos-sim b/apps/terminalos-sim new file mode 100644 index 000000000..ad0e583f6 --- /dev/null +++ b/apps/terminalos-sim @@ -0,0 +1,3 @@ +# terminalos-sim +A terminalOS simulator. +# SITES: https://github.com/justmaxcz/terminalOS-simulator \ No newline at end of file diff --git a/apps/terminalos-sim.md b/apps/terminalos-sim.md deleted file mode 100644 index 652253e5a..000000000 --- a/apps/terminalos-sim.md +++ /dev/null @@ -1,8 +0,0 @@ -# TERMINALOS-SIM - - A terminalOS simulator. - - SITE: https://github.com/justmaxcz/terminalOS-simulator - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/termora b/apps/termora new file mode 100644 index 000000000..b99d9dbdd --- /dev/null +++ b/apps/termora @@ -0,0 +1,3 @@ +# termora +A terminal emulator and SSH client. +# SITES: https://github.com/TermoraDev/termora \ No newline at end of file diff --git a/apps/termora.md b/apps/termora.md deleted file mode 100644 index 3156a76c3..000000000 --- a/apps/termora.md +++ /dev/null @@ -1,8 +0,0 @@ -# TERMORA - - A terminal emulator and SSH client. - - SITE: https://github.com/TermoraDev/termora - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/termshot b/apps/termshot new file mode 100644 index 000000000..a3eebead3 --- /dev/null +++ b/apps/termshot @@ -0,0 +1,3 @@ +# termshot +Creates screenshots based on terminal command output +# SITES: https://github.com/homeport/termshot \ No newline at end of file diff --git a/apps/termshot.md b/apps/termshot.md deleted file mode 100644 index 32f5c5935..000000000 --- a/apps/termshot.md +++ /dev/null @@ -1,8 +0,0 @@ -# TERMSHOT - - Creates screenshots based on terminal command output - - SITE: https://github.com/homeport/termshot - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/teslacam-browser b/apps/teslacam-browser new file mode 100644 index 000000000..a492ec2c7 --- /dev/null +++ b/apps/teslacam-browser @@ -0,0 +1,3 @@ +# teslacam-browser +A minimal TeslaCam Browser +# SITES: https://github.com/BobStrogg/teslacam-browser \ No newline at end of file diff --git a/apps/teslacam-browser.md b/apps/teslacam-browser.md deleted file mode 100644 index bf1205653..000000000 --- a/apps/teslacam-browser.md +++ /dev/null @@ -1,8 +0,0 @@ -# TESLACAM-BROWSER - - A minimal TeslaCam Browser - - SITE: https://github.com/BobStrogg/teslacam-browser - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/tesler b/apps/tesler new file mode 100644 index 000000000..46791f1c1 --- /dev/null +++ b/apps/tesler @@ -0,0 +1,3 @@ +# tesler +TesLEr - The Tesla Sentinel Viewer +# SITES: https://github.com/j-catania/TeslaSentinelViewer \ No newline at end of file diff --git a/apps/tesler.md b/apps/tesler.md deleted file mode 100644 index f9f3149d5..000000000 --- a/apps/tesler.md +++ /dev/null @@ -1,8 +0,0 @@ -# TESLER - - TesLEr - The Tesla Sentinel Viewer - - SITE: https://github.com/j-catania/TeslaSentinelViewer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/tess b/apps/tess new file mode 100644 index 000000000..35c5b6e7f --- /dev/null +++ b/apps/tess @@ -0,0 +1,3 @@ +# tess +A hackable, simple, rapid and beautiful terminal for the new era of technology. +# SITES: https://github.com/SquitchYT/Tess \ No newline at end of file diff --git a/apps/tess.md b/apps/tess.md deleted file mode 100644 index 7673ac3d4..000000000 --- a/apps/tess.md +++ /dev/null @@ -1,10 +0,0 @@ -# TESS - - A hackable, simple, rapid and beautiful terminal for the new era of technology. - - SITE: https://github.com/SquitchYT/Tess - - DISCORD: https://tessapp.dev/discord - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/tesseract b/apps/tesseract new file mode 100644 index 000000000..6ee59162a --- /dev/null +++ b/apps/tesseract @@ -0,0 +1,3 @@ +# tesseract +Tesseract Open Source OCR Engine AppImage. +# SITES: https://github.com/AlexanderP/tesseract-appimage \ No newline at end of file diff --git a/apps/tesseract.md b/apps/tesseract.md deleted file mode 100644 index aa796d18d..000000000 --- a/apps/tesseract.md +++ /dev/null @@ -1,8 +0,0 @@ -# TESSERACT - - Tesseract Open Source OCR Engine AppImage. - - SITE: https://github.com/AlexanderP/tesseract-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/test.md b/apps/test.md deleted file mode 100644 index d9667651e..000000000 --- a/apps/test.md +++ /dev/null @@ -1,8 +0,0 @@ -# TEST - - Check file types and compare values. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/testapp b/apps/testapp new file mode 100644 index 000000000..74d06848b --- /dev/null +++ b/apps/testapp @@ -0,0 +1,10 @@ +# 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 diff --git a/apps/testdisk b/apps/testdisk new file mode 100644 index 000000000..9c9bd11d2 --- /dev/null +++ b/apps/testdisk @@ -0,0 +1,17 @@ +# testdisk +This installation script provides TestDisk & PhotoRec. + + TestDisk is powerful free data recovery software! It was primarily designed to help recover lost partitions and/or make non-booting disks bootable again when these symptoms are caused by faulty software: certain types of viruses or human error (such as accidentally deleting a Partition Table). Partition table recovery using TestDisk is really easy. TestDisk can: + - Fix partition table, recover deleted partition + - Recover FAT32 boot sector from its backup + - Rebuild FAT12/FAT16/FAT32 boot sector + - Fix FAT tables + - Rebuild NTFS boot sector + - Recover NTFS boot sector from its backup + - Fix MFT using MFT mirror + - Locate ext2/ext3/ext4 Backup SuperBlock + - Undelete files from FAT, exFAT, NTFS and ext2 filesystem + - Copy files from deleted FAT, exFAT, NTFS and ext2/ext3/ext4 partitions. + + PhotoRec is file data recovery software designed to recover lost files including video, documents and archives from hard disks (Mechanical Hard drives, Solid State Drives...), CD-ROMs, and lost pictures (thus the Photo Recovery name) from digital camera memory. PhotoRec ignores the file system and goes after the underlying data, so it will still work even if your media's file system has been severely damaged or reformatted. +# SITES: https://www.cgsecurity.org \ No newline at end of file diff --git a/apps/testdisk.md b/apps/testdisk.md deleted file mode 100644 index 767db092d..000000000 --- a/apps/testdisk.md +++ /dev/null @@ -1,22 +0,0 @@ -# TESTDISK - - This installation script provides TestDisk & PhotoRec. - - TestDisk is powerful free data recovery software! It was primarily designed to help recover lost partitions and/or make non-booting disks bootable again when these symptoms are caused by faulty software: certain types of viruses or human error (such as accidentally deleting a Partition Table). Partition table recovery using TestDisk is really easy. TestDisk can: - - Fix partition table, recover deleted partition - - Recover FAT32 boot sector from its backup - - Rebuild FAT12/FAT16/FAT32 boot sector - - Fix FAT tables - - Rebuild NTFS boot sector - - Recover NTFS boot sector from its backup - - Fix MFT using MFT mirror - - Locate ext2/ext3/ext4 Backup SuperBlock - - Undelete files from FAT, exFAT, NTFS and ext2 filesystem - - Copy files from deleted FAT, exFAT, NTFS and ext2/ext3/ext4 partitions. - - PhotoRec is file data recovery software designed to recover lost files including video, documents and archives from hard disks (Mechanical Hard drives, Solid State Drives...), CD-ROMs, and lost pictures (thus the Photo Recovery name) from digital camera memory. PhotoRec ignores the file system and goes after the underlying data, so it will still work even if your media's file system has been severely damaged or reformatted. - - SITE: https://www.cgsecurity.org - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/tetanes b/apps/tetanes new file mode 100644 index 000000000..6bd61bf05 --- /dev/null +++ b/apps/tetanes @@ -0,0 +1,3 @@ +# tetanes +A cross-platform NES emulator written in Rust using wgpu. +# SITES: https://github.com/lukexor/tetanes \ No newline at end of file diff --git a/apps/tetanes.md b/apps/tetanes.md deleted file mode 100644 index 11d607530..000000000 --- a/apps/tetanes.md +++ /dev/null @@ -1,8 +0,0 @@ -# TETANES - - A cross-platform NES emulator written in Rust using wgpu. - - SITE: https://github.com/lukexor/tetanes - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/tev b/apps/tev new file mode 100644 index 000000000..c3fd6b4d7 --- /dev/null +++ b/apps/tev @@ -0,0 +1,3 @@ +# tev +High dynamic range (HDR) image viewer for people who care about colors. +# SITES: https://github.com/tom94/tev \ No newline at end of file diff --git a/apps/tev.md b/apps/tev.md deleted file mode 100644 index 089d7cbeb..000000000 --- a/apps/tev.md +++ /dev/null @@ -1,8 +0,0 @@ -# TEV - - High dynamic range (HDR) image viewer for people who care about colors. - - SITE: https://github.com/tom94/tev - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/texmacs b/apps/texmacs new file mode 100644 index 000000000..3d36cb290 --- /dev/null +++ b/apps/texmacs @@ -0,0 +1,3 @@ +# texmacs +Free scientific text editor, inspired by TeX and GNU Emacs. WYSIWYG editor and CAS-interface. +# SITES: http://www.texmacs.org/ \ No newline at end of file diff --git a/apps/texmacs.md b/apps/texmacs.md deleted file mode 100644 index 1514cfa4e..000000000 --- a/apps/texmacs.md +++ /dev/null @@ -1,8 +0,0 @@ -# TEXMACS - - Free scientific text editor, inspired by TeX and GNU Emacs. WYSIWYG editor and CAS-interface. - - SITE: http://www.texmacs.org/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/texstudio b/apps/texstudio new file mode 100644 index 000000000..fe9305bb3 --- /dev/null +++ b/apps/texstudio @@ -0,0 +1,3 @@ +# texstudio +LaTeX development environment +# SITES: https://github.com/texstudio-org/texstudio \ No newline at end of file diff --git a/apps/texstudio.md b/apps/texstudio.md deleted file mode 100644 index 73b13f2f5..000000000 --- a/apps/texstudio.md +++ /dev/null @@ -1,8 +0,0 @@ -# TEXSTUDIO - - LaTeX development environment - - SITE: https://github.com/texstudio-org/texstudio - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/textnote b/apps/textnote new file mode 100644 index 000000000..07c81145a --- /dev/null +++ b/apps/textnote @@ -0,0 +1,3 @@ +# textnote +Simple tool for creating and organizing daily notes on the command line +# SITES: https://github.com/dkaslovsky/textnote \ No newline at end of file diff --git a/apps/textnote.md b/apps/textnote.md deleted file mode 100644 index 1450373c3..000000000 --- a/apps/textnote.md +++ /dev/null @@ -1,8 +0,0 @@ -# TEXTNOTE - - Simple tool for creating and organizing daily notes on the command line - - SITE: https://github.com/dkaslovsky/textnote - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/textosaurus b/apps/textosaurus new file mode 100644 index 000000000..136972e66 --- /dev/null +++ b/apps/textosaurus @@ -0,0 +1,5 @@ +# textosaurus +Textosaurus is simple cross-platform UTF-8 text editor based on Qt and Scintilla. Textosaurus aims to provide similar workflow as Notepad++ does. + + This is the version 0.9.13 +# SITES: https://github.com/martinrotter/textosaurus \ No newline at end of file diff --git a/apps/textosaurus.md b/apps/textosaurus.md deleted file mode 100644 index 06dea9f19..000000000 --- a/apps/textosaurus.md +++ /dev/null @@ -1,9 +0,0 @@ -# TEXTOSAURUS - - Textosaurus is simple cross-platform UTF-8 text editor based on Qt and Scintilla. Textosaurus aims to provide similar workflow as Notepad++ does. - - This is the version 0.9.13 - - SITE: https://github.com/martinrotter/textosaurus - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/tfcbm b/apps/tfcbm new file mode 100644 index 000000000..cf97a8691 --- /dev/null +++ b/apps/tfcbm @@ -0,0 +1,3 @@ +# tfcbm +The * Clipboard Manager. +# SITES: https://github.com/dyslechtchitect/tfcbm \ No newline at end of file diff --git a/apps/tfcbm.md b/apps/tfcbm.md deleted file mode 100644 index aec53a578..000000000 --- a/apps/tfcbm.md +++ /dev/null @@ -1,8 +0,0 @@ -# TFCBM - - The * Clipboard Manager. - - SITE: https://github.com/dyslechtchitect/tfcbm - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/tgpt b/apps/tgpt new file mode 100644 index 000000000..351539b10 --- /dev/null +++ b/apps/tgpt @@ -0,0 +1,3 @@ +# tgpt +AI Chatbots in terminal without needing API keys. +# SITES: https://github.com/aandrew-me/tgpt \ No newline at end of file diff --git a/apps/tgpt.md b/apps/tgpt.md deleted file mode 100644 index da408efe0..000000000 --- a/apps/tgpt.md +++ /dev/null @@ -1,8 +0,0 @@ -# TGPT - - AI Chatbots in terminal without needing API keys. - - SITE: https://github.com/aandrew-me/tgpt - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/the-way b/apps/the-way new file mode 100644 index 000000000..e4b8d45bc --- /dev/null +++ b/apps/the-way @@ -0,0 +1,3 @@ +# the-way +A code snippets manager for your terminal. +# SITES: https://github.com/out-of-cheese-error/the-way \ No newline at end of file diff --git a/apps/the-way.md b/apps/the-way.md deleted file mode 100644 index 79e1b31ae..000000000 --- a/apps/the-way.md +++ /dev/null @@ -1,8 +0,0 @@ -# THE-WAY - - A code snippets manager for your terminal. - - SITE: https://github.com/out-of-cheese-error/the-way - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/thedesk b/apps/thedesk new file mode 100644 index 000000000..fba5ef2f1 --- /dev/null +++ b/apps/thedesk @@ -0,0 +1,3 @@ +# thedesk +Mastodon Client for PC. +# SITES: https://thedesk.top/ \ No newline at end of file diff --git a/apps/thedesk.md b/apps/thedesk.md deleted file mode 100644 index d1af3d1d3..000000000 --- a/apps/thedesk.md +++ /dev/null @@ -1,8 +0,0 @@ -# THEDESK - - Mastodon Client for PC. - - SITE: https://thedesk.top/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/theframe b/apps/theframe new file mode 100644 index 000000000..55da1a6b0 --- /dev/null +++ b/apps/theframe @@ -0,0 +1,3 @@ +# theframe +theFrame is an Animation Tool. +# SITES: https://github.com/vicr123/theFrame \ No newline at end of file diff --git a/apps/theframe.md b/apps/theframe.md deleted file mode 100644 index 5a2f4c54b..000000000 --- a/apps/theframe.md +++ /dev/null @@ -1,7 +0,0 @@ -# THEFRAME - - theFrame is an Animation Tool. - - SITE: https://github.com/vicr123/theFrame - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/theia-blueprint b/apps/theia-blueprint new file mode 100644 index 000000000..87a3649e4 --- /dev/null +++ b/apps/theia-blueprint @@ -0,0 +1,3 @@ +# theia-blueprint +Eclipse Theia Blueprint is a template for building desktop-based products based on the Eclipse Theia platform, as well as to showcase Eclipse Theia capabilities. It is made up of a subset of existing Eclipse Theia features and extensions and can be easily downloaded and installed on all major operating system platforms. +# SITES: https://theia-ide.org \ No newline at end of file diff --git a/apps/theia-blueprint.md b/apps/theia-blueprint.md deleted file mode 100644 index 851e4fec3..000000000 --- a/apps/theia-blueprint.md +++ /dev/null @@ -1,8 +0,0 @@ -# THEIA-BLUEPRINT - - Eclipse Theia Blueprint is a template for building desktop-based products based on the Eclipse Theia platform, as well as to showcase Eclipse Theia capabilities. It is made up of a subset of existing Eclipse Theia features and extensions and can be easily downloaded and installed on all major operating system platforms. - - SITE: https://theia-ide.org - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/thermusqt b/apps/thermusqt new file mode 100644 index 000000000..ed2a349e5 --- /dev/null +++ b/apps/thermusqt @@ -0,0 +1,3 @@ +# thermusqt +A tool to calculate the particle composition of the final hadronic state +# SITES: https://github.com/yschutz/ThermusQt \ No newline at end of file diff --git a/apps/thermusqt.md b/apps/thermusqt.md deleted file mode 100644 index 6261d1492..000000000 --- a/apps/thermusqt.md +++ /dev/null @@ -1,8 +0,0 @@ -# THERMUSQT - - A tool to calculate the particle composition of the final hadronic state - - SITE: https://github.com/yschutz/ThermusQt - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/theweb b/apps/theweb new file mode 100644 index 000000000..c87ef7e64 --- /dev/null +++ b/apps/theweb @@ -0,0 +1,3 @@ +# theweb +theWeb - A simple Web Browser. +# SITES: https://github.com/vicr123/theweb \ No newline at end of file diff --git a/apps/theweb.md b/apps/theweb.md deleted file mode 100644 index 317f3c192..000000000 --- a/apps/theweb.md +++ /dev/null @@ -1,7 +0,0 @@ -# THEWEB - - theWeb - A simple Web Browser. - - SITE: https://github.com/vicr123/theweb - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/thief b/apps/thief new file mode 100644 index 000000000..6d5d7daac --- /dev/null +++ b/apps/thief @@ -0,0 +1,5 @@ +# thief +An innovative cross-platform fishing tool. + + 一款创新跨平台摸鱼神器,支持小说、股票、网页、视频、直播、PDF、游戏等摸鱼模式,为上班族打造的上班必备神器,使用此软件可以让上班倍感轻松,远离 ICU +# SITES: https://thief.im/ \ No newline at end of file diff --git a/apps/thief.md b/apps/thief.md deleted file mode 100644 index 4d8b14c1a..000000000 --- a/apps/thief.md +++ /dev/null @@ -1,10 +0,0 @@ -# THIEF - - An innovative cross-platform fishing tool. - - 一款创新跨平台摸鱼神器,支持小说、股票、网页、视频、直播、PDF、游戏等摸鱼模式,为上班族打造的上班必备神器,使用此软件可以让上班倍感轻松,远离 ICU - - SITE: https://thief.im/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/thinreports-section-editor b/apps/thinreports-section-editor new file mode 100644 index 000000000..71b2f8d3f --- /dev/null +++ b/apps/thinreports-section-editor @@ -0,0 +1,3 @@ +# thinreports-section-editor +A template editor for Thinreports to edit Section Format templates. +# SITES: https://github.com/thinreports/thinreports-section-editor/ \ No newline at end of file diff --git a/apps/thinreports-section-editor.md b/apps/thinreports-section-editor.md deleted file mode 100644 index cc92d9d8c..000000000 --- a/apps/thinreports-section-editor.md +++ /dev/null @@ -1,8 +0,0 @@ -# THINREPORTS-SECTION-EDITOR - - A template editor for Thinreports to edit Section Format templates. - - SITE: https://github.com/thinreports/thinreports-section-editor/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/thlink b/apps/thlink new file mode 100644 index 000000000..d6be7fd21 --- /dev/null +++ b/apps/thlink @@ -0,0 +1,3 @@ +# thlink +Touhou Project Game Netplay Tool 支持非想天则和凭依华观战的 通用的东方联机器 +# SITES: https://github.com/weilinfox/youmu-thlink \ No newline at end of file diff --git a/apps/thlink.md b/apps/thlink.md deleted file mode 100644 index 501316dcc..000000000 --- a/apps/thlink.md +++ /dev/null @@ -1,8 +0,0 @@ -# THLINK - - Touhou Project Game Netplay Tool 支持非想天则和凭依华观战的 通用的东方联机器 - - SITE: https://github.com/weilinfox/youmu-thlink - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/thoptv b/apps/thoptv new file mode 100644 index 000000000..4b76b898e --- /dev/null +++ b/apps/thoptv @@ -0,0 +1,3 @@ +# thoptv +Thoptv is the best source to enjoy Ultimate Movies, sports Matches, IPL and Latest Shows, radio and many much more thing’s. It’s totally free of cost you don’t need to pay any single to use this application it has a premium plan. +# SITES: https://github.com/kkdops/thoptv/ \ No newline at end of file diff --git a/apps/thoptv.md b/apps/thoptv.md deleted file mode 100644 index 73bb1e916..000000000 --- a/apps/thoptv.md +++ /dev/null @@ -1,8 +0,0 @@ -# THOPTV - - Thoptv is the best source to enjoy Ultimate Movies, sports Matches, IPL and Latest Shows, radio and many much more thing’s. It’s totally free of cost you don’t need to pay any single to use this application it has a premium plan. - - SITE: https://github.com/kkdops/thoptv/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/thorium b/apps/thorium new file mode 100644 index 000000000..deb770547 --- /dev/null +++ b/apps/thorium @@ -0,0 +1,4 @@ +# thorium +Thorium - Chromium fork for linux named after radioactive element No. 90. +# SCREENSHOTS: https://www.imaginelinux.com/wp-content/uploads/2023/03/thorium-interface.png +# SITES: https://github.com/Alex313031/Thorium \ No newline at end of file diff --git a/apps/thorium-client b/apps/thorium-client new file mode 100644 index 000000000..d6a7a40a4 --- /dev/null +++ b/apps/thorium-client @@ -0,0 +1,3 @@ +# thorium-client +A locked-down electron kiosk for Thorium. +# SITES: https://github.com/Thorium-Sim/thorium-kiosk \ No newline at end of file diff --git a/apps/thorium-client.md b/apps/thorium-client.md deleted file mode 100644 index 835b43b1c..000000000 --- a/apps/thorium-client.md +++ /dev/null @@ -1,7 +0,0 @@ -# THORIUM-CLIENT - - A locked-down electron kiosk for Thorium. - - SITE: https://github.com/Thorium-Sim/thorium-kiosk - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/thorium-reader b/apps/thorium-reader new file mode 100644 index 000000000..d2fb7aef1 --- /dev/null +++ b/apps/thorium-reader @@ -0,0 +1,3 @@ +# thorium-reader +Desktop application to read ebooks +# SITES: https://github.com/edrlab/thorium-reader \ No newline at end of file diff --git a/apps/thorium-reader.md b/apps/thorium-reader.md deleted file mode 100644 index 98686b188..000000000 --- a/apps/thorium-reader.md +++ /dev/null @@ -1,8 +0,0 @@ -# THORIUM-READER - - Desktop application to read ebooks - - SITE: https://github.com/edrlab/thorium-reader - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/thorium.md b/apps/thorium.md deleted file mode 100644 index c002eea28..000000000 --- a/apps/thorium.md +++ /dev/null @@ -1,10 +0,0 @@ -# THORIUM - - Thorium - Chromium fork for linux named after radioactive element No. 90. - - ![Screenshot](https://www.imaginelinux.com/wp-content/uploads/2023/03/thorium-interface.png) - - SITE: https://github.com/Alex313031/Thorium - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/thunderbird b/apps/thunderbird new file mode 100644 index 000000000..cdf27378b --- /dev/null +++ b/apps/thunderbird @@ -0,0 +1,10 @@ +# thunderbird +Thunderbird is an mail client suitable for free distribution, using the XUL user interface language, with supports for different mail accounts, no matter of the used protocol like POP(s) or IMAP(s), has an integrated learning Spam filter, and offers easy organization of mails with tagging and virtual folders. Also, more features can be added by installing extensions. + Thunderbird also includes an integrated calendar for handling events, events invitations and tasks in multiple calendars. It supports local calendars, CalDAV and plain ics files on CardDAV and WebDAV. + + This is the Stable release. + + This script provides both the official portable build with automatic updates and the AppImage. +# SCREENSHOTS: https://media.imgcdn.org/repo/2023/03/mozilla-thunderbird/Mozilla-Thunderbird-free-download.jpg +# SITES: https://www.thunderbird.net +# SOURCES: https://github.com/ivan-hc/Thunderbird-appimage \ No newline at end of file diff --git a/apps/thunderbird-beta b/apps/thunderbird-beta new file mode 100644 index 000000000..4998e01d4 --- /dev/null +++ b/apps/thunderbird-beta @@ -0,0 +1,10 @@ +# thunderbird-beta +Thunderbird is an mail client suitable for free distribution, using the XUL user interface language, with supports for different mail accounts, no matter of the used protocol like POP(s) or IMAP(s), has an integrated learning Spam filter, and offers easy organization of mails with tagging and virtual folders. Also, more features can be added by installing extensions. + Thunderbird also includes an integrated calendar for handling events, events invitations and tasks in multiple calendars. It supports local calendars, CalDAV and plain ics files on CardDAV and WebDAV. + + This is the Beta release. + + This script provides both the official portable build with automatic updates and the AppImage. +# SCREENSHOTS: https://media.imgcdn.org/repo/2023/03/mozilla-thunderbird/Mozilla-Thunderbird-free-download.jpg +# SITES: https://www.thunderbird.net +# SOURCES: https://github.com/ivan-hc/Thunderbird-appimage \ No newline at end of file diff --git a/apps/thunderbird-beta.md b/apps/thunderbird-beta.md deleted file mode 100644 index 09ecb0cab..000000000 --- a/apps/thunderbird-beta.md +++ /dev/null @@ -1,17 +0,0 @@ -# THUNDERBIRD-BETA - - Thunderbird is an mail client suitable for free distribution, using the XUL user interface language, with supports for different mail accounts, no matter of the used protocol like POP(s) or IMAP(s), has an integrated learning Spam filter, and offers easy organization of mails with tagging and virtual folders. Also, more features can be added by installing extensions. - Thunderbird also includes an integrated calendar for handling events, events invitations and tasks in multiple calendars. It supports local calendars, CalDAV and plain ics files on CardDAV and WebDAV. - - This is the Beta release. - - This script provides both the official portable build with automatic updates and the AppImage. - - ![Screenshot](https://media.imgcdn.org/repo/2023/03/mozilla-thunderbird/Mozilla-Thunderbird-free-download.jpg) - - SITE: https://www.thunderbird.net - - APPIMAGE: https://github.com/ivan-hc/Thunderbird-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/thunderbird-nightly b/apps/thunderbird-nightly new file mode 100644 index 000000000..d21e722f3 --- /dev/null +++ b/apps/thunderbird-nightly @@ -0,0 +1,10 @@ +# thunderbird-nightly +Thunderbird is an mail client suitable for free distribution, using the XUL user interface language, with supports for different mail accounts, no matter of the used protocol like POP(s) or IMAP(s), has an integrated learning Spam filter, and offers easy organization of mails with tagging and virtual folders. Also, more features can be added by installing extensions. + Thunderbird also includes an integrated calendar for handling events, events invitations and tasks in multiple calendars. It supports local calendars, CalDAV and plain ics files on CardDAV and WebDAV. + + This is the Nightly build. + + This script provides both the official portable build with automatic updates and the AppImage. +# SCREENSHOTS: https://media.imgcdn.org/repo/2023/03/mozilla-thunderbird/Mozilla-Thunderbird-free-download.jpg +# SITES: https://www.thunderbird.net +# SOURCES: https://github.com/ivan-hc/Thunderbird-appimage \ No newline at end of file diff --git a/apps/thunderbird-nightly.md b/apps/thunderbird-nightly.md deleted file mode 100644 index 7ccb207c1..000000000 --- a/apps/thunderbird-nightly.md +++ /dev/null @@ -1,17 +0,0 @@ -# THUNDERBIRD-NIGHTLY - - Thunderbird is an mail client suitable for free distribution, using the XUL user interface language, with supports for different mail accounts, no matter of the used protocol like POP(s) or IMAP(s), has an integrated learning Spam filter, and offers easy organization of mails with tagging and virtual folders. Also, more features can be added by installing extensions. - Thunderbird also includes an integrated calendar for handling events, events invitations and tasks in multiple calendars. It supports local calendars, CalDAV and plain ics files on CardDAV and WebDAV. - - This is the Nightly build. - - This script provides both the official portable build with automatic updates and the AppImage. - - ![Screenshot](https://media.imgcdn.org/repo/2023/03/mozilla-thunderbird/Mozilla-Thunderbird-free-download.jpg) - - SITE: https://www.thunderbird.net - - APPIMAGE: https://github.com/ivan-hc/Thunderbird-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/thunderbird.md b/apps/thunderbird.md deleted file mode 100644 index 10e21a5bb..000000000 --- a/apps/thunderbird.md +++ /dev/null @@ -1,17 +0,0 @@ -# THUNDERBIRD - - Thunderbird is an mail client suitable for free distribution, using the XUL user interface language, with supports for different mail accounts, no matter of the used protocol like POP(s) or IMAP(s), has an integrated learning Spam filter, and offers easy organization of mails with tagging and virtual folders. Also, more features can be added by installing extensions. - Thunderbird also includes an integrated calendar for handling events, events invitations and tasks in multiple calendars. It supports local calendars, CalDAV and plain ics files on CardDAV and WebDAV. - - This is the Stable release. - - This script provides both the official portable build with automatic updates and the AppImage. - - ![Screenshot](https://media.imgcdn.org/repo/2023/03/mozilla-thunderbird/Mozilla-Thunderbird-free-download.jpg) - - SITE: https://www.thunderbird.net - - APPIMAGE: https://github.com/ivan-hc/Thunderbird-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ticker b/apps/ticker new file mode 100644 index 000000000..889dcd781 --- /dev/null +++ b/apps/ticker @@ -0,0 +1,3 @@ +# ticker +Terminal stock ticker with live updates and position tracking +# SITES: https://github.com/achannarasappa/ticker \ No newline at end of file diff --git a/apps/ticker.md b/apps/ticker.md deleted file mode 100644 index 780d137c8..000000000 --- a/apps/ticker.md +++ /dev/null @@ -1,8 +0,0 @@ -# TICKER - - Terminal stock ticker with live updates and position tracking - - SITE: https://github.com/achannarasappa/ticker - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ticktick b/apps/ticktick new file mode 100644 index 000000000..d413d77ff --- /dev/null +++ b/apps/ticktick @@ -0,0 +1,3 @@ +# ticktick +A To-Do List and Calendar to keep you organized +# SITES: https://ticktick.com \ No newline at end of file diff --git a/apps/ticktick.md b/apps/ticktick.md deleted file mode 100644 index 8d9522c28..000000000 --- a/apps/ticktick.md +++ /dev/null @@ -1,8 +0,0 @@ -# TICKTICK - - A To-Do List and Calendar to keep you organized - - SITE: https://ticktick.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/tidal-hifi b/apps/tidal-hifi new file mode 100644 index 000000000..fae22a0c2 --- /dev/null +++ b/apps/tidal-hifi @@ -0,0 +1,3 @@ +# tidal-hifi +The web version of listen.tidal.com running in electron with hifi support thanks to widevine. +# SITES: https://github.com/Mastermindzh/tidal-hifi \ No newline at end of file diff --git a/apps/tidal-hifi.md b/apps/tidal-hifi.md deleted file mode 100644 index c1125735b..000000000 --- a/apps/tidal-hifi.md +++ /dev/null @@ -1,8 +0,0 @@ -# TIDAL-HIFI - - The web version of listen.tidal.com running in electron with hifi support thanks to widevine. - - SITE: https://github.com/Mastermindzh/tidal-hifi - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/tidybit b/apps/tidybit new file mode 100644 index 000000000..a7874611e --- /dev/null +++ b/apps/tidybit @@ -0,0 +1,3 @@ +# tidybit +TidyBit is a simple handy tool that can organize messy collection of files and move them to a chosen folder. +# SITES: https://github.com/Veda-Swaroop/TidyBit \ No newline at end of file diff --git a/apps/tidybit.md b/apps/tidybit.md deleted file mode 100644 index b2558cc1c..000000000 --- a/apps/tidybit.md +++ /dev/null @@ -1,8 +0,0 @@ -# TIDYBIT - - TidyBit is a simple handy tool that can organize messy collection of files and move them to a chosen folder. - - SITE: https://github.com/Veda-Swaroop/TidyBit - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/tilde-podcast b/apps/tilde-podcast new file mode 100644 index 000000000..69b5db097 --- /dev/null +++ b/apps/tilde-podcast @@ -0,0 +1,3 @@ +# tilde-podcast +Podcast client to listen to all you favorite podcasts. +# SITES: https://github.com/paologiua/tilde \ No newline at end of file diff --git a/apps/tilde-podcast.md b/apps/tilde-podcast.md deleted file mode 100644 index b4eb0ab1f..000000000 --- a/apps/tilde-podcast.md +++ /dev/null @@ -1,8 +0,0 @@ -# TILDE-PODCAST - - Podcast client to listen to all you favorite podcasts. - - SITE: https://github.com/paologiua/tilde - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/tiled b/apps/tiled new file mode 100644 index 000000000..2ff3e3bd1 --- /dev/null +++ b/apps/tiled @@ -0,0 +1,3 @@ +# tiled +Tile map editor +# SITES: https://github.com/bjorn/tiled \ No newline at end of file diff --git a/apps/tiled.md b/apps/tiled.md deleted file mode 100644 index a48c8ee88..000000000 --- a/apps/tiled.md +++ /dev/null @@ -1,8 +0,0 @@ -# TILED - - Tile map editor - - SITE: https://github.com/bjorn/tiled - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/tilinggenerator b/apps/tilinggenerator new file mode 100644 index 000000000..ca2f318d9 --- /dev/null +++ b/apps/tilinggenerator @@ -0,0 +1,3 @@ +# tilinggenerator +Generator of regular and irregular tilings +# SITES: https://github.com/PJK136/TilingGenerator \ No newline at end of file diff --git a/apps/tilinggenerator.md b/apps/tilinggenerator.md deleted file mode 100644 index 07e10b2f6..000000000 --- a/apps/tilinggenerator.md +++ /dev/null @@ -1,8 +0,0 @@ -# TILINGGENERATOR - - Generator of regular and irregular tilings - - SITE: https://github.com/PJK136/TilingGenerator - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/timenaut b/apps/timenaut new file mode 100644 index 000000000..eaff558c8 --- /dev/null +++ b/apps/timenaut @@ -0,0 +1,3 @@ +# timenaut +Desktop time tracking application that does not invade your privacy +# SITES: https://timenaut.app/ \ No newline at end of file diff --git a/apps/timenaut.md b/apps/timenaut.md deleted file mode 100644 index 052f37ec6..000000000 --- a/apps/timenaut.md +++ /dev/null @@ -1,8 +0,0 @@ -# TIMENAUT - - Desktop time tracking application that does not invade your privacy - - SITE: https://timenaut.app/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/timeout b/apps/timeout new file mode 100644 index 000000000..4b3d56eb6 --- /dev/null +++ b/apps/timeout @@ -0,0 +1,4 @@ +# timeout + Run a command with a time limit. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/timeout.md b/apps/timeout.md deleted file mode 100644 index a63562cfa..000000000 --- a/apps/timeout.md +++ /dev/null @@ -1,8 +0,0 @@ -# TIMEOUT - - Run a command with a time limit. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/tipitaka-pali-reader b/apps/tipitaka-pali-reader new file mode 100644 index 000000000..98cf550a9 --- /dev/null +++ b/apps/tipitaka-pali-reader @@ -0,0 +1,3 @@ +# tipitaka-pali-reader +A Pali Reading app made in Flutter. +# SITES: https://github.com/bksubhuti/tipitaka-pali-reader \ No newline at end of file diff --git a/apps/tipitaka-pali-reader.md b/apps/tipitaka-pali-reader.md deleted file mode 100644 index 18d1b6a19..000000000 --- a/apps/tipitaka-pali-reader.md +++ /dev/null @@ -1,8 +0,0 @@ -# TIPITAKA-PALI-READER - - A Pali Reading app made in Flutter. - - SITE: https://github.com/bksubhuti/tipitaka-pali-reader - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/tixati b/apps/tixati new file mode 100644 index 000000000..332a21343 --- /dev/null +++ b/apps/tixati @@ -0,0 +1,3 @@ +# tixati +A New and Powerful P2P System 100 0.000000ree, Simple and Easy to Use Bittorrent Client. +# SITES: https://tixati.com \ No newline at end of file diff --git a/apps/tixati.md b/apps/tixati.md deleted file mode 100644 index cb24247fc..000000000 --- a/apps/tixati.md +++ /dev/null @@ -1,8 +0,0 @@ -# TIXATI - - A New and Powerful P2P System 100 0.000000ree, Simple and Easy to Use Bittorrent Client. - - SITE: https://tixati.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/tkmm b/apps/tkmm new file mode 100644 index 000000000..217bc65de --- /dev/null +++ b/apps/tkmm @@ -0,0 +1,3 @@ +# tkmm +TotK Mod Manager, a mod manager and merger for Tears of the Kingdom. +# SITES: https://github.com/TKMM-Team/Tkmm \ No newline at end of file diff --git a/apps/tkmm.md b/apps/tkmm.md deleted file mode 100644 index 19692a679..000000000 --- a/apps/tkmm.md +++ /dev/null @@ -1,8 +0,0 @@ -# TKMM - - TotK Mod Manager, a mod manager and merger for Tears of the Kingdom. - - SITE: https://github.com/TKMM-Team/Tkmm - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/tlock b/apps/tlock new file mode 100644 index 000000000..e81938ff0 --- /dev/null +++ b/apps/tlock @@ -0,0 +1,3 @@ +# tlock +Two-Factor Authentication Tokens Manager in Terminal +# SITES: https://github.com/eklairs/tlock \ No newline at end of file diff --git a/apps/tlock.md b/apps/tlock.md deleted file mode 100644 index 605225bf2..000000000 --- a/apps/tlock.md +++ /dev/null @@ -1,8 +0,0 @@ -# TLOCK - - Two-Factor Authentication Tokens Manager in Terminal - - SITE: https://github.com/eklairs/tlock - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/tlum b/apps/tlum new file mode 100644 index 000000000..e9ef0d173 --- /dev/null +++ b/apps/tlum @@ -0,0 +1,3 @@ +# tlum +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. +# SITES: https://github.com/lyskouski/app-language \ No newline at end of file diff --git a/apps/tlum.md b/apps/tlum.md deleted file mode 100644 index 149adc37d..000000000 --- a/apps/tlum.md +++ /dev/null @@ -1,8 +0,0 @@ -# TLUM - - 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. - - SITE: https://github.com/lyskouski/app-language - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/tmon b/apps/tmon new file mode 100644 index 000000000..b71d6ade3 --- /dev/null +++ b/apps/tmon @@ -0,0 +1,3 @@ +# tmon +Temperature Monitor, a simple CLI tool for monitoring/reporting CPU temperatures. +# SITES: https://github.com/gmagno/tmon \ No newline at end of file diff --git a/apps/tmon.md b/apps/tmon.md deleted file mode 100644 index 53605ffa1..000000000 --- a/apps/tmon.md +++ /dev/null @@ -1,7 +0,0 @@ -# TMON - - Temperature Monitor, a simple CLI tool for monitoring/reporting CPU temperatures. - - SITE: https://github.com/gmagno/tmon - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/tmux b/apps/tmux new file mode 100644 index 000000000..9f28b5748 --- /dev/null +++ b/apps/tmux @@ -0,0 +1,3 @@ +# tmux +Tmux AppImage build via Docker. +# SITES: https://github.com/nelsonenzo/tmux-appimage \ No newline at end of file diff --git a/apps/tmux.md b/apps/tmux.md deleted file mode 100644 index 31859eb98..000000000 --- a/apps/tmux.md +++ /dev/null @@ -1,8 +0,0 @@ -# TMUX - - Tmux AppImage build via Docker. - - SITE: https://github.com/nelsonenzo/tmux-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/tnt b/apps/tnt new file mode 100644 index 000000000..d04b098a8 --- /dev/null +++ b/apps/tnt @@ -0,0 +1,3 @@ +# tnt +TNT - computer-assisted translation tool. +# SITES: https://github.com/foolo/tnt \ No newline at end of file diff --git a/apps/tnt.md b/apps/tnt.md deleted file mode 100644 index 88a834678..000000000 --- a/apps/tnt.md +++ /dev/null @@ -1,7 +0,0 @@ -# TNT - - TNT - computer-assisted translation tool. - - SITE: https://github.com/foolo/tnt - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/tockler b/apps/tockler new file mode 100644 index 000000000..c3e4a5a7f --- /dev/null +++ b/apps/tockler @@ -0,0 +1,4 @@ +# tockler +An application that tracks your time by monitoring your active window title and idle time. +# SITES: https://tockler.io +# SOURCES: https://github.com/MayGo/tockler \ No newline at end of file diff --git a/apps/tockler.md b/apps/tockler.md deleted file mode 100644 index 00abff4f3..000000000 --- a/apps/tockler.md +++ /dev/null @@ -1,10 +0,0 @@ -# TOCKLER - - An application that tracks your time by monitoring your active window title and idle time. - - SITE: https://tockler.io - - SOURCE: https://github.com/MayGo/tockler - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/tod b/apps/tod new file mode 100644 index 000000000..ad369945a --- /dev/null +++ b/apps/tod @@ -0,0 +1,3 @@ +# tod +An unofficial Todoist command line client written in Rust +# SITES: https://github.com/alanvardy/tod \ No newline at end of file diff --git a/apps/tod.md b/apps/tod.md deleted file mode 100644 index d7868d3ac..000000000 --- a/apps/tod.md +++ /dev/null @@ -1,8 +0,0 @@ -# TOD - - An unofficial Todoist command line client written in Rust - - SITE: https://github.com/alanvardy/tod - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/todesktop b/apps/todesktop new file mode 100644 index 000000000..81ecc5b23 --- /dev/null +++ b/apps/todesktop @@ -0,0 +1,3 @@ +# todesktop +Take your web app codebase and transform it into a cross platform desktop app with native functionality. +# SITES: https://www.todesktop.com \ No newline at end of file diff --git a/apps/todesktop.md b/apps/todesktop.md deleted file mode 100644 index 8c8be2388..000000000 --- a/apps/todesktop.md +++ /dev/null @@ -1,8 +0,0 @@ -# TODESKTOP - - Take your web app codebase and transform it into a cross platform desktop app with native functionality. - - SITE: https://www.todesktop.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/todo-bash b/apps/todo-bash new file mode 100644 index 000000000..0b6b0cfa0 --- /dev/null +++ b/apps/todo-bash @@ -0,0 +1,3 @@ +# todo-bash +Todo list for the Bash command line. +# SITES: https://github.com/Lateralus138/todo-bash \ No newline at end of file diff --git a/apps/todo-bash.md b/apps/todo-bash.md deleted file mode 100644 index 956f9ac31..000000000 --- a/apps/todo-bash.md +++ /dev/null @@ -1,8 +0,0 @@ -# TODO-BASH - - Todo list for the Bash command line. - - SITE: https://github.com/Lateralus138/todo-bash - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/todoist b/apps/todoist new file mode 100644 index 000000000..e0aa434d7 --- /dev/null +++ b/apps/todoist @@ -0,0 +1,3 @@ +# todoist +The to-do list to organize work & life. +# SITES: https://todoist.com \ No newline at end of file diff --git a/apps/todoist.md b/apps/todoist.md deleted file mode 100644 index ecce7bf51..000000000 --- a/apps/todoist.md +++ /dev/null @@ -1,8 +0,0 @@ -# TODOIST - - The to-do list to organize work & life. - - SITE: https://todoist.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/todorant b/apps/todorant new file mode 100644 index 000000000..9cdf48c3c --- /dev/null +++ b/apps/todorant @@ -0,0 +1,3 @@ +# todorant +Todorant releases. +# SITES: https://github.com/backmeupplz/todorant-releases \ No newline at end of file diff --git a/apps/todorant.md b/apps/todorant.md deleted file mode 100644 index 4297fc18d..000000000 --- a/apps/todorant.md +++ /dev/null @@ -1,8 +0,0 @@ -# TODORANT - - Todorant releases. - - SITE: https://github.com/backmeupplz/todorant-releases - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/todorust b/apps/todorust new file mode 100644 index 000000000..55eff5382 --- /dev/null +++ b/apps/todorust @@ -0,0 +1,3 @@ +# todorust +Simple ToDoList made in rust +# SITES: https://github.com/gustavo-tomas/ToDoRust \ No newline at end of file diff --git a/apps/todorust.md b/apps/todorust.md deleted file mode 100644 index a30f4be3a..000000000 --- a/apps/todorust.md +++ /dev/null @@ -1,8 +0,0 @@ -# TODORUST - - Simple ToDoList made in rust - - SITE: https://github.com/gustavo-tomas/ToDoRust - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/toerings b/apps/toerings new file mode 100644 index 000000000..4d3e1357a --- /dev/null +++ b/apps/toerings @@ -0,0 +1,3 @@ +# toerings +A clone of Conky Seamod using Tauri +# SITES: https://github.com/acarl005/toerings \ No newline at end of file diff --git a/apps/toerings.md b/apps/toerings.md deleted file mode 100644 index 6400b3cc8..000000000 --- a/apps/toerings.md +++ /dev/null @@ -1,8 +0,0 @@ -# TOERINGS - - A clone of Conky Seamod using Tauri - - SITE: https://github.com/acarl005/toerings - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/toipe b/apps/toipe new file mode 100644 index 000000000..579d8dde7 --- /dev/null +++ b/apps/toipe @@ -0,0 +1,3 @@ +# toipe +Yet another typing test, but crab flavoured. +# SITES: https://github.com/Samyak2/toipe \ No newline at end of file diff --git a/apps/toipe.md b/apps/toipe.md deleted file mode 100644 index 35678886b..000000000 --- a/apps/toipe.md +++ /dev/null @@ -1,8 +0,0 @@ -# TOIPE - - Yet another typing test, but crab flavoured. - - SITE: https://github.com/Samyak2/toipe - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/tokodon b/apps/tokodon new file mode 100644 index 000000000..1810d6067 --- /dev/null +++ b/apps/tokodon @@ -0,0 +1,3 @@ +# tokodon +Unofficial, a modern client for Mastodon and other decentralized servers that implement its API (such as Pixelfed). +# SITES: https://github.com/pkgforge-dev/Tokodon-AppImage \ No newline at end of file diff --git a/apps/tokodon.md b/apps/tokodon.md deleted file mode 100644 index ad9226f72..000000000 --- a/apps/tokodon.md +++ /dev/null @@ -1,8 +0,0 @@ -# TOKODON - - Unofficial, a modern client for Mastodon and other decentralized servers that implement its API (such as Pixelfed). - - SITE: https://github.com/pkgforge-dev/Tokodon-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/tomatox b/apps/tomatox new file mode 100644 index 000000000..d1d84bed5 --- /dev/null +++ b/apps/tomatox @@ -0,0 +1,3 @@ +# tomatox +基于Electron、React开发的全网在线免费VIP视频解析播放器,美剧、韩剧、日剧全资源 +# SITES: https://github.com/yanjiaxuan/TOMATOX \ No newline at end of file diff --git a/apps/tomatox.md b/apps/tomatox.md deleted file mode 100644 index 81631bd02..000000000 --- a/apps/tomatox.md +++ /dev/null @@ -1,8 +0,0 @@ -# TOMATOX - - 基于Electron、React开发的全网在线免费VIP视频解析播放器,美剧、韩剧、日剧全资源 - - SITE: https://github.com/yanjiaxuan/TOMATOX - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/tonuino-toolbox b/apps/tonuino-toolbox new file mode 100644 index 000000000..2d62d4952 --- /dev/null +++ b/apps/tonuino-toolbox @@ -0,0 +1,3 @@ +# tonuino-toolbox +SD card manager for your Tonuino +# SITES: https://github.com/raph-ael/tonuino-toolbox \ No newline at end of file diff --git a/apps/tonuino-toolbox.md b/apps/tonuino-toolbox.md deleted file mode 100644 index 9be25f9a8..000000000 --- a/apps/tonuino-toolbox.md +++ /dev/null @@ -1,8 +0,0 @@ -# TONUINO-TOOLBOX - - SD card manager for your Tonuino - - SITE: https://github.com/raph-ael/tonuino-toolbox - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/toolblex b/apps/toolblex new file mode 100644 index 000000000..289361c54 --- /dev/null +++ b/apps/toolblex @@ -0,0 +1,4 @@ +# toolblex + Bluetooth Low Energy (and Classic) device scanner and analyzer. +# SITES: https://github.com/emericg/toolBLEx +# SOURCES: https://github.com/emericg/toolBLEx \ No newline at end of file diff --git a/apps/toolblex.md b/apps/toolblex.md deleted file mode 100644 index d4ea55e7f..000000000 --- a/apps/toolblex.md +++ /dev/null @@ -1,8 +0,0 @@ -# TOOLBLEX - - Bluetooth Low Energy (and Classic) device scanner and analyzer. - - SITE: https://github.com/emericg/toolBLEx - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/top b/apps/top new file mode 100644 index 000000000..721d84264 --- /dev/null +++ b/apps/top @@ -0,0 +1,3 @@ +# top +Display Linux processes. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/top.md b/apps/top.md deleted file mode 100644 index 9f8856b5c..000000000 --- a/apps/top.md +++ /dev/null @@ -1,8 +0,0 @@ -# TOP - - Display Linux processes. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/topgrade b/apps/topgrade new file mode 100644 index 000000000..ff06c3c0a --- /dev/null +++ b/apps/topgrade @@ -0,0 +1,7 @@ +# 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. +# SCREENSHOTS: https://github.com/topgrade-rs/topgrade/blob/main/doc/topgrade_demo.gif +# SITES: https://topgrade-rs.github.io +# SOURCES: https://github.com/topgrade-rs/topgrade \ No newline at end of file diff --git a/apps/topgrade.md b/apps/topgrade.md deleted file mode 100644 index c8529bdcc..000000000 --- a/apps/topgrade.md +++ /dev/null @@ -1,14 +0,0 @@ -# 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. - - ![GIF](https://github.com/topgrade-rs/topgrade/blob/main/doc/topgrade_demo.gif) - - SITE: https://topgrade-rs.github.io - - SOURCE: https://github.com/topgrade-rs/topgrade - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/tor-browser b/apps/tor-browser new file mode 100644 index 000000000..9def54933 --- /dev/null +++ b/apps/tor-browser @@ -0,0 +1,5 @@ +# tor-browser +Tor Browser is a popular privacy-oriented web browser based on the last Firefox-ESR release. + + Tor Browser has access to sites your home network may have blocked. +# SITES: https://www.torproject.org \ No newline at end of file diff --git a/apps/tor-browser-alpha b/apps/tor-browser-alpha new file mode 100644 index 000000000..fd50c4810 --- /dev/null +++ b/apps/tor-browser-alpha @@ -0,0 +1,7 @@ +# tor-browser-alpha +Tor Browser is a popular privacy-oriented web browser based on the last Firefox-ESR release. + + Tor Browser has access to sites your home network may have blocked. + + This is the Alpha build. +# SITES: https://www.torproject.org \ No newline at end of file diff --git a/apps/tor-browser-alpha.md b/apps/tor-browser-alpha.md deleted file mode 100644 index c2f2b8255..000000000 --- a/apps/tor-browser-alpha.md +++ /dev/null @@ -1,12 +0,0 @@ -# TOR-BROWSER-ALPHA - - Tor Browser is a popular privacy-oriented web browser based on the last Firefox-ESR release. - - Tor Browser has access to sites your home network may have blocked. - - This is the Alpha build. - - SITE: https://www.torproject.org - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/tor-browser.md b/apps/tor-browser.md deleted file mode 100644 index d315c1460..000000000 --- a/apps/tor-browser.md +++ /dev/null @@ -1,10 +0,0 @@ -# TOR-BROWSER - - Tor Browser is a popular privacy-oriented web browser based on the last Firefox-ESR release. - - Tor Browser has access to sites your home network may have blocked. - - SITE: https://www.torproject.org - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/torcs b/apps/torcs new file mode 100644 index 000000000..30c0cef99 --- /dev/null +++ b/apps/torcs @@ -0,0 +1,4 @@ +# torcs +The Open Racing Car Simulator. +# SCREENSHOTS: https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Torcs-20081217104851.jpg/1280px-Torcs-20081217104851.jpg +# SITES: https://github.com/ivan-hc/Torcs-appimage \ No newline at end of file diff --git a/apps/torcs.md b/apps/torcs.md deleted file mode 100644 index ad43330c5..000000000 --- a/apps/torcs.md +++ /dev/null @@ -1,10 +0,0 @@ -# TORCS - - The Open Racing Car Simulator. - - ![Screenshot](https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Torcs-20081217104851.jpg/1280px-Torcs-20081217104851.jpg) - - SITE: https://github.com/ivan-hc/Torcs-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/torrents_digger b/apps/torrents_digger new file mode 100644 index 000000000..415c7d56c --- /dev/null +++ b/apps/torrents_digger @@ -0,0 +1,3 @@ +# torrents_digger +Torrents Digger searches already available torrents from internet. +# SITES: https://gitlab.com/ForTheCommunity/torrentsdigger \ No newline at end of file diff --git a/apps/torrents_digger.md b/apps/torrents_digger.md deleted file mode 100644 index 3d6fd8a9e..000000000 --- a/apps/torrents_digger.md +++ /dev/null @@ -1,8 +0,0 @@ -# TORRENTS_DIGGER - - Torrents Digger searches already available torrents from internet. - - SITE: https://gitlab.com/ForTheCommunity/torrentsdigger - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/torrenttools b/apps/torrenttools new file mode 100644 index 000000000..5b08ee268 --- /dev/null +++ b/apps/torrenttools @@ -0,0 +1,3 @@ +# torrenttools +A commandline tool for creating, inspecting and modifying bittorrent metafiles. +# SITES: https://github.com/fbdtemme/torrenttools \ No newline at end of file diff --git a/apps/torrenttools.md b/apps/torrenttools.md deleted file mode 100644 index c1c30b891..000000000 --- a/apps/torrenttools.md +++ /dev/null @@ -1,8 +0,0 @@ -# TORRENTTOOLS - - A commandline tool for creating, inspecting and modifying bittorrent metafiles. - - SITE: https://github.com/fbdtemme/torrenttools - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/toru b/apps/toru new file mode 100644 index 000000000..44a8f97e1 --- /dev/null +++ b/apps/toru @@ -0,0 +1,3 @@ +# toru +Bittorrent streaming CLI tool. Stream anime torrents, real-time with no waiting for downloads. +# SITES: https://github.com/sweetbbak/toru \ No newline at end of file diff --git a/apps/toru.md b/apps/toru.md deleted file mode 100644 index baae37654..000000000 --- a/apps/toru.md +++ /dev/null @@ -1,8 +0,0 @@ -# TORU - - Bittorrent streaming CLI tool. Stream anime torrents, real-time with no waiting for downloads. - - SITE: https://github.com/sweetbbak/toru - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/torzu b/apps/torzu new file mode 100644 index 000000000..55cf0c0d6 --- /dev/null +++ b/apps/torzu @@ -0,0 +1,3 @@ +# torzu +Unofficial AppImage of Torzu, with optimized builds for modern cpus. +# SITES: https://github.com/pkgforge-dev/Torzu-AppImage \ No newline at end of file diff --git a/apps/torzu.md b/apps/torzu.md deleted file mode 100644 index 320f44fd8..000000000 --- a/apps/torzu.md +++ /dev/null @@ -1,8 +0,0 @@ -# TORZU - - Unofficial AppImage of Torzu, with optimized builds for modern cpus. - - SITE: https://github.com/pkgforge-dev/Torzu-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/touch b/apps/touch new file mode 100644 index 000000000..418b501c9 --- /dev/null +++ b/apps/touch @@ -0,0 +1,3 @@ +# touch +Change file timestamps. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/touch.md b/apps/touch.md deleted file mode 100644 index a16eb87d3..000000000 --- a/apps/touch.md +++ /dev/null @@ -1,8 +0,0 @@ -# TOUCH - - Change file timestamps. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/touchhle b/apps/touchhle new file mode 100644 index 000000000..e333ab6a9 --- /dev/null +++ b/apps/touchhle @@ -0,0 +1,3 @@ +# touchhle +Unofficial, High-level emulator for iPhone OS apps. +# SITES: https://github.com/pkgforge-dev/TouchHLE-AppImage \ No newline at end of file diff --git a/apps/touchhle.md b/apps/touchhle.md deleted file mode 100644 index 9eb4fd6d5..000000000 --- a/apps/touchhle.md +++ /dev/null @@ -1,8 +0,0 @@ -# TOUCHHLE - - Unofficial, High-level emulator for iPhone OS apps. - - SITE: https://github.com/pkgforge-dev/TouchHLE-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/tput b/apps/tput new file mode 100644 index 000000000..71e261193 --- /dev/null +++ b/apps/tput @@ -0,0 +1,3 @@ +# tput +tput - initialize a terminal, exercise its capabilities, or query terminfo database. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/tput.md b/apps/tput.md deleted file mode 100644 index 53fd52400..000000000 --- a/apps/tput.md +++ /dev/null @@ -1,8 +0,0 @@ -# TPUT - - tput - initialize a terminal, exercise its capabilities, or query terminfo database. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/tr b/apps/tr new file mode 100644 index 000000000..3c7ed0b8e --- /dev/null +++ b/apps/tr @@ -0,0 +1,3 @@ +# tr +Translate or delete characters. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/tr.md b/apps/tr.md deleted file mode 100644 index 0ec100214..000000000 --- a/apps/tr.md +++ /dev/null @@ -1,8 +0,0 @@ -# TR - - Translate or delete characters. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/trackaudio b/apps/trackaudio new file mode 100644 index 000000000..421dc7f83 --- /dev/null +++ b/apps/trackaudio @@ -0,0 +1,3 @@ +# trackaudio +A next generation Audio-For-VATSIM ATC Client for macOS, Linux and Windows +# SITES: https://github.com/pierr3/TrackAudio \ No newline at end of file diff --git a/apps/trackaudio.md b/apps/trackaudio.md deleted file mode 100644 index 8880e9393..000000000 --- a/apps/trackaudio.md +++ /dev/null @@ -1,8 +0,0 @@ -# TRACKAUDIO - - A next generation Audio-For-VATSIM ATC Client for macOS, Linux and Windows - - SITE: https://github.com/pierr3/TrackAudio - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/trans b/apps/trans new file mode 100644 index 000000000..8721797f8 --- /dev/null +++ b/apps/trans @@ -0,0 +1,3 @@ +# trans +Command-line translator using Google Translate, Bing Translator, Yandex.Translate, etc. +# SITES: https://github.com/soimort/translate-shell \ No newline at end of file diff --git a/apps/trans.md b/apps/trans.md deleted file mode 100644 index 75f97cb37..000000000 --- a/apps/trans.md +++ /dev/null @@ -1,8 +0,0 @@ -# TRANS - - Command-line translator using Google Translate, Bing Translator, Yandex.Translate, etc. - - SITE: https://github.com/soimort/translate-shell - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/transfernow b/apps/transfernow new file mode 100644 index 000000000..f3a0567e7 --- /dev/null +++ b/apps/transfernow @@ -0,0 +1,3 @@ +# transfernow +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. +# SITES: https://www.transfernow.net \ No newline at end of file diff --git a/apps/transfernow.md b/apps/transfernow.md deleted file mode 100644 index 1365a9241..000000000 --- a/apps/transfernow.md +++ /dev/null @@ -1,8 +0,0 @@ -# TRANSFERNOW - - 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. - - SITE: https://www.transfernow.net - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/transformer b/apps/transformer new file mode 100644 index 000000000..fee3d162e --- /dev/null +++ b/apps/transformer @@ -0,0 +1,3 @@ +# transformer +A command-line utility for splitting large files into chunks/pieces and merging them back together. +# SITES: https://gitlab.com/ForTheCommunity/Transformer \ No newline at end of file diff --git a/apps/transformer.md b/apps/transformer.md deleted file mode 100644 index 7d5b6e4f0..000000000 --- a/apps/transformer.md +++ /dev/null @@ -1,8 +0,0 @@ -# TRANSFORMER - - A command-line utility for splitting large files into chunks/pieces and merging them back together. - - SITE: https://gitlab.com/ForTheCommunity/Transformer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/translatium b/apps/translatium new file mode 100644 index 000000000..18d1f5ded --- /dev/null +++ b/apps/translatium @@ -0,0 +1,3 @@ +# translatium +Translate Any Languages like a Pro +# SITES: https://github.com/atomery/translatium \ No newline at end of file diff --git a/apps/translatium.md b/apps/translatium.md deleted file mode 100644 index a33ad485c..000000000 --- a/apps/translatium.md +++ /dev/null @@ -1,8 +0,0 @@ -# TRANSLATIUM - - Translate Any Languages like a Pro - - SITE: https://github.com/atomery/translatium - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/transmission-gtk b/apps/transmission-gtk new file mode 100644 index 000000000..9a7d7ccba --- /dev/null +++ b/apps/transmission-gtk @@ -0,0 +1,4 @@ +# transmission-gtk +Fast, easy, and free BitTorrent client (GTK+ GUI). +# SCREENSHOTS: https://upload.wikimedia.org/wikipedia/commons/2/2d/Transmission_2.94_on_Fedora_32.png +# SITES: https://github.com/ivan-hc/Transmission-gtk-appimage \ No newline at end of file diff --git a/apps/transmission-gtk.md b/apps/transmission-gtk.md deleted file mode 100644 index 1da3aa01e..000000000 --- a/apps/transmission-gtk.md +++ /dev/null @@ -1,10 +0,0 @@ -# TRANSMISSION-GTK - - Fast, easy, and free BitTorrent client (GTK+ GUI). - - ![Screenshot](https://upload.wikimedia.org/wikipedia/commons/2/2d/Transmission_2.94_on_Fedora_32.png) - - SITE: https://github.com/ivan-hc/Transmission-gtk-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/transmission-qt b/apps/transmission-qt new file mode 100644 index 000000000..32cc84f74 --- /dev/null +++ b/apps/transmission-qt @@ -0,0 +1,3 @@ +# transmission-qt +Unofficial, Fast, easy, and free BitTorrent client, Qt GUI. +# SITES: https://github.com/pkgforge-dev/transmission-qt-AppImage \ No newline at end of file diff --git a/apps/transmission-qt.md b/apps/transmission-qt.md deleted file mode 100644 index 0bacf434b..000000000 --- a/apps/transmission-qt.md +++ /dev/null @@ -1,8 +0,0 @@ -# TRANSMISSION-QT - - Unofficial, Fast, easy, and free BitTorrent client, Qt GUI. - - SITE: https://github.com/pkgforge-dev/transmission-qt-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/transmissionic b/apps/transmissionic new file mode 100644 index 000000000..a80e4b90e --- /dev/null +++ b/apps/transmissionic @@ -0,0 +1,3 @@ +# transmissionic +Remote for Transmission Daemon. +# SITES: https://github.com/6c65726f79/Transmissionic \ No newline at end of file diff --git a/apps/transmissionic.md b/apps/transmissionic.md deleted file mode 100644 index cc3f336bb..000000000 --- a/apps/transmissionic.md +++ /dev/null @@ -1,8 +0,0 @@ -# TRANSMISSIONIC - - Remote for Transmission Daemon. - - SITE: https://github.com/6c65726f79/Transmissionic - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/trelby b/apps/trelby new file mode 100644 index 000000000..5f80ceb4a --- /dev/null +++ b/apps/trelby @@ -0,0 +1,3 @@ +# trelby +Unofficial, Trelby is simple, fast and elegantly laid out to make screenwriting simple. +# SITES: https://github.com/pkgforge-dev/Trelby-AppImage \ No newline at end of file diff --git a/apps/trelby.md b/apps/trelby.md deleted file mode 100644 index e0cbafb44..000000000 --- a/apps/trelby.md +++ /dev/null @@ -1,8 +0,0 @@ -# TRELBY - - Unofficial, Trelby is simple, fast and elegantly laid out to make screenwriting simple. - - SITE: https://github.com/pkgforge-dev/Trelby-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/trenchbroom b/apps/trenchbroom new file mode 100644 index 000000000..c03e10f5a --- /dev/null +++ b/apps/trenchbroom @@ -0,0 +1,3 @@ +# trenchbroom +TrenchBroom is a modern cross-platform level editor for Quake-engine based games. +# SITES: https://github.com/kduske/TrenchBroom \ No newline at end of file diff --git a/apps/trenchbroom.md b/apps/trenchbroom.md deleted file mode 100644 index 20a8810db..000000000 --- a/apps/trenchbroom.md +++ /dev/null @@ -1,8 +0,0 @@ -# TRENCHBROOM - - TrenchBroom is a modern cross-platform level editor for Quake-engine based games. - - SITE: https://github.com/kduske/TrenchBroom - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/trezor-suite b/apps/trezor-suite new file mode 100644 index 000000000..49fb95e26 --- /dev/null +++ b/apps/trezor-suite @@ -0,0 +1,3 @@ +# trezor-suite +Trezor Suite desktop application +# SITES: https://github.com/trezor/trezor-suite \ No newline at end of file diff --git a/apps/trezor-suite.md b/apps/trezor-suite.md deleted file mode 100644 index 4dd1448d3..000000000 --- a/apps/trezor-suite.md +++ /dev/null @@ -1,8 +0,0 @@ -# TREZOR-SUITE - - Trezor Suite desktop application - - SITE: https://github.com/trezor/trezor-suite - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/trgui-ng b/apps/trgui-ng new file mode 100644 index 000000000..0fc42e33b --- /dev/null +++ b/apps/trgui-ng @@ -0,0 +1,3 @@ +# trgui-ng +Remote GUI for Transmission torrent daemon +# SITES: https://github.com/openscopeproject/TrguiNG \ No newline at end of file diff --git a/apps/trgui-ng.md b/apps/trgui-ng.md deleted file mode 100644 index 936467603..000000000 --- a/apps/trgui-ng.md +++ /dev/null @@ -1,8 +0,0 @@ -# TRGUI-NG - - Remote GUI for Transmission torrent daemon - - SITE: https://github.com/openscopeproject/TrguiNG - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/triagem-touch b/apps/triagem-touch new file mode 100644 index 000000000..4b505f1c4 --- /dev/null +++ b/apps/triagem-touch @@ -0,0 +1,3 @@ +# triagem-touch +Novo SGA triage client +# SITES: https://github.com/novosga/triagem-touch \ No newline at end of file diff --git a/apps/triagem-touch.md b/apps/triagem-touch.md deleted file mode 100644 index 1e14e5b83..000000000 --- a/apps/triagem-touch.md +++ /dev/null @@ -1,8 +0,0 @@ -# TRIAGEM-TOUCH - - Novo SGA triage client - - SITE: https://github.com/novosga/triagem-touch - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/trilium b/apps/trilium new file mode 100644 index 000000000..6f59c2458 --- /dev/null +++ b/apps/trilium @@ -0,0 +1,3 @@ +# trilium +Build your personal knowledge base with Trilium Notes +# SITES: https://github.com/zadam/trilium \ No newline at end of file diff --git a/apps/trilium.md b/apps/trilium.md deleted file mode 100644 index 4fed57bea..000000000 --- a/apps/trilium.md +++ /dev/null @@ -1,8 +0,0 @@ -# TRILIUM - - Build your personal knowledge base with Trilium Notes - - SITE: https://github.com/TriliumNext/Trilium - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/trinity-desktop b/apps/trinity-desktop new file mode 100644 index 000000000..e5f78a578 --- /dev/null +++ b/apps/trinity-desktop @@ -0,0 +1,3 @@ +# trinity-desktop +Desktop wallet for IOTA +# SITES: https://github.com/iotaledger/trinity-wallet \ No newline at end of file diff --git a/apps/trinity-desktop.md b/apps/trinity-desktop.md deleted file mode 100644 index 617f4b5bb..000000000 --- a/apps/trinity-desktop.md +++ /dev/null @@ -1,8 +0,0 @@ -# TRINITY-DESKTOP - - Desktop wallet for IOTA - - SITE: https://github.com/iotaledger/trinity-wallet - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/tropy b/apps/tropy new file mode 100644 index 000000000..65fef5dcb --- /dev/null +++ b/apps/tropy @@ -0,0 +1,3 @@ +# tropy +Research photo management. +# SITES: https://github.com/tropy/tropy \ No newline at end of file diff --git a/apps/tropy.md b/apps/tropy.md deleted file mode 100644 index f56e9a970..000000000 --- a/apps/tropy.md +++ /dev/null @@ -1,8 +0,0 @@ -# TROPY - - Research photo management. - - SITE: https://github.com/tropy/tropy - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/true b/apps/true new file mode 100644 index 000000000..972f4da57 --- /dev/null +++ b/apps/true @@ -0,0 +1,4 @@ +# true + Do nothing, successfully. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/true.md b/apps/true.md deleted file mode 100644 index 3e8ce5992..000000000 --- a/apps/true.md +++ /dev/null @@ -1,8 +0,0 @@ -# TRUE - - Do nothing, successfully. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/truncate b/apps/truncate new file mode 100644 index 000000000..61d7e0adb --- /dev/null +++ b/apps/truncate @@ -0,0 +1,4 @@ +# truncate + Shrink or extend the size of a file to the specified. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/truncate.md b/apps/truncate.md deleted file mode 100644 index 06f725778..000000000 --- a/apps/truncate.md +++ /dev/null @@ -1,8 +0,0 @@ -# TRUNCATE - - Shrink or extend the size of a file to the specified. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/tsort b/apps/tsort new file mode 100644 index 000000000..ab58034bf --- /dev/null +++ b/apps/tsort @@ -0,0 +1,4 @@ +# tsort + Perform a topological sort. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/tsort.md b/apps/tsort.md deleted file mode 100644 index b5050bd8d..000000000 --- a/apps/tsort.md +++ /dev/null @@ -1,8 +0,0 @@ -# TSORT - - Perform a topological sort. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/tssh b/apps/tssh new file mode 100644 index 000000000..5d3df4eba --- /dev/null +++ b/apps/tssh @@ -0,0 +1,3 @@ +# tssh +tssh ( tssh ) is an alternative to ssh client, offers additional useful features, such as login prompt, trzsz ( trz / tsz ), batch login, remember password, zmodem ( rz / sz ), etc. +# SITES: https://github.com/trzsz/trzsz-ssh \ No newline at end of file diff --git a/apps/tssh.md b/apps/tssh.md deleted file mode 100644 index 11abac5f6..000000000 --- a/apps/tssh.md +++ /dev/null @@ -1,8 +0,0 @@ -# TSSH - - tssh ( tssh ) is an alternative to ssh client, offers additional useful features, such as login prompt, trzsz ( trz / tsz ), batch login, remember password, zmodem ( rz / sz ), etc. - - SITE: https://github.com/trzsz/trzsz-ssh - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/tt b/apps/tt new file mode 100644 index 000000000..272028f5e --- /dev/null +++ b/apps/tt @@ -0,0 +1,3 @@ +# tt +A simple Time Tracker. It aims to stay basic and intuitive, with a focus on keyboard usage. +# SITES: https://github.com/pm98zz-c/tT \ No newline at end of file diff --git a/apps/tt.md b/apps/tt.md deleted file mode 100644 index bba51595a..000000000 --- a/apps/tt.md +++ /dev/null @@ -1,7 +0,0 @@ -# TT - - A simple Time Tracker. It aims to stay basic and intuitive, with a focus on keyboard usage. - - SITE: https://github.com/pm98zz-c/tT - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/tts-now b/apps/tts-now new file mode 100644 index 000000000..ac35e5594 --- /dev/null +++ b/apps/tts-now @@ -0,0 +1,4 @@ +# tts-now +跨平台基于云平台(阿里云、讯飞等)语音合成 API 的文字转语音助手。支持单文本快速合成和批量合成。 +# SITES: https://tts.yycc.dev +# SOURCES: https://github.com/funnyzak/tts-now \ No newline at end of file diff --git a/apps/tts-now.md b/apps/tts-now.md deleted file mode 100644 index aee58cb12..000000000 --- a/apps/tts-now.md +++ /dev/null @@ -1,10 +0,0 @@ -# TTS-NOW - - 跨平台基于云平台(阿里云、讯飞等)语音合成 API 的文字转语音助手。支持单文本快速合成和批量合成。 - - SITE: https://tts.yycc.dev - - SOURCE: https://github.com/funnyzak/tts-now - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ttth b/apps/ttth new file mode 100644 index 000000000..9bdde3430 --- /dev/null +++ b/apps/ttth @@ -0,0 +1,3 @@ +# ttth +ttth (talk to the hand) is an electron based desktop app for online services +# SITES: https://github.com/yafp/ttth \ No newline at end of file diff --git a/apps/ttth.md b/apps/ttth.md deleted file mode 100644 index f49c7c602..000000000 --- a/apps/ttth.md +++ /dev/null @@ -1,8 +0,0 @@ -# TTTH - - ttth (talk to the hand) is an electron based desktop app for online services - - SITE: https://github.com/yafp/ttth - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/tty b/apps/tty new file mode 100644 index 000000000..bbec40c05 --- /dev/null +++ b/apps/tty @@ -0,0 +1,3 @@ +# tty +Print the file name of the terminal connected to standard. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/tty.md b/apps/tty.md deleted file mode 100644 index cc26ec4ec..000000000 --- a/apps/tty.md +++ /dev/null @@ -1,8 +0,0 @@ -# TTY - - Print the file name of the terminal connected to standard. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/ttyper b/apps/ttyper new file mode 100644 index 000000000..7ee2805c5 --- /dev/null +++ b/apps/ttyper @@ -0,0 +1,3 @@ +# ttyper +Terminal-based typing test. +# SITES: https://github.com/max-niederman/ttyper \ No newline at end of file diff --git a/apps/ttyper.md b/apps/ttyper.md deleted file mode 100644 index 63af0d8c4..000000000 --- a/apps/ttyper.md +++ /dev/null @@ -1,8 +0,0 @@ -# TTYPER - - Terminal-based typing test. - - SITE: https://github.com/max-niederman/ttyper - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/tumblr-downloader-gui b/apps/tumblr-downloader-gui new file mode 100644 index 000000000..4a1db1260 --- /dev/null +++ b/apps/tumblr-downloader-gui @@ -0,0 +1,3 @@ +# tumblr-downloader-gui +Download Tumblr posts that you liked +# SITES: https://github.com/neuro-sys/tumblr-likes-downloader \ No newline at end of file diff --git a/apps/tumblr-downloader-gui.md b/apps/tumblr-downloader-gui.md deleted file mode 100644 index aa6d01176..000000000 --- a/apps/tumblr-downloader-gui.md +++ /dev/null @@ -1,8 +0,0 @@ -# TUMBLR-DOWNLOADER-GUI - - Download Tumblr posts that you liked - - SITE: https://github.com/neuro-sys/tumblr-likes-downloader - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/tumblr-scraper b/apps/tumblr-scraper new file mode 100644 index 000000000..666e8b0f3 --- /dev/null +++ b/apps/tumblr-scraper @@ -0,0 +1,3 @@ +# tumblr-scraper +a utility to scrape a Tumblr profile for user uploadede posts +# SITES: https://github.com/lluisrojass/tumblr-scraper \ No newline at end of file diff --git a/apps/tumblr-scraper.md b/apps/tumblr-scraper.md deleted file mode 100644 index d2a5082d6..000000000 --- a/apps/tumblr-scraper.md +++ /dev/null @@ -1,8 +0,0 @@ -# TUMBLR-SCRAPER - - a utility to scrape a Tumblr profile for user uploadede posts - - SITE: https://github.com/lluisrojass/tumblr-scraper - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/tunepack b/apps/tunepack new file mode 100644 index 000000000..09cabb3b0 --- /dev/null +++ b/apps/tunepack @@ -0,0 +1,3 @@ +# tunepack +Tunepack is a free and open source desktop app for finding and downloading high quality audio files. It can also burn cds or transfer to USB disks.It's the perfect tool for DJs or other music professionals. +# SITES: https://github.com/tunepack/tunepack-desktop \ No newline at end of file diff --git a/apps/tunepack.md b/apps/tunepack.md deleted file mode 100644 index da5a8087c..000000000 --- a/apps/tunepack.md +++ /dev/null @@ -1,8 +0,0 @@ -# TUNEPACK - - Tunepack is a free and open source desktop app for finding and downloading high quality audio files. It can also burn cds or transfer to USB disks.It's the perfect tool for DJs or other music professionals. - - SITE: https://github.com/tunepack/tunepack-desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/tura b/apps/tura new file mode 100644 index 000000000..0e6a10811 --- /dev/null +++ b/apps/tura @@ -0,0 +1,4 @@ +# tura + Tura is an open-source, local-first AI coding agent that works with existing AI subscriptions and coding tools. +# SITES: https://github.com/tura-ai/tura +# SOURCES: https://github.com/tura-ai/tura \ No newline at end of file diff --git a/apps/tura.md b/apps/tura.md deleted file mode 100644 index aa179f386..000000000 --- a/apps/tura.md +++ /dev/null @@ -1,8 +0,0 @@ -# TURA - - Tura is an open-source, local-first AI coding agent that works with existing AI subscriptions and coding tools. - - SITE: https://github.com/tura-ai/tura - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/turbowarp b/apps/turbowarp new file mode 100644 index 000000000..2d0ad7189 --- /dev/null +++ b/apps/turbowarp @@ -0,0 +1,3 @@ +# turbowarp +TurboWarp is a Scratch mod with a compiler to run projects faster, dark +# SITES: https://github.com/TurboWarp/desktop \ No newline at end of file diff --git a/apps/turbowarp.md b/apps/turbowarp.md deleted file mode 100644 index a38086e0f..000000000 --- a/apps/turbowarp.md +++ /dev/null @@ -1,8 +0,0 @@ -# TURBOWARP - - TurboWarp is a Scratch mod with a compiler to run projects faster, dark - - SITE: https://github.com/TurboWarp/desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/tusk b/apps/tusk new file mode 100644 index 000000000..d84424434 --- /dev/null +++ b/apps/tusk @@ -0,0 +1,3 @@ +# tusk +Evernote desktop app +# SITES: https://github.com/klauscfhq/tusk \ No newline at end of file diff --git a/apps/tusk.md b/apps/tusk.md deleted file mode 100644 index a3e097e4f..000000000 --- a/apps/tusk.md +++ /dev/null @@ -1,8 +0,0 @@ -# TUSK - - Evernote desktop app - - SITE: https://github.com/klauscfhq/tusk - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/tutanota b/apps/tutanota new file mode 100644 index 000000000..3c00c3515 --- /dev/null +++ b/apps/tutanota @@ -0,0 +1,6 @@ +# tutanota +Tutanota 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. + + The world's most secure email service, easy to use and private by design. Sign up for encrypted email now. +# SITES: https://tutanota.com +# SOURCES: https://github.com/tutao/tutanota \ No newline at end of file diff --git a/apps/tutanota-enhanced b/apps/tutanota-enhanced new file mode 100644 index 000000000..618c008d6 --- /dev/null +++ b/apps/tutanota-enhanced @@ -0,0 +1,3 @@ +# tutanota-enhanced +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. +# SITES: https://github.com/pkgforge-dev/Tutanota-Desktop-AppImage \ No newline at end of file diff --git a/apps/tutanota-enhanced.md b/apps/tutanota-enhanced.md deleted file mode 100644 index 885ac5234..000000000 --- a/apps/tutanota-enhanced.md +++ /dev/null @@ -1,8 +0,0 @@ -# TUTANOTA-ENHANCED - - 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. - - SITE: https://github.com/pkgforge-dev/Tutanota-Desktop-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/tutanota.md b/apps/tutanota.md deleted file mode 100644 index c779bd853..000000000 --- a/apps/tutanota.md +++ /dev/null @@ -1,12 +0,0 @@ -# TUTANOTA - - Tutanota 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. - - The world's most secure email service, easy to use and private by design. Sign up for encrypted email now. - - SITE: https://tutanota.com - - SOURCE: https://github.com/tutao/tutanota - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/tux-manager b/apps/tux-manager new file mode 100644 index 000000000..69dc25c5b --- /dev/null +++ b/apps/tux-manager @@ -0,0 +1,4 @@ +# tux-manager + 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. +# SITES: https://github.com/benapetr/TuxManager +# SOURCES: https://github.com/benapetr/TuxManager \ No newline at end of file diff --git a/apps/tux-manager.md b/apps/tux-manager.md deleted file mode 100644 index d0ea0e87a..000000000 --- a/apps/tux-manager.md +++ /dev/null @@ -1,8 +0,0 @@ -# TUX-MANAGER - - 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. - - SITE: https://github.com/benapetr/TuxManager - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/tuxfootball b/apps/tuxfootball new file mode 100644 index 000000000..dc03f1761 --- /dev/null +++ b/apps/tuxfootball @@ -0,0 +1,3 @@ +# tuxfootball +Unofficial, is a great 2D football game for Windows and Linux. +# SITES: https://github.com/pkgforge-dev/Tux-Football-AppImage \ No newline at end of file diff --git a/apps/tuxfootball.md b/apps/tuxfootball.md deleted file mode 100644 index 8357539d6..000000000 --- a/apps/tuxfootball.md +++ /dev/null @@ -1,8 +0,0 @@ -# TUXFOOTBALL - - Unofficial, is a great 2D football game for Windows and Linux. - - SITE: https://github.com/pkgforge-dev/Tux-Football-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/tuxplorer b/apps/tuxplorer new file mode 100644 index 000000000..590806a1d --- /dev/null +++ b/apps/tuxplorer @@ -0,0 +1,3 @@ +# tuxplorer +Tuxplorer is a terminal based file explorer. +# SITES: https://github.com/Pand3ru/Tuxplorer \ No newline at end of file diff --git a/apps/tuxplorer.md b/apps/tuxplorer.md deleted file mode 100644 index e5d8dfc52..000000000 --- a/apps/tuxplorer.md +++ /dev/null @@ -1,8 +0,0 @@ -# TUXPLORER - - Tuxplorer is a terminal based file explorer. - - SITE: https://github.com/Pand3ru/Tuxplorer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/tuxpuck b/apps/tuxpuck new file mode 100644 index 000000000..f6b4a5e57 --- /dev/null +++ b/apps/tuxpuck @@ -0,0 +1,3 @@ +# tuxpuck +Unofficial, hockey-like table game. +# SITES: https://github.com/pkgforge-dev/Tuxpuck-AppImage \ No newline at end of file diff --git a/apps/tuxpuck.md b/apps/tuxpuck.md deleted file mode 100644 index e74121a8b..000000000 --- a/apps/tuxpuck.md +++ /dev/null @@ -1,8 +0,0 @@ -# TUXPUCK - - Unofficial, hockey-like table game. - - SITE: https://github.com/pkgforge-dev/Tuxpuck-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/twake b/apps/twake new file mode 100644 index 000000000..525ed017c --- /dev/null +++ b/apps/twake @@ -0,0 +1,3 @@ +# twake +Desktop App for Twake +# SITES: https://github.com/linagora/Twake-Desktop \ No newline at end of file diff --git a/apps/twake.md b/apps/twake.md deleted file mode 100644 index b5eb26d40..000000000 --- a/apps/twake.md +++ /dev/null @@ -1,8 +0,0 @@ -# TWAKE - - Desktop App for Twake - - SITE: https://github.com/linagora/Twake-Desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/tweaksophia b/apps/tweaksophia new file mode 100644 index 000000000..f5ba37af4 --- /dev/null +++ b/apps/tweaksophia @@ -0,0 +1,3 @@ +# tweaksophia +An app to automatically renew the books of the SophiA system. +# SITES: https://github.com/GeovaneSchmitz/tweakSophia \ No newline at end of file diff --git a/apps/tweaksophia.md b/apps/tweaksophia.md deleted file mode 100644 index d3d7d84d2..000000000 --- a/apps/tweaksophia.md +++ /dev/null @@ -1,8 +0,0 @@ -# TWEAKSOPHIA - - An app to automatically renew the books of the SophiA system. - - SITE: https://github.com/GeovaneSchmitz/tweakSophia - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/tweet-tray b/apps/tweet-tray new file mode 100644 index 000000000..15a2c1692 --- /dev/null +++ b/apps/tweet-tray @@ -0,0 +1,3 @@ +# tweet-tray +Tweet quickly from the desktop without any distractions. +# SITES: https://github.com/jonathontoon/tweet-tray \ No newline at end of file diff --git a/apps/tweet-tray.md b/apps/tweet-tray.md deleted file mode 100644 index 74fc8b5ea..000000000 --- a/apps/tweet-tray.md +++ /dev/null @@ -1,7 +0,0 @@ -# TWEET-TRAY - - Tweet quickly from the desktop without any distractions. - - SITE: https://github.com/jonathontoon/tweet-tray - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/twetter b/apps/twetter new file mode 100644 index 000000000..a75142117 --- /dev/null +++ b/apps/twetter @@ -0,0 +1,3 @@ +# twetter +Client for the pubsub app +# SITES: https://github.com/NiewidzialnyCzlowiek/pubsub-webapp \ No newline at end of file diff --git a/apps/twetter.md b/apps/twetter.md deleted file mode 100644 index b9f37058c..000000000 --- a/apps/twetter.md +++ /dev/null @@ -1,8 +0,0 @@ -# TWETTER - - Client for the pubsub app - - SITE: https://github.com/NiewidzialnyCzlowiek/pubsub-webapp - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/twitch-wrapper b/apps/twitch-wrapper new file mode 100644 index 000000000..9356e6240 --- /dev/null +++ b/apps/twitch-wrapper @@ -0,0 +1,3 @@ +# twitch-wrapper +An Electron wrapper for Twitch.tv +# SITES: https://github.com/simoniz0r/twitch-wrapper \ No newline at end of file diff --git a/apps/twitch-wrapper.md b/apps/twitch-wrapper.md deleted file mode 100644 index a0b892d58..000000000 --- a/apps/twitch-wrapper.md +++ /dev/null @@ -1,7 +0,0 @@ -# TWITCH-WRAPPER - - An Electron wrapper for Twitch.tv - - SITE: https://github.com/simoniz0r/twitch-wrapper - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/typioca b/apps/typioca new file mode 100644 index 000000000..cbbacdba3 --- /dev/null +++ b/apps/typioca @@ -0,0 +1,3 @@ +# typioca +Cozy typing speed tester in terminal. +# SITES: https://github.com/bloznelis/typioca \ No newline at end of file diff --git a/apps/typioca.md b/apps/typioca.md deleted file mode 100644 index 550d3f579..000000000 --- a/apps/typioca.md +++ /dev/null @@ -1,8 +0,0 @@ -# TYPIOCA - - Cozy typing speed tester in terminal. - - SITE: https://github.com/bloznelis/typioca - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/uad-ng b/apps/uad-ng new file mode 100644 index 000000000..331aef148 --- /dev/null +++ b/apps/uad-ng @@ -0,0 +1,6 @@ +# uad-ng +Cross-platform GUI written in Rust using ADB to debloat non-rooted Android devices. Improve your privacy, the security and battery life of your device. + + This script provides both the official portable build and the unofficial AppImage. +# SITES: https://github.com/Universal-Debloater-Alliance/universal-android-debloater-next-generation +# SOURCES: https://github.com/pkgforge-dev/uad-ng-AppImage \ No newline at end of file diff --git a/apps/uad-ng.md b/apps/uad-ng.md deleted file mode 100644 index a53b89a79..000000000 --- a/apps/uad-ng.md +++ /dev/null @@ -1,12 +0,0 @@ -# UAD-NG - - Cross-platform GUI written in Rust using ADB to debloat non-rooted Android devices. Improve your privacy, the security and battery life of your device. - - This script provides both the official portable build and the unofficial AppImage. - - SITE: https://github.com/Universal-Debloater-Alliance/universal-android-debloater-next-generation - - APPIMAGE: https://github.com/pkgforge-dev/uad-ng-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ubiquity b/apps/ubiquity new file mode 100644 index 000000000..cab352bf3 --- /dev/null +++ b/apps/ubiquity @@ -0,0 +1,3 @@ +# ubiquity +A cross-platform markdown editor. +# SITES: https://github.com/opensourcecheemsburgers/ubiquity \ No newline at end of file diff --git a/apps/ubiquity.md b/apps/ubiquity.md deleted file mode 100644 index d10ba2c5e..000000000 --- a/apps/ubiquity.md +++ /dev/null @@ -1,8 +0,0 @@ -# UBIQUITY - - A cross-platform markdown editor. - - SITE: https://github.com/opensourcecheemsburgers/ubiquity - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ubports-installer b/apps/ubports-installer new file mode 100644 index 000000000..ca33ee20c --- /dev/null +++ b/apps/ubports-installer @@ -0,0 +1,3 @@ +# ubports-installer +A simple tool to install Ubuntu Touch on UBports devices. +# SITES: https://github.com/ubports/ubports-installer \ No newline at end of file diff --git a/apps/ubports-installer.md b/apps/ubports-installer.md deleted file mode 100644 index 17b28dd59..000000000 --- a/apps/ubports-installer.md +++ /dev/null @@ -1,8 +0,0 @@ -# UBPORTS-INSTALLER - - A simple tool to install Ubuntu Touch on UBports devices. - - SITE: https://github.com/ubports/ubports-installer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/uefitool b/apps/uefitool new file mode 100644 index 000000000..02d99b721 --- /dev/null +++ b/apps/uefitool @@ -0,0 +1,3 @@ +# uefitool +UEFI firmware image viewer and editor. +# SITES: https://github.com/pkgforge-dev/UEFITool-AppImage \ No newline at end of file diff --git a/apps/uefitool.md b/apps/uefitool.md deleted file mode 100644 index 45c25bf98..000000000 --- a/apps/uefitool.md +++ /dev/null @@ -1,8 +0,0 @@ -# UEFITOOL - - UEFI firmware image viewer and editor. - - SITE: https://github.com/pkgforge-dev/UEFITool-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/ueli b/apps/ueli new file mode 100644 index 000000000..718a2fef2 --- /dev/null +++ b/apps/ueli @@ -0,0 +1,3 @@ +# ueli +Cross-Platform Keystroke Launcher. +# SITES: https://github.com/oliverschwendener/ueli \ No newline at end of file diff --git a/apps/ueli.md b/apps/ueli.md deleted file mode 100644 index 5d6eeed4f..000000000 --- a/apps/ueli.md +++ /dev/null @@ -1,8 +0,0 @@ -# UELI - - Cross-Platform Keystroke Launcher. - - SITE: https://github.com/oliverschwendener/ueli - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/uhk.agent b/apps/uhk.agent new file mode 100644 index 000000000..de7d2aad7 --- /dev/null +++ b/apps/uhk.agent @@ -0,0 +1,3 @@ +# uhk.agent +Agent is the configuration application of the Ultimate Hacking Keyboard. +# SITES: https://github.com/UltimateHackingKeyboard/agent \ No newline at end of file diff --git a/apps/uhk.agent.md b/apps/uhk.agent.md deleted file mode 100644 index f9280ec0b..000000000 --- a/apps/uhk.agent.md +++ /dev/null @@ -1,8 +0,0 @@ -# UHK.AGENT - - Agent is the configuration application of the Ultimate Hacking Keyboard. - - SITE: https://github.com/UltimateHackingKeyboard/agent - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/uivonim b/apps/uivonim new file mode 100644 index 000000000..0c5bcd70c --- /dev/null +++ b/apps/uivonim @@ -0,0 +1,3 @@ +# uivonim +Fork of the Veonim Neovim GUI. +# SITES: https://github.com/smolck/uivonim \ No newline at end of file diff --git a/apps/uivonim.md b/apps/uivonim.md deleted file mode 100644 index a77c2c94b..000000000 --- a/apps/uivonim.md +++ /dev/null @@ -1,8 +0,0 @@ -# UIVONIM - - Fork of the Veonim Neovim GUI. - - SITE: https://github.com/smolck/uivonim - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ul b/apps/ul new file mode 100644 index 000000000..31ca2c332 --- /dev/null +++ b/apps/ul @@ -0,0 +1,4 @@ +# ul + Translate underline sequences for terminals. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/ul.md b/apps/ul.md deleted file mode 100644 index c2b9712ff..000000000 --- a/apps/ul.md +++ /dev/null @@ -1,8 +0,0 @@ -# UL - - Translate underline sequences for terminals. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/ultragrid b/apps/ultragrid new file mode 100644 index 000000000..9593194ea --- /dev/null +++ b/apps/ultragrid @@ -0,0 +1,3 @@ +# ultragrid +UltraGrid low-latency audio and video network transmission system +# SITES: https://github.com/CESNET/UltraGrid \ No newline at end of file diff --git a/apps/ultragrid.md b/apps/ultragrid.md deleted file mode 100644 index e33b07ed9..000000000 --- a/apps/ultragrid.md +++ /dev/null @@ -1,8 +0,0 @@ -# ULTRAGRID - - UltraGrid low-latency audio and video network transmission system - - SITE: https://github.com/CESNET/UltraGrid - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ultrascreen b/apps/ultrascreen new file mode 100644 index 000000000..4a8b8741f --- /dev/null +++ b/apps/ultrascreen @@ -0,0 +1,3 @@ +# ultrascreen +Share your screens with friends! +# SITES: https://github.com/w3yden/ultrascreen \ No newline at end of file diff --git a/apps/ultrascreen.md b/apps/ultrascreen.md deleted file mode 100644 index 3fa6babff..000000000 --- a/apps/ultrascreen.md +++ /dev/null @@ -1,8 +0,0 @@ -# ULTRASCREEN - - Share your screens with friends! - - SITE: https://github.com/w3yden/ultrascreen - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/umount b/apps/umount new file mode 100644 index 000000000..20be8ac8a --- /dev/null +++ b/apps/umount @@ -0,0 +1,3 @@ +# umount +Unmount filesystems. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/umount.md b/apps/umount.md deleted file mode 100644 index c96832dd8..000000000 --- a/apps/umount.md +++ /dev/null @@ -1,8 +0,0 @@ -# UMOUNT - - Unmount filesystems. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/ums b/apps/ums new file mode 100644 index 000000000..7b1cced57 --- /dev/null +++ b/apps/ums @@ -0,0 +1,3 @@ +# ums +A DLNA, UPnP and HTTP(S) Media Server. +# SITES: https://github.com/UniversalMediaServer/UniversalMediaServer \ No newline at end of file diff --git a/apps/ums.md b/apps/ums.md deleted file mode 100644 index 0cfc96050..000000000 --- a/apps/ums.md +++ /dev/null @@ -1,8 +0,0 @@ -# UMS - - A DLNA, UPnP and HTTP(S) Media Server. - - SITE: https://github.com/UniversalMediaServer/UniversalMediaServer - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/uname b/apps/uname new file mode 100644 index 000000000..02234dd80 --- /dev/null +++ b/apps/uname @@ -0,0 +1,3 @@ +# uname +Print system information. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/uname.md b/apps/uname.md deleted file mode 100644 index ada3f78b0..000000000 --- a/apps/uname.md +++ /dev/null @@ -1,8 +0,0 @@ -# UNAME - - Print system information. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/uncompress b/apps/uncompress new file mode 100644 index 000000000..741c5de8b --- /dev/null +++ b/apps/uncompress @@ -0,0 +1,3 @@ +# uncompress +Zcat - compress and expand data. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/uncompress.md b/apps/uncompress.md deleted file mode 100644 index 50f27e47f..000000000 --- a/apps/uncompress.md +++ /dev/null @@ -1,8 +0,0 @@ -# UNCOMPRESS - - Zcat - compress and expand data. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/uncov b/apps/uncov new file mode 100644 index 000000000..7eb641830 --- /dev/null +++ b/apps/uncov @@ -0,0 +1,4 @@ +# uncov +uncov(er) is a tool that collects and processes + code coverage reports. +# SITES: https://github.com/xaizek/uncov \ No newline at end of file diff --git a/apps/uncov.md b/apps/uncov.md deleted file mode 100644 index e42103c00..000000000 --- a/apps/uncov.md +++ /dev/null @@ -1,8 +0,0 @@ -# UNCOV - - uncov(er) is a tool that collects and processes - code coverage reports. - - SITE: https://github.com/xaizek/uncov - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/undertaker141 b/apps/undertaker141 new file mode 100644 index 000000000..d7850d62b --- /dev/null +++ b/apps/undertaker141 @@ -0,0 +1,3 @@ +# undertaker141 +A free and open-source game-center for linux. Pre-configured Wine and Native Games for Linux. +# SITES: https://github.com/AbdelrhmanNile/UnderTaker141 \ No newline at end of file diff --git a/apps/undertaker141.md b/apps/undertaker141.md deleted file mode 100644 index 07aac2a3f..000000000 --- a/apps/undertaker141.md +++ /dev/null @@ -1,8 +0,0 @@ -# UNDERTAKER141 - - A free and open-source game-center for linux. Pre-configured Wine and Native Games for Linux. - - SITE: https://github.com/AbdelrhmanNile/UnderTaker141 - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/unetbootin b/apps/unetbootin new file mode 100644 index 000000000..6224b609b --- /dev/null +++ b/apps/unetbootin @@ -0,0 +1,4 @@ +# unetbootin +UNetbootin installs Linux/BSD distributions to a partition or USB drive +# SCREENSHOTS: https://unetbootin.github.io/screenshot1.jpg https://unetbootin.github.io/screenshot2.jpg https://unetbootin.github.io/screenshot3.jpg +# SITES: http://unetbootin.github.io \ No newline at end of file diff --git a/apps/unetbootin.md b/apps/unetbootin.md deleted file mode 100644 index 50e9ab943..000000000 --- a/apps/unetbootin.md +++ /dev/null @@ -1,14 +0,0 @@ -# UNETBOOTIN - - UNetbootin installs Linux/BSD distributions to a partition or USB drive - - ![image1](https://unetbootin.github.io/screenshot1.jpg) - ![image2](https://unetbootin.github.io/screenshot2.jpg) - ![image3](https://unetbootin.github.io/screenshot3.jpg) - - SITE: http://unetbootin.github.io - - REPOSITORY: https://github.com/unetbootin/unetbootin - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/unexpand b/apps/unexpand new file mode 100644 index 000000000..ebd17e3bd --- /dev/null +++ b/apps/unexpand @@ -0,0 +1,4 @@ +# unexpand + Convert spaces to tabs. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/unexpand.md b/apps/unexpand.md deleted file mode 100644 index 4c04a729f..000000000 --- a/apps/unexpand.md +++ /dev/null @@ -1,8 +0,0 @@ -# UNEXPAND - - Convert spaces to tabs. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/ungoogled-chromium b/apps/ungoogled-chromium new file mode 100644 index 000000000..cf8c322f4 --- /dev/null +++ b/apps/ungoogled-chromium @@ -0,0 +1,4 @@ +# ungoogled-chromium +Ungoogled Chromium - Web Browser without Google services. +# SCREENSHOTS: https://upload.wikimedia.org/wikipedia/commons/6/6a/Chromium_96_Wikipedia_page_%28ungoogled-chromium%29_screenshot.png +# SITES: https://ungoogled-software.github.io \ No newline at end of file diff --git a/apps/ungoogled-chromium.md b/apps/ungoogled-chromium.md deleted file mode 100644 index cc7d8b06d..000000000 --- a/apps/ungoogled-chromium.md +++ /dev/null @@ -1,10 +0,0 @@ -# UNGOOGLED-CHROMIUM - - Ungoogled Chromium - Web Browser without Google services. - - ![Screenshot](https://upload.wikimedia.org/wikipedia/commons/6/6a/Chromium_96_Wikipedia_page_%28ungoogled-chromium%29_screenshot.png) - - SITE: https://ungoogled-software.github.io - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/uniq b/apps/uniq new file mode 100644 index 000000000..ffebe8b93 --- /dev/null +++ b/apps/uniq @@ -0,0 +1,3 @@ +# uniq +Report or omit repeated lines. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/uniq.md b/apps/uniq.md deleted file mode 100644 index b3fdb5212..000000000 --- a/apps/uniq.md +++ /dev/null @@ -1,8 +0,0 @@ -# UNIQ - - Report or omit repeated lines. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/unishellect b/apps/unishellect new file mode 100644 index 000000000..8faaca3f9 --- /dev/null +++ b/apps/unishellect @@ -0,0 +1,3 @@ +# unishellect +This tool parses a JSON config file and loads a highly customizable menu of shells, interpreters, files, commands and possible arguments into any command line interface. This is inspired by the "hyper-shellect" plug-in for the "Hyper" terminal. +# SITES: https://github.com/Lateralus138/UniShellect \ No newline at end of file diff --git a/apps/unishellect.md b/apps/unishellect.md deleted file mode 100644 index 7be14733a..000000000 --- a/apps/unishellect.md +++ /dev/null @@ -1,8 +0,0 @@ -# UNISHELLECT - - This tool parses a JSON config file and loads a highly customizable menu of shells, interpreters, files, commands and possible arguments into any command line interface. This is inspired by the "hyper-shellect" plug-in for the "Hyper" terminal. - - SITE: https://github.com/Lateralus138/UniShellect - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/unityhub b/apps/unityhub new file mode 100644 index 000000000..2e8826696 --- /dev/null +++ b/apps/unityhub @@ -0,0 +1,4 @@ +# unityhub + Unofficial AppImage for Unity Hub. +# SITES: https://github.com/pkgforge-dev/unityhub-appimage +# SOURCES: https://github.com/pkgforge-dev/unityhub-appimage \ No newline at end of file diff --git a/apps/unityhub.md b/apps/unityhub.md deleted file mode 100644 index 89f6c81a4..000000000 --- a/apps/unityhub.md +++ /dev/null @@ -1,8 +0,0 @@ -# UNITYHUB - - Unofficial AppImage for Unity Hub. - - SITE: https://github.com/pkgforge-dev/unityhub-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/unleashedrecomp b/apps/unleashedrecomp new file mode 100644 index 000000000..051042424 --- /dev/null +++ b/apps/unleashedrecomp @@ -0,0 +1,3 @@ +# unleashedrecomp +Unofficial AppImage of UnleashedRecomp (Sonic Unleashed port) [Maintainer=@Samueru-sama] +# SITES: https://github.com/pkgforge-dev/UnleashedRecomp-AppImage \ No newline at end of file diff --git a/apps/unleashedrecomp.md b/apps/unleashedrecomp.md deleted file mode 100644 index 2b2884ad0..000000000 --- a/apps/unleashedrecomp.md +++ /dev/null @@ -1,8 +0,0 @@ -# UNLEASHEDRECOMP - - Unofficial AppImage of UnleashedRecomp (Sonic Unleashed port) [Maintainer=@Samueru-sama] - - SITE: https://github.com/pkgforge-dev/UnleashedRecomp-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/unlink b/apps/unlink new file mode 100644 index 000000000..09a197181 --- /dev/null +++ b/apps/unlink @@ -0,0 +1,4 @@ +# unlink + Call the unlink function to remove the specified file. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/unlink.md b/apps/unlink.md deleted file mode 100644 index 4cef62568..000000000 --- a/apps/unlink.md +++ /dev/null @@ -1,8 +0,0 @@ -# UNLINK - - Call the unlink function to remove the specified file. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/unofficial-homestuck-collection b/apps/unofficial-homestuck-collection new file mode 100644 index 000000000..6eb74266b --- /dev/null +++ b/apps/unofficial-homestuck-collection @@ -0,0 +1,3 @@ +# unofficial-homestuck-collection +An offline collection of Homestuck and its related works. +# SITES: https://github.com/GiovanH/unofficial-homestuck-collection \ No newline at end of file diff --git a/apps/unofficial-homestuck-collection.md b/apps/unofficial-homestuck-collection.md deleted file mode 100644 index 892b936c3..000000000 --- a/apps/unofficial-homestuck-collection.md +++ /dev/null @@ -1,8 +0,0 @@ -# UNOFFICIAL-HOMESTUCK-COLLECTION - - An offline collection of Homestuck and its related works. - - SITE: https://github.com/GiovanH/unofficial-homestuck-collection - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/unofficial-zalo b/apps/unofficial-zalo new file mode 100644 index 000000000..d3e23e141 --- /dev/null +++ b/apps/unofficial-zalo @@ -0,0 +1,3 @@ +# unofficial-zalo +Unofficial Zalo App +# SITES: https://github.com/SafeStudio/unofficial-zalo \ No newline at end of file diff --git a/apps/unofficial-zalo.md b/apps/unofficial-zalo.md deleted file mode 100644 index 0ae806147..000000000 --- a/apps/unofficial-zalo.md +++ /dev/null @@ -1,8 +0,0 @@ -# UNOFFICIAL-ZALO - - Unofficial Zalo App - - SITE: https://github.com/SafeStudio/unofficial-zalo - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/unreel b/apps/unreel new file mode 100644 index 000000000..f73ed733d --- /dev/null +++ b/apps/unreel @@ -0,0 +1,3 @@ +# unreel +A GUI to create Reveal presentations. +# SITES: https://github.com/linux-man/unreel \ No newline at end of file diff --git a/apps/unreel.md b/apps/unreel.md deleted file mode 100644 index be254a8eb..000000000 --- a/apps/unreel.md +++ /dev/null @@ -1,7 +0,0 @@ -# UNREEL - - A GUI to create Reveal presentations. - - SITE: https://github.com/linux-man/unreel - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/unshare b/apps/unshare new file mode 100644 index 000000000..1b0941f3f --- /dev/null +++ b/apps/unshare @@ -0,0 +1,3 @@ +# unshare +Run program in new namespaces. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/unshare.md b/apps/unshare.md deleted file mode 100644 index 940495b9b..000000000 --- a/apps/unshare.md +++ /dev/null @@ -1,8 +0,0 @@ -# UNSHARE - - Run program in new namespaces. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/unveil b/apps/unveil new file mode 100644 index 000000000..806106fec --- /dev/null +++ b/apps/unveil @@ -0,0 +1,3 @@ +# unveil +Unveil Rs is a tool to create presentations from markdown inspired by reveal.js, mdbook and zola. +# SITES: https://github.com/oknozor/unveil-rs \ No newline at end of file diff --git a/apps/unveil.md b/apps/unveil.md deleted file mode 100644 index 96c22a68b..000000000 --- a/apps/unveil.md +++ /dev/null @@ -1,8 +0,0 @@ -# UNVEIL - - Unveil Rs is a tool to create presentations from markdown inspired by reveal.js, mdbook and zola. - - SITE: https://github.com/oknozor/unveil-rs - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/unxz b/apps/unxz new file mode 100644 index 000000000..1ca2e096a --- /dev/null +++ b/apps/unxz @@ -0,0 +1,3 @@ +# unxz +Xzcat, lzma, unlzma, lzcat - Compress or decompress .xz. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/unxz.md b/apps/unxz.md deleted file mode 100644 index dece4074e..000000000 --- a/apps/unxz.md +++ /dev/null @@ -1,8 +0,0 @@ -# UNXZ - - Xzcat, lzma, unlzma, lzcat - Compress or decompress .xz. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/unyo b/apps/unyo new file mode 100644 index 000000000..102fefa93 --- /dev/null +++ b/apps/unyo @@ -0,0 +1,3 @@ +# unyo +🐙 Anime streaming and Manga reader desktop app without ads. +# SITES: https://github.com/K3vinb5/Unyo \ No newline at end of file diff --git a/apps/unyo.md b/apps/unyo.md deleted file mode 100644 index 9e6710931..000000000 --- a/apps/unyo.md +++ /dev/null @@ -1,8 +0,0 @@ -# UNYO - - 🐙 Anime streaming and Manga reader desktop app without ads. - - SITE: https://github.com/K3vinb5/Unyo - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/unzip b/apps/unzip new file mode 100644 index 000000000..a98dfc3bb --- /dev/null +++ b/apps/unzip @@ -0,0 +1,3 @@ +# unzip +For extracting and viewing files in .zip archives. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/unzip.md b/apps/unzip.md deleted file mode 100644 index 15a6742b3..000000000 --- a/apps/unzip.md +++ /dev/null @@ -1,8 +0,0 @@ -# UNZIP - - For extracting and viewing files in .zip archives. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/updatedeployqt b/apps/updatedeployqt new file mode 100644 index 000000000..38d8d9431 --- /dev/null +++ b/apps/updatedeployqt @@ -0,0 +1,3 @@ +# updatedeployqt +A simple and powerful tool to deploy auto update for qt applications with a single command. Programming Language Independent. +# SITES: https://github.com/antony-jr/updatedeployqt \ No newline at end of file diff --git a/apps/updatedeployqt.md b/apps/updatedeployqt.md deleted file mode 100644 index 4550ce7cc..000000000 --- a/apps/updatedeployqt.md +++ /dev/null @@ -1,7 +0,0 @@ -# UPDATEDEPLOYQT - - A simple and powerful tool to deploy auto update for qt applications with a single command. Programming Language Independent. - - SITE: https://github.com/antony-jr/updatedeployqt - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/upgit b/apps/upgit new file mode 100644 index 000000000..e8cdef6ec --- /dev/null +++ b/apps/upgit @@ -0,0 +1,3 @@ +# upgit +Another upload hub that supports clipboard. It works well with Typora, Snipaste, VSCode. +# SITES: https://github.com/pluveto/upgit \ No newline at end of file diff --git a/apps/upgit.md b/apps/upgit.md deleted file mode 100644 index 40d35cc6f..000000000 --- a/apps/upgit.md +++ /dev/null @@ -1,8 +0,0 @@ -# UPGIT - - Another upload hub that supports clipboard. It works well with Typora, Snipaste, VSCode. - - SITE: https://github.com/pluveto/upgit - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/upnote b/apps/upnote new file mode 100644 index 000000000..928a5bc12 --- /dev/null +++ b/apps/upnote @@ -0,0 +1,3 @@ +# upnote +Stay focused and productive with a clean and clutter-free note space. +# SITES: https://getupnote.com \ No newline at end of file diff --git a/apps/upnote.md b/apps/upnote.md deleted file mode 100644 index 03bf2a773..000000000 --- a/apps/upnote.md +++ /dev/null @@ -1,8 +0,0 @@ -# UPNOTE - - Stay focused and productive with a clean and clutter-free note space. - - SITE: https://getupnote.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/upnotes b/apps/upnotes new file mode 100644 index 000000000..d56131299 --- /dev/null +++ b/apps/upnotes @@ -0,0 +1,3 @@ +# upnotes +A notes app for software developers +# SITES: https://github.com/upnotes-io/upnotes-website \ No newline at end of file diff --git a/apps/upnotes.md b/apps/upnotes.md deleted file mode 100644 index 900d6753d..000000000 --- a/apps/upnotes.md +++ /dev/null @@ -1,8 +0,0 @@ -# UPNOTES - - A notes app for software developers - - SITE: https://github.com/upnotes-io/upnotes-website - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/upscayl b/apps/upscayl new file mode 100644 index 000000000..0594b9c33 --- /dev/null +++ b/apps/upscayl @@ -0,0 +1,3 @@ +# upscayl +Free and Open Source AI Image Upscaler +# SITES: https://github.com/upscayl/upscayl \ No newline at end of file diff --git a/apps/upscayl.md b/apps/upscayl.md deleted file mode 100644 index 3b1b7d784..000000000 --- a/apps/upscayl.md +++ /dev/null @@ -1,8 +0,0 @@ -# UPSCAYL - - Free and Open Source AI Image Upscaler - - SITE: https://github.com/upscayl/upscayl - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/uptime b/apps/uptime new file mode 100644 index 000000000..dc212faff --- /dev/null +++ b/apps/uptime @@ -0,0 +1,3 @@ +# uptime +Tell how long the system has been running.. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/uptime.md b/apps/uptime.md deleted file mode 100644 index 1bc3f9b13..000000000 --- a/apps/uptime.md +++ /dev/null @@ -1,8 +0,0 @@ -# UPTIME - - Tell how long the system has been running.. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/urbanterror b/apps/urbanterror new file mode 100644 index 000000000..b492362c2 --- /dev/null +++ b/apps/urbanterror @@ -0,0 +1,4 @@ +# urbanterror +A team-based tactical shooter based on the Quake 3 Engine. +# SCREENSHOTS: https://media.tenor.com/sj1RVz4T7wwAAAAC/urban-terror.gif +# SITES: http://www.urbanterror.info \ No newline at end of file diff --git a/apps/urbanterror.md b/apps/urbanterror.md deleted file mode 100644 index 68210f98c..000000000 --- a/apps/urbanterror.md +++ /dev/null @@ -1,10 +0,0 @@ -# URBANTERROR - - A team-based tactical shooter based on the Quake 3 Engine. - - ![GIF](https://media.tenor.com/sj1RVz4T7wwAAAAC/urban-terror.gif) - - SITE: http://www.urbanterror.info - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/users b/apps/users new file mode 100644 index 000000000..2a90a0d35 --- /dev/null +++ b/apps/users @@ -0,0 +1,4 @@ +# users + Print the user names of users currently logged in to the. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/users.md b/apps/users.md deleted file mode 100644 index fdb396e91..000000000 --- a/apps/users.md +++ /dev/null @@ -1,8 +0,0 @@ -# USERS - - Print the user names of users currently logged in to the. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/utilso b/apps/utilso new file mode 100644 index 000000000..7a9a253b4 --- /dev/null +++ b/apps/utilso @@ -0,0 +1,3 @@ +# utilso +Regex Tester, JWT Verify, Image Converter, Format JSON, Decode base64, Code Beautify and more.Work completely offline. +# SITES: https://utilso.com \ No newline at end of file diff --git a/apps/utilso.md b/apps/utilso.md deleted file mode 100644 index 81c4f8cbc..000000000 --- a/apps/utilso.md +++ /dev/null @@ -1,8 +0,0 @@ -# UTILSO - - Regex Tester, JWT Verify, Image Converter, Format JSON, Decode base64, Code Beautify and more.Work completely offline. - - SITE: https://utilso.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/uv b/apps/uv new file mode 100644 index 000000000..a5619d04e --- /dev/null +++ b/apps/uv @@ -0,0 +1,3 @@ +# uv +An extremely fast Python package and project manager, written in Rust. +# SITES: https://github.com/astral-sh/uv \ No newline at end of file diff --git a/apps/uv.md b/apps/uv.md deleted file mode 100644 index 3a38e247f..000000000 --- a/apps/uv.md +++ /dev/null @@ -1,8 +0,0 @@ -# UV - - An extremely fast Python package and project manager, written in Rust. - - SITE: https://github.com/astral-sh/uv - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/uwufetch b/apps/uwufetch new file mode 100644 index 000000000..6c6ad6d7e --- /dev/null +++ b/apps/uwufetch @@ -0,0 +1,3 @@ +# uwufetch +A meme system info tool for Linux, based on nyan/uwu trend on r/linuxmasterrace. +# SITES: https://github.com/ad-oliviero/uwufetch \ No newline at end of file diff --git a/apps/uwufetch.md b/apps/uwufetch.md deleted file mode 100644 index ba1935157..000000000 --- a/apps/uwufetch.md +++ /dev/null @@ -1,8 +0,0 @@ -# UWUFETCH - - A meme system info tool for Linux, based on nyan/uwu trend on r/linuxmasterrace. - - SITE: https://github.com/ad-oliviero/uwufetch - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/uyou b/apps/uyou new file mode 100644 index 000000000..25c6f285a --- /dev/null +++ b/apps/uyou @@ -0,0 +1,3 @@ +# uyou +This is a todo list with electron +# SITES: https://github.com/tonylu110/uyou-todo-electron \ No newline at end of file diff --git a/apps/uyou.md b/apps/uyou.md deleted file mode 100644 index 3ff42b841..000000000 --- a/apps/uyou.md +++ /dev/null @@ -1,8 +0,0 @@ -# UYOU - - This is a todo list with electron - - SITE: https://github.com/tonylu110/uyou-todo-electron - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/uzdoom b/apps/uzdoom new file mode 100644 index 000000000..3c6dde667 --- /dev/null +++ b/apps/uzdoom @@ -0,0 +1,3 @@ +# uzdoom +UZDoom is a feature centric port for all Doom engine games, based on GZDoom, adding an advanced renderer and powerful scripting capabilities. +# SITES: https://github.com/UZDoom/UZDoom \ No newline at end of file diff --git a/apps/uzdoom.md b/apps/uzdoom.md deleted file mode 100644 index 4a7aa8809..000000000 --- a/apps/uzdoom.md +++ /dev/null @@ -1,8 +0,0 @@ -# UZDOOM - - UZDoom is a feature centric port for all Doom engine games, based on GZDoom, adding an advanced renderer and powerful scripting capabilities. - - SITE: https://github.com/UZDoom/UZDoom - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/v2ray-desktop b/apps/v2ray-desktop new file mode 100644 index 000000000..7951d4ef5 --- /dev/null +++ b/apps/v2ray-desktop @@ -0,0 +1,3 @@ +# v2ray-desktop +V2Ray GUI client for Linux. +# SITES: https://github.com/Dr-Incognito/V2Ray-Desktop \ No newline at end of file diff --git a/apps/v2ray-desktop.md b/apps/v2ray-desktop.md deleted file mode 100644 index 9a3b082f1..000000000 --- a/apps/v2ray-desktop.md +++ /dev/null @@ -1,8 +0,0 @@ -# V2RAY-DESKTOP - - V2Ray GUI client for Linux. - - SITE: https://github.com/Dr-Incognito/V2Ray-Desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/valeronoi b/apps/valeronoi new file mode 100644 index 000000000..a1e2f06b3 --- /dev/null +++ b/apps/valeronoi @@ -0,0 +1,3 @@ +# valeronoi +Valeronoi is a companion app for Valetudo for generating WiFi heat maps. +# SITES: https://github.com/ccoors/Valeronoi \ No newline at end of file diff --git a/apps/valeronoi.md b/apps/valeronoi.md deleted file mode 100644 index e9b1814a1..000000000 --- a/apps/valeronoi.md +++ /dev/null @@ -1,8 +0,0 @@ -# VALERONOI - - Valeronoi is a companion app for Valetudo for generating WiFi heat maps. - - SITE: https://github.com/ccoors/Valeronoi - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/vapour b/apps/vapour new file mode 100644 index 000000000..a028a845e --- /dev/null +++ b/apps/vapour @@ -0,0 +1,3 @@ +# vapour +An alternative open source Steam client. +# SITES: https://github.com/Daniel-Griffiths/vapour \ No newline at end of file diff --git a/apps/vapour.md b/apps/vapour.md deleted file mode 100644 index 194c36fea..000000000 --- a/apps/vapour.md +++ /dev/null @@ -1,8 +0,0 @@ -# VAPOUR - - An alternative open source Steam client. - - SITE: https://github.com/Daniel-Griffiths/vapour - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/varia b/apps/varia new file mode 100644 index 000000000..1ae35fba4 --- /dev/null +++ b/apps/varia @@ -0,0 +1,3 @@ +# varia +Unofficial. Aria2-based advanced download manager with support for downloading files, torrents, video and audio + support for Chromium and Firefox extension. +# SITES: https://github.com/pkgforge-dev/Varia-AppImage \ No newline at end of file diff --git a/apps/varia.md b/apps/varia.md deleted file mode 100644 index a8904fd7d..000000000 --- a/apps/varia.md +++ /dev/null @@ -1,8 +0,0 @@ -# VARIA - - Unofficial. Aria2-based advanced download manager with support for downloading files, torrents, video and audio + support for Chromium and Firefox extension. - - SITE: https://github.com/pkgforge-dev/Varia-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/vcard-studio b/apps/vcard-studio new file mode 100644 index 000000000..24e5d0be8 --- /dev/null +++ b/apps/vcard-studio @@ -0,0 +1,3 @@ +# vcard-studio +A contact management application with support for vCard file format (.vcf). +# SITES: https://app.zdechov.net/vcard-studio \ No newline at end of file diff --git a/apps/vcard-studio.md b/apps/vcard-studio.md deleted file mode 100644 index a5d838600..000000000 --- a/apps/vcard-studio.md +++ /dev/null @@ -1,8 +0,0 @@ -# VCARD-STUDIO - - A contact management application with support for vCard file format (.vcf). - - SITE: https://app.zdechov.net/vcard-studio - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/vcloudcam b/apps/vcloudcam new file mode 100644 index 000000000..a9b666dde --- /dev/null +++ b/apps/vcloudcam @@ -0,0 +1,3 @@ +# vcloudcam +A secure and cost-effective solution for the camera systems of gas and fuel stations. +# SITES: https://github.com/quocson95/vCloudcam \ No newline at end of file diff --git a/apps/vcloudcam.md b/apps/vcloudcam.md deleted file mode 100644 index 90da5d43d..000000000 --- a/apps/vcloudcam.md +++ /dev/null @@ -1,8 +0,0 @@ -# VCLOUDCAM - - A secure and cost-effective solution for the camera systems of gas and fuel stations. - - SITE: https://github.com/quocson95/vCloudcam - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/vcmi b/apps/vcmi new file mode 100644 index 000000000..b60597f10 --- /dev/null +++ b/apps/vcmi @@ -0,0 +1,3 @@ +# vcmi +Unofficial AppImage of vcmi open-source engine for Heroes of Might and Magic III +# SITES: https://github.com/pkgforge-dev/vcmi-AppImage \ No newline at end of file diff --git a/apps/vcmi.md b/apps/vcmi.md deleted file mode 100644 index c5937c45d..000000000 --- a/apps/vcmi.md +++ /dev/null @@ -1,8 +0,0 @@ -# VCMI - - Unofficial AppImage of vcmi open-source engine for Heroes of Might and Magic III - - SITE: https://github.com/pkgforge-dev/vcmi-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/vdir b/apps/vdir new file mode 100644 index 000000000..bdebf2d65 --- /dev/null +++ b/apps/vdir @@ -0,0 +1,4 @@ +# vdir + List directory contents. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/vdir.md b/apps/vdir.md deleted file mode 100644 index 4c20ef563..000000000 --- a/apps/vdir.md +++ /dev/null @@ -1,8 +0,0 @@ -# VDIR - - List directory contents. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/vechain b/apps/vechain new file mode 100644 index 000000000..dc1588530 --- /dev/null +++ b/apps/vechain @@ -0,0 +1,3 @@ +# vechain +A browser that empowers DApps on VeChain +# SITES: https://github.com/vechain/thor-sync.electron \ No newline at end of file diff --git a/apps/vechain.md b/apps/vechain.md deleted file mode 100644 index cd7453df5..000000000 --- a/apps/vechain.md +++ /dev/null @@ -1,8 +0,0 @@ -# VECHAIN - - A browser that empowers DApps on VeChain - - SITE: https://github.com/vechain/thor-sync.electron - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/vector b/apps/vector new file mode 100644 index 000000000..7b7720b8d --- /dev/null +++ b/apps/vector @@ -0,0 +1,3 @@ +# vector +Vector is a decentralized communication platform built on the Nostr Protocol. +# SITES: https://github.com/VectorPrivacy/Vector \ No newline at end of file diff --git a/apps/vector.md b/apps/vector.md deleted file mode 100644 index 7c812bcfb..000000000 --- a/apps/vector.md +++ /dev/null @@ -1,8 +0,0 @@ -# VECTOR - - Vector is a decentralized communication platform built on the Nostr Protocol. - - SITE: https://github.com/VectorPrivacy/Vector - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/vegeta b/apps/vegeta new file mode 100644 index 000000000..e86632a68 --- /dev/null +++ b/apps/vegeta @@ -0,0 +1,3 @@ +# vegeta +HTTP load testing tool and library. It's over 9000! +# SITES: https://github.com/tsenart/vegeta \ No newline at end of file diff --git a/apps/vegeta.md b/apps/vegeta.md deleted file mode 100644 index 083d94ce3..000000000 --- a/apps/vegeta.md +++ /dev/null @@ -1,8 +0,0 @@ -# VEGETA - - HTTP load testing tool and library. It's over 9000! - - SITE: https://github.com/tsenart/vegeta - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/ventoy b/apps/ventoy new file mode 100644 index 000000000..095274e71 --- /dev/null +++ b/apps/ventoy @@ -0,0 +1,8 @@ +# ventoy +Ventoy is an open source tool to create bootable USB drive for ISO/WIM/IMG/VHD(x)/EFI files. + + With ventoy, you don't need to format the disk over and over, you just need to copy the image files to the USB drive and boot it. + + You can copy many image files at a time and ventoy will give you a boot menu to select them. +# SCREENSHOTS: https://user-images.githubusercontent.com/88724353/236652321-69dd608f-313c-4c65-942a-635b0b155d96.png +# SITES: https://www.ventoy.net \ No newline at end of file diff --git a/apps/ventoy.md b/apps/ventoy.md deleted file mode 100644 index a5c474949..000000000 --- a/apps/ventoy.md +++ /dev/null @@ -1,14 +0,0 @@ -# VENTOY - - Ventoy is an open source tool to create bootable USB drive for ISO/WIM/IMG/VHD(x)/EFI files. - - With ventoy, you don't need to format the disk over and over, you just need to copy the image files to the USB drive and boot it. - - You can copy many image files at a time and ventoy will give you a boot menu to select them. - - ![screen_uefi_en](https://user-images.githubusercontent.com/88724353/236652321-69dd608f-313c-4c65-942a-635b0b155d96.png) - - SITE: https://www.ventoy.net - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/veracrypt b/apps/veracrypt new file mode 100644 index 000000000..b12a7c998 --- /dev/null +++ b/apps/veracrypt @@ -0,0 +1,3 @@ +# veracrypt +VeraCrypt is a free open source disk encryption software. +# SITES: https://veracrypt.io \ No newline at end of file diff --git a/apps/veracrypt.md b/apps/veracrypt.md deleted file mode 100644 index 428e25ba8..000000000 --- a/apps/veracrypt.md +++ /dev/null @@ -1,8 +0,0 @@ -# VERACRYPT - - VeraCrypt is a free open source disk encryption software. - - SITE: https://veracrypt.io - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/verto b/apps/verto new file mode 100644 index 000000000..73f41212a --- /dev/null +++ b/apps/verto @@ -0,0 +1,3 @@ +# verto +A multi-currency crypto wallet with initial support for EOS & VTX +# SITES: https://github.com/Volentix/verto \ No newline at end of file diff --git a/apps/verto.md b/apps/verto.md deleted file mode 100644 index 90eb09f4d..000000000 --- a/apps/verto.md +++ /dev/null @@ -1,8 +0,0 @@ -# VERTO - - A multi-currency crypto wallet with initial support for EOS & VTX - - SITE: https://github.com/Volentix/verto - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/vesktop b/apps/vesktop new file mode 100644 index 000000000..56914d371 --- /dev/null +++ b/apps/vesktop @@ -0,0 +1,3 @@ +# vesktop +Vesktop gives you the performance of web Discord and the comfort of Discord Desktop. +# SITES: https://github.com/Vencord/Vesktop \ No newline at end of file diff --git a/apps/vesktop.md b/apps/vesktop.md deleted file mode 100644 index c9697b528..000000000 --- a/apps/vesktop.md +++ /dev/null @@ -1,8 +0,0 @@ -# VESKTOP - - Vesktop gives you the performance of web Discord and the comfort of Discord Desktop. - - SITE: https://github.com/Vencord/Vesktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/vgmtrans b/apps/vgmtrans new file mode 100644 index 000000000..1f18b35e8 --- /dev/null +++ b/apps/vgmtrans @@ -0,0 +1,3 @@ +# vgmtrans +A tool to convert proprietary, sequenced videogame music to industry-standard formats. +# SITES: https://github.com/vgmtrans/vgmtrans \ No newline at end of file diff --git a/apps/vgmtrans.md b/apps/vgmtrans.md deleted file mode 100644 index bedf246e7..000000000 --- a/apps/vgmtrans.md +++ /dev/null @@ -1,8 +0,0 @@ -# VGMTRANS - - A tool to convert proprietary, sequenced videogame music to industry-standard formats. - - SITE: https://github.com/vgmtrans/vgmtrans - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/vhc-viewer-wayland b/apps/vhc-viewer-wayland new file mode 100644 index 000000000..e540b0553 --- /dev/null +++ b/apps/vhc-viewer-wayland @@ -0,0 +1,3 @@ +# vhc-viewer-wayland +Vulkan Hardware Capability Viewer +# SITES: https://vulkan.gpuinfo.org \ No newline at end of file diff --git a/apps/vhc-viewer-wayland.md b/apps/vhc-viewer-wayland.md deleted file mode 100644 index 890ff5de9..000000000 --- a/apps/vhc-viewer-wayland.md +++ /dev/null @@ -1,8 +0,0 @@ -# VHC-VIEWER-WAYLAND - - Vulkan Hardware Capability Viewer - - SITE: https://vulkan.gpuinfo.org - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/vhc-viewer-x11 b/apps/vhc-viewer-x11 new file mode 100644 index 000000000..b896cb0cd --- /dev/null +++ b/apps/vhc-viewer-x11 @@ -0,0 +1,3 @@ +# vhc-viewer-x11 +Vulkan Hardware Capability Viewer +# SITES: https://vulkan.gpuinfo.org \ No newline at end of file diff --git a/apps/vhc-viewer-x11.md b/apps/vhc-viewer-x11.md deleted file mode 100644 index 0b120afa1..000000000 --- a/apps/vhc-viewer-x11.md +++ /dev/null @@ -1,8 +0,0 @@ -# VHC-VIEWER-X11 - - Vulkan Hardware Capability Viewer - - SITE: https://vulkan.gpuinfo.org - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/vhs b/apps/vhs new file mode 100644 index 000000000..d5fb460f6 --- /dev/null +++ b/apps/vhs @@ -0,0 +1,3 @@ +# vhs +Your CLI home video recorder. +# SITES: https://github.com/charmbracelet/vhs \ No newline at end of file diff --git a/apps/vhs.md b/apps/vhs.md deleted file mode 100644 index d99c3d833..000000000 --- a/apps/vhs.md +++ /dev/null @@ -1,8 +0,0 @@ -# VHS - - Your CLI home video recorder. - - SITE: https://github.com/charmbracelet/vhs - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/via b/apps/via new file mode 100644 index 000000000..20843047b --- /dev/null +++ b/apps/via @@ -0,0 +1,3 @@ +# via +Your keyboard's best friend. +# SITES: https://caniusevia.com/ \ No newline at end of file diff --git a/apps/via-desktop b/apps/via-desktop new file mode 100644 index 000000000..2928366de --- /dev/null +++ b/apps/via-desktop @@ -0,0 +1,3 @@ +# via-desktop +VIA Desktop is an Electron application designed to provide an offline experience for VIA. +# SITES: https://github.com/cebby2420/via-desktop \ No newline at end of file diff --git a/apps/via-desktop.md b/apps/via-desktop.md deleted file mode 100644 index 62c2a2ec0..000000000 --- a/apps/via-desktop.md +++ /dev/null @@ -1,8 +0,0 @@ -# VIA-DESKTOP - - VIA Desktop is an Electron application designed to provide an offline experience for VIA. - - SITE: https://github.com/cebby2420/via-desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/via.md b/apps/via.md deleted file mode 100644 index b17f94ad1..000000000 --- a/apps/via.md +++ /dev/null @@ -1,8 +0,0 @@ -# VIA - - Your keyboard's best friend. - - SITE: https://caniusevia.com/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/vial b/apps/vial new file mode 100644 index 000000000..a02f2f970 --- /dev/null +++ b/apps/vial @@ -0,0 +1,3 @@ +# vial +Vial is an open-source cross-platform (Windows, Linux and Mac) GUI and a QMK fork for configuring your keyboard in real time, similar to VIA. +# SITES: https://get.vial.today/ \ No newline at end of file diff --git a/apps/vial.md b/apps/vial.md deleted file mode 100644 index 651c22dd7..000000000 --- a/apps/vial.md +++ /dev/null @@ -1,8 +0,0 @@ -# VIAL - - Vial is an open-source cross-platform (Windows, Linux and Mac) GUI and a QMK fork for configuring your keyboard in real time, similar to VIA. - - SITE: https://get.vial.today/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/vibeprint-studio b/apps/vibeprint-studio new file mode 100644 index 000000000..955ce5c49 --- /dev/null +++ b/apps/vibeprint-studio @@ -0,0 +1,4 @@ +# vibeprint-studio + Unofficial AppImage of Vibeprint Studio. +# SITES: https://github.com/pkgforge-dev/vibeprint-studio-appimage +# SOURCES: https://github.com/pkgforge-dev/vibeprint-studio-appimage \ No newline at end of file diff --git a/apps/vibeprint-studio.md b/apps/vibeprint-studio.md deleted file mode 100644 index a48b62724..000000000 --- a/apps/vibeprint-studio.md +++ /dev/null @@ -1,8 +0,0 @@ -# VIBEPRINT-STUDIO - - Unofficial AppImage of Vibeprint Studio. - - SITE: https://github.com/pkgforge-dev/vibeprint-studio-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/viber b/apps/viber new file mode 100644 index 000000000..6242e612e --- /dev/null +++ b/apps/viber @@ -0,0 +1,3 @@ +# viber +Proprietary cross-platform IM and VoIP software +# SITES: https://www.viber.com \ No newline at end of file diff --git a/apps/viber-enhanced b/apps/viber-enhanced new file mode 100644 index 000000000..6e2e2b2d4 --- /dev/null +++ b/apps/viber-enhanced @@ -0,0 +1,3 @@ +# viber-enhanced +Unofficial. Enhanced AppImage of proprietary cross-platform IM and VoIP software. +# SITES: https://github.com/pkgforge-dev/Viber-AppImage-Enhanced \ No newline at end of file diff --git a/apps/viber-enhanced.md b/apps/viber-enhanced.md deleted file mode 100644 index d0a028563..000000000 --- a/apps/viber-enhanced.md +++ /dev/null @@ -1,8 +0,0 @@ -# VIBER-ENHANCED - - Unofficial. Enhanced AppImage of proprietary cross-platform IM and VoIP software. - - SITE: https://github.com/pkgforge-dev/Viber-AppImage-Enhanced - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/viber.md b/apps/viber.md deleted file mode 100644 index 563e822fe..000000000 --- a/apps/viber.md +++ /dev/null @@ -1,8 +0,0 @@ -# VIBER - - Proprietary cross-platform IM and VoIP software - - SITE: https://www.viber.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/vice b/apps/vice new file mode 100644 index 000000000..3662b85ff --- /dev/null +++ b/apps/vice @@ -0,0 +1,4 @@ +# vice + Unofficial AppImage of VICE. +# SITES: https://github.com/pkgforge-dev/vice-appimage +# SOURCES: https://github.com/pkgforge-dev/vice-appimage \ No newline at end of file diff --git a/apps/vice.md b/apps/vice.md deleted file mode 100644 index 886ff398b..000000000 --- a/apps/vice.md +++ /dev/null @@ -1,8 +0,0 @@ -# VICE - - Unofficial AppImage of VICE. - - SITE: https://github.com/pkgforge-dev/vice-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/vicinae b/apps/vicinae new file mode 100644 index 000000000..4e9b0f00f --- /dev/null +++ b/apps/vicinae @@ -0,0 +1,3 @@ +# vicinae +A high-performance, native launcher for your desktop built with C++ and Qt. Native, fast, extensible. +# SITES: https://github.com/vicinaehq/vicinae \ No newline at end of file diff --git a/apps/vicinae.md b/apps/vicinae.md deleted file mode 100644 index 8a45a76f4..000000000 --- a/apps/vicinae.md +++ /dev/null @@ -1,8 +0,0 @@ -# VICINAE - - A high-performance, native launcher for your desktop built with C++ and Qt. Native, fast, extensible. - - SITE: https://github.com/vicinaehq/vicinae - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/vicut b/apps/vicut new file mode 100644 index 000000000..351725e33 --- /dev/null +++ b/apps/vicut @@ -0,0 +1,3 @@ +# vicut +A Vim-based, scriptable, headless text editor for the command line. +# SITES: https://github.com/km-clay/vicut \ No newline at end of file diff --git a/apps/vicut.md b/apps/vicut.md deleted file mode 100644 index 1ba8e2df6..000000000 --- a/apps/vicut.md +++ /dev/null @@ -1,8 +0,0 @@ -# VICUT - - A Vim-based, scriptable, headless text editor for the command line. - - SITE: https://github.com/km-clay/vicut - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/vidbee b/apps/vidbee new file mode 100644 index 000000000..ed0d126d1 --- /dev/null +++ b/apps/vidbee @@ -0,0 +1,3 @@ +# vidbee +Download videos from almost any website worldwide. +# SITES: https://github.com/nexmoe/VidBee \ No newline at end of file diff --git a/apps/vidbee.md b/apps/vidbee.md deleted file mode 100644 index 45e119e77..000000000 --- a/apps/vidbee.md +++ /dev/null @@ -1,8 +0,0 @@ -# VIDBEE - - Download videos from almost any website worldwide. - - SITE: https://github.com/nexmoe/VidBee - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/vidcutter b/apps/vidcutter new file mode 100644 index 000000000..cf93fb5b2 --- /dev/null +++ b/apps/vidcutter @@ -0,0 +1,3 @@ +# vidcutter +VidCutter - the simplest + fastest video cutter & joiner. +# SITES: https://github.com/ozmartian/vidcutter \ No newline at end of file diff --git a/apps/vidcutter.md b/apps/vidcutter.md deleted file mode 100644 index 3cbe3c2f5..000000000 --- a/apps/vidcutter.md +++ /dev/null @@ -1,8 +0,0 @@ -# VIDCUTTER - - VidCutter - the simplest + fastest video cutter & joiner. - - SITE: https://github.com/ozmartian/vidcutter - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/viddy b/apps/viddy new file mode 100644 index 000000000..56cecede7 --- /dev/null +++ b/apps/viddy @@ -0,0 +1,3 @@ +# viddy +👀 A modern watch command. Time machine and pager etc. +# SITES: https://github.com/sachaos/viddy \ No newline at end of file diff --git a/apps/viddy.md b/apps/viddy.md deleted file mode 100644 index 3764121cf..000000000 --- a/apps/viddy.md +++ /dev/null @@ -1,8 +0,0 @@ -# VIDDY - - 👀 A modern watch command. Time machine and pager etc. - - SITE: https://github.com/sachaos/viddy - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/video-hub b/apps/video-hub new file mode 100644 index 000000000..302d529d2 --- /dev/null +++ b/apps/video-hub @@ -0,0 +1,3 @@ +# video-hub +Video Hub App 3 is the fastest way to browse and search for videos on your computer. Think of it like YouTube for videos on your computer: browse, search, and preview. Works on Windows, Mac, and Linux! +# SITES: https://github.com/whyboris/Video-Hub-App \ No newline at end of file diff --git a/apps/video-hub.md b/apps/video-hub.md deleted file mode 100644 index a6b15631a..000000000 --- a/apps/video-hub.md +++ /dev/null @@ -1,8 +0,0 @@ -# VIDEO-HUB - - Video Hub App 3 is the fastest way to browse and search for videos on your computer. Think of it like YouTube for videos on your computer: browse, search, and preview. Works on Windows, Mac, and Linux! - - SITE: https://github.com/whyboris/Video-Hub-App - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/video-trimmer b/apps/video-trimmer new file mode 100644 index 000000000..e1fcfed2e --- /dev/null +++ b/apps/video-trimmer @@ -0,0 +1,3 @@ +# video-trimmer +Unofficial. Simple video trimming, with option to trim precisely or to trim without loosing video quality. +# SITES: https://github.com/pkgforge-dev/Video-Trimmer-AppImage \ No newline at end of file diff --git a/apps/video-trimmer.md b/apps/video-trimmer.md deleted file mode 100644 index c6eca0e7e..000000000 --- a/apps/video-trimmer.md +++ /dev/null @@ -1,8 +0,0 @@ -# VIDEO-TRIMMER - - Unofficial. Simple video trimming, with option to trim precisely or to trim without loosing video quality. - - SITE: https://github.com/pkgforge-dev/Video-Trimmer-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/videomass b/apps/videomass new file mode 100644 index 000000000..0909674ff --- /dev/null +++ b/apps/videomass @@ -0,0 +1,3 @@ +# videomass +Videomass is a free, open source and cross-platform GUI for FFmpeg and +# SITES: https://github.com/jeanslack/Videomass \ No newline at end of file diff --git a/apps/videomass.md b/apps/videomass.md deleted file mode 100644 index 67ae4aa4e..000000000 --- a/apps/videomass.md +++ /dev/null @@ -1,8 +0,0 @@ -# VIDEOMASS - - Videomass is a free, open source and cross-platform GUI for FFmpeg and - - SITE: https://github.com/jeanslack/Videomass - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/vieb b/apps/vieb new file mode 100644 index 000000000..e9ec017c0 --- /dev/null +++ b/apps/vieb @@ -0,0 +1,3 @@ +# vieb +Vim Inspired Electron Browser +# SITES: https://github.com/Jelmerro/Vieb \ No newline at end of file diff --git a/apps/vieb.md b/apps/vieb.md deleted file mode 100644 index bfc26d8ad..000000000 --- a/apps/vieb.md +++ /dev/null @@ -1,8 +0,0 @@ -# VIEB - - Vim Inspired Electron Browser - - SITE: https://github.com/Jelmerro/Vieb - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/vifm b/apps/vifm new file mode 100644 index 000000000..ac6fc896b --- /dev/null +++ b/apps/vifm @@ -0,0 +1,3 @@ +# vifm +Vifm is a file manager with curses interface, which provides Vim-like environment for managing objects within file systems, extended with some useful ideas from mutt. +# SITES: https://github.com/vifm/vifm \ No newline at end of file diff --git a/apps/vifm.md b/apps/vifm.md deleted file mode 100644 index 0f4ae5999..000000000 --- a/apps/vifm.md +++ /dev/null @@ -1,7 +0,0 @@ -# VIFM - - Vifm is a file manager with curses interface, which provides Vim-like environment for managing objects within file systems, extended with some useful ideas from mutt. - - SITE: https://github.com/vifm/vifm - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/vigad b/apps/vigad new file mode 100644 index 000000000..2bc64da68 --- /dev/null +++ b/apps/vigad @@ -0,0 +1,3 @@ +# vigad +Extract live-data from your screen. +# SITES: https://vigad.wordpress.com/ \ No newline at end of file diff --git a/apps/vigad.md b/apps/vigad.md deleted file mode 100644 index 1c4219131..000000000 --- a/apps/vigad.md +++ /dev/null @@ -1,8 +0,0 @@ -# VIGAD - - Extract live-data from your screen. - - SITE: https://vigad.wordpress.com/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/vikunja b/apps/vikunja new file mode 100644 index 000000000..808fed8e0 --- /dev/null +++ b/apps/vikunja @@ -0,0 +1,3 @@ +# vikunja +The open-source, self-hostable to-do app. +# SITES: https://vikunja.io/ \ No newline at end of file diff --git a/apps/vikunja.md b/apps/vikunja.md deleted file mode 100644 index 662ed3f0f..000000000 --- a/apps/vikunja.md +++ /dev/null @@ -1,8 +0,0 @@ -# VIKUNJA - - The open-source, self-hostable to-do app. - - SITE: https://vikunja.io/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/vimeo-dl b/apps/vimeo-dl new file mode 100644 index 000000000..2c8b87440 --- /dev/null +++ b/apps/vimeo-dl @@ -0,0 +1,3 @@ +# vimeo-dl +A cli tool to download private videos on vimeo. Written in golang. +# SITES: https://github.com/akiomik/vimeo-dl \ No newline at end of file diff --git a/apps/vimeo-dl.md b/apps/vimeo-dl.md deleted file mode 100644 index 7647df783..000000000 --- a/apps/vimeo-dl.md +++ /dev/null @@ -1,8 +0,0 @@ -# VIMEO-DL - - A cli tool to download private videos on vimeo. Written in golang. - - SITE: https://github.com/akiomik/vimeo-dl - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/viper b/apps/viper new file mode 100644 index 000000000..7cda8f7bc --- /dev/null +++ b/apps/viper @@ -0,0 +1,3 @@ +# viper +Launcher+Updater for TF|2 Northstar. +# SITES: https://github.com/0neGal/viper \ No newline at end of file diff --git a/apps/viper-browser b/apps/viper-browser new file mode 100644 index 000000000..cc57aac38 --- /dev/null +++ b/apps/viper-browser @@ -0,0 +1,3 @@ +# viper-browser +Fast and lightweight Qt web browser +# SITES: https://github.com/LeFroid/Viper-Browser \ No newline at end of file diff --git a/apps/viper-browser.md b/apps/viper-browser.md deleted file mode 100644 index 7225b83ed..000000000 --- a/apps/viper-browser.md +++ /dev/null @@ -1,8 +0,0 @@ -# VIPER-BROWSER - - Fast and lightweight Qt web browser - - SITE: https://github.com/LeFroid/Viper-Browser - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/viper.md b/apps/viper.md deleted file mode 100644 index dc873ce4f..000000000 --- a/apps/viper.md +++ /dev/null @@ -1,8 +0,0 @@ -# VIPER - - Launcher+Updater for TF|2 Northstar. - - SITE: https://github.com/0neGal/viper - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/vipster b/apps/vipster new file mode 100644 index 000000000..60345bdfa --- /dev/null +++ b/apps/vipster @@ -0,0 +1,3 @@ +# vipster +Visual periodic structure editor +# SITES: https://github.com/sgsaenger/vipster \ No newline at end of file diff --git a/apps/vipster.md b/apps/vipster.md deleted file mode 100644 index ef4d826a1..000000000 --- a/apps/vipster.md +++ /dev/null @@ -1,8 +0,0 @@ -# VIPSTER - - Visual periodic structure editor - - SITE: https://github.com/sgsaenger/vipster - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/vircadia b/apps/vircadia new file mode 100644 index 000000000..8640143d7 --- /dev/null +++ b/apps/vircadia @@ -0,0 +1,3 @@ +# vircadia +An open-source 3D interface and server foundation that allows for vast social, educational platforms to be created and lived in while also being shared in real-time with others. +# SITES: https://vircadia.com/ \ No newline at end of file diff --git a/apps/vircadia.md b/apps/vircadia.md deleted file mode 100644 index 28c4547e8..000000000 --- a/apps/vircadia.md +++ /dev/null @@ -1,8 +0,0 @@ -# VIRCADIA - - An open-source 3D interface and server foundation that allows for vast social, educational platforms to be created and lived in while also being shared in real-time with others. - - SITE: https://vircadia.com/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/virt-manager b/apps/virt-manager new file mode 100644 index 000000000..627610347 --- /dev/null +++ b/apps/virt-manager @@ -0,0 +1,3 @@ +# virt-manager +Unofficial AppImage of virt-manager, interface for managing virtual machines. +# SITES: https://github.com/pkgforge-dev/virt-manager-AppImage \ No newline at end of file diff --git a/apps/virt-manager.md b/apps/virt-manager.md deleted file mode 100644 index 8479eb16e..000000000 --- a/apps/virt-manager.md +++ /dev/null @@ -1,8 +0,0 @@ -# VIRT-MANAGER - - Unofficial AppImage of virt-manager, interface for managing virtual machines. - - SITE: https://github.com/pkgforge-dev/virt-manager-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/virtscreen b/apps/virtscreen new file mode 100644 index 000000000..b7c64395e --- /dev/null +++ b/apps/virtscreen @@ -0,0 +1,3 @@ +# virtscreen +Make your iPad/tablet/computer into a secondary monitor on Linux. +# SITES: https://github.com/kbumsik/VirtScreen \ No newline at end of file diff --git a/apps/virtscreen.md b/apps/virtscreen.md deleted file mode 100644 index e8fd0f8e8..000000000 --- a/apps/virtscreen.md +++ /dev/null @@ -1,8 +0,0 @@ -# VIRTSCREEN - - Make your iPad/tablet/computer into a secondary monitor on Linux. - - SITE: https://github.com/kbumsik/VirtScreen - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/virtualbox b/apps/virtualbox new file mode 100644 index 000000000..cf46f7186 --- /dev/null +++ b/apps/virtualbox @@ -0,0 +1,11 @@ +# virtualbox +VirtualBox is a powerful x86 and AMD64/Intel64 virtualization product for enterprise as well as home use. Not only is VirtualBox an extremely feature rich, high performance product for enterprise customers, it is also the only professional solution that is freely available as Open Source Software under the terms of the GNU General Public License (GPL) version 3. + + VirtualBox is a community effort backed by a dedicated company: everyone is encouraged to contribute while Oracle ensures the product always meets professional quality criteria. + + This script provides the Unofficial "Archimage" (AppImage built on top of an Arch Linux container). + + It is based on VirtualBox KVM, not to depend on the "vboxdrv" driver. +# SCREENSHOTS: https://github.com/user-attachments/assets/2b3b9741-25bd-4f77-b753-6cd46762c567 https://github.com/user-attachments/assets/4b231fd4-555a-46eb-b22b-f84a174ddcd1 https://github.com/user-attachments/assets/cf5d1029-f1e6-427e-b3e6-54cbdf3e288f https://github.com/user-attachments/assets/1346ef50-f524-4ee7-9134-454546865d6e https://github.com/user-attachments/assets/cadb3c0b-6e64-4a95-ba19-aaac6f65f34d https://github.com/user-attachments/assets/8ff8a8db-5b92-4e55-b4cd-5aaa191e204a +# SITES: https://www.virtualbox.org +# SOURCES: https://github.com/ivan-hc/VirtualBox-appimage \ No newline at end of file diff --git a/apps/virtualbox.md b/apps/virtualbox.md deleted file mode 100644 index 94b4c1a30..000000000 --- a/apps/virtualbox.md +++ /dev/null @@ -1,20 +0,0 @@ -# VIRTUALBOX - - VirtualBox is a powerful x86 and AMD64/Intel64 virtualization product for enterprise as well as home use. Not only is VirtualBox an extremely feature rich, high performance product for enterprise customers, it is also the only professional solution that is freely available as Open Source Software under the terms of the GNU General Public License (GPL) version 3. - - VirtualBox is a community effort backed by a dedicated company: everyone is encouraged to contribute while Oracle ensures the product always meets professional quality criteria. - - This script provides the Unofficial "Archimage" (AppImage built on top of an Arch Linux container). - - It is based on VirtualBox KVM, not to depend on the "vboxdrv" driver. - -| ![Screenshot](https://github.com/user-attachments/assets/2b3b9741-25bd-4f77-b753-6cd46762c567) | ![Screenshot](https://github.com/user-attachments/assets/4b231fd4-555a-46eb-b22b-f84a174ddcd1) | ![Screenshot](https://github.com/user-attachments/assets/cf5d1029-f1e6-427e-b3e6-54cbdf3e288f) | -| - | - | - | -| ![Screenshot](https://github.com/user-attachments/assets/1346ef50-f524-4ee7-9134-454546865d6e) | ![Screenshot](https://github.com/user-attachments/assets/cadb3c0b-6e64-4a95-ba19-aaac6f65f34d) | ![Screenshot](https://github.com/user-attachments/assets/8ff8a8db-5b92-4e55-b4cd-5aaa191e204a) | - - SITE: https://www.virtualbox.org - - UNOFFICIAL APPIMAGE: https://github.com/ivan-hc/VirtualBox-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/visipics b/apps/visipics new file mode 100644 index 000000000..2cb11d6c2 --- /dev/null +++ b/apps/visipics @@ -0,0 +1,13 @@ +# visipics +VisiPics is a software for Windows PCs designed specifically to find and remove duplicate pictures. It can be a handy tool if you have a large collection of photos and suspect there might be a lot of redundancy. Here’s a breakdown of what VisiPics does: + + - Finds duplicates: VisiPics employs various image comparison techniques to identify duplicate photos on your hard drive. It can find exact matches and even similar images with slight modifications. + - Multiple filters: The software offers several filters that allow you to adjust the search criteria for finding duplicates, giving you more control over the process. + - Safe deletion: VisiPics sends duplicate images to the recycle bin by default, ensuring you can recover them accidentally if needed. It’s recommended to review the identified duplicates before permanent deletion. + - Fast processing: VisiPics is known for its speed compared to other duplicate finder programs. You can continue using your computer while it scans your photos in the background. + + However, it’s important to note that VisiPics only works with pictures and isn’t designed to find duplicate files of other formats like documents or videos. Also, the latest version was released in 2013, so there might be more feature-rich options available. + + This is the Unofficial AppImage built with "wine32-deploy" and powered by "wine". +# SITES: https://visipics.info +# SOURCES: https://github.com/ivan-hc/visipics-appimage \ No newline at end of file diff --git a/apps/visipics.md b/apps/visipics.md deleted file mode 100644 index 647c7572c..000000000 --- a/apps/visipics.md +++ /dev/null @@ -1,25 +0,0 @@ -# VISIPICS - - VisiPics is a software for Windows PCs designed specifically to find and remove duplicate pictures. It can be a handy tool if you have a large collection of photos and suspect there might be a lot of redundancy. Here’s a breakdown of what VisiPics does: - - - Finds duplicates: VisiPics employs various image comparison techniques to identify duplicate photos on your hard drive. It can find exact matches and even similar images with slight modifications. - - Multiple filters: The software offers several filters that allow you to adjust the search criteria for finding duplicates, giving you more control over the process. - - Safe deletion: VisiPics sends duplicate images to the recycle bin by default, ensuring you can recover them accidentally if needed. It’s recommended to review the identified duplicates before permanent deletion. - - Fast processing: VisiPics is known for its speed compared to other duplicate finder programs. You can continue using your computer while it scans your photos in the background. - - However, it’s important to note that VisiPics only works with pictures and isn’t designed to find duplicate files of other formats like documents or videos. Also, the latest version was released in 2013, so there might be more feature-rich options available. - - This is the Unofficial AppImage built with "wine32-deploy" and powered by "wine". - - NOTE: being a software to be executed manually through "wine" during the assembly, this AppImage package has been manually uploaded among the releases of the repository indicated below, and not automatically through github actions, so the code for the compilation is not available except through the guide for "wine32-deploy", with which you can compile it yourself, in the same way, following the instructions. - - As an author, I recommend using "czkawka" instead of "visipics". - - SITE: https://visipics.info - - UNOFFICIAL APPIMAGE: https://github.com/ivan-hc/visipics-appimage - - BASED ON: https://github.com/sudo-give-me-coffee/wine32-deploy - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/visual-define-xml-editor b/apps/visual-define-xml-editor new file mode 100644 index 000000000..3175fdbf3 --- /dev/null +++ b/apps/visual-define-xml-editor @@ -0,0 +1,3 @@ +# visual-define-xml-editor +Editor for CDISC Define-XML standard +# SITES: https://github.com/defineEditor/editor \ No newline at end of file diff --git a/apps/visual-define-xml-editor.md b/apps/visual-define-xml-editor.md deleted file mode 100644 index ced5405cf..000000000 --- a/apps/visual-define-xml-editor.md +++ /dev/null @@ -1,8 +0,0 @@ -# VISUAL-DEFINE-XML-EDITOR - - Editor for CDISC Define-XML standard - - SITE: https://github.com/defineEditor/editor - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/visual-lvm b/apps/visual-lvm new file mode 100644 index 000000000..255d03057 --- /dev/null +++ b/apps/visual-lvm @@ -0,0 +1,3 @@ +# visual-lvm +Visual LVM the remote gui lvm manager for all linux platform. +# SITES: https://github.com/welees/visual-lvm \ No newline at end of file diff --git a/apps/visual-lvm.md b/apps/visual-lvm.md deleted file mode 100644 index 49c2fcaa2..000000000 --- a/apps/visual-lvm.md +++ /dev/null @@ -1,8 +0,0 @@ -# VISUAL-LVM - - Visual LVM the remote gui lvm manager for all linux platform. - - SITE: https://github.com/welees/visual-lvm - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/visual-studio-code b/apps/visual-studio-code new file mode 100644 index 000000000..6727df43c --- /dev/null +++ b/apps/visual-studio-code @@ -0,0 +1,4 @@ +# visual-studio-code + Unofficial AppImage of Visual Studio Code. +# SITES: https://github.com/pkgforge-dev/visual-studio-code-appimage +# SOURCES: https://github.com/pkgforge-dev/visual-studio-code-appimage \ No newline at end of file diff --git a/apps/visual-studio-code.md b/apps/visual-studio-code.md deleted file mode 100644 index 5fa6451d2..000000000 --- a/apps/visual-studio-code.md +++ /dev/null @@ -1,8 +0,0 @@ -# VISUAL-STUDIO-CODE - - Unofficial AppImage of Visual Studio Code. - - SITE: https://github.com/pkgforge-dev/visual-studio-code-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/visualboyadvance-m b/apps/visualboyadvance-m new file mode 100644 index 000000000..7252d0495 --- /dev/null +++ b/apps/visualboyadvance-m @@ -0,0 +1,4 @@ +# visualboyadvance-m + Unofficial AppImage of VisualBoyAdvance-M. +# SITES: https://github.com/pkgforge-dev/visualboyadvance-m-appimage +# SOURCES: https://github.com/pkgforge-dev/visualboyadvance-m-appimage \ No newline at end of file diff --git a/apps/visualboyadvance-m.md b/apps/visualboyadvance-m.md deleted file mode 100644 index b2e3df709..000000000 --- a/apps/visualboyadvance-m.md +++ /dev/null @@ -1,8 +0,0 @@ -# VISUALBOYADVANCE-M - - Unofficial AppImage of VisualBoyAdvance-M. - - SITE: https://github.com/pkgforge-dev/visualboyadvance-m-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/visualfamilytree b/apps/visualfamilytree new file mode 100644 index 000000000..f85e5b6b9 --- /dev/null +++ b/apps/visualfamilytree @@ -0,0 +1,4 @@ +# visualfamilytree +Create a family tree with extensive information and pictures about the individual family members. +# SITES: https://visualfamilytree.jisco.me +# SOURCES: https://github.com/Jisco/VisualFamilyTree \ No newline at end of file diff --git a/apps/visualfamilytree.md b/apps/visualfamilytree.md deleted file mode 100644 index b1098fb2d..000000000 --- a/apps/visualfamilytree.md +++ /dev/null @@ -1,10 +0,0 @@ -# VISUALFAMILYTREE - - Create a family tree with extensive information and pictures about the individual family members. - - SITE: https://visualfamilytree.jisco.me - - SOURCE: https://github.com/Jisco/VisualFamilyTree - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/vita3k b/apps/vita3k new file mode 100644 index 000000000..25c1873e3 --- /dev/null +++ b/apps/vita3k @@ -0,0 +1,3 @@ +# vita3k +Experimental PlayStation Vita emulator +# SITES: https://github.com/Vita3K/Vita3K \ No newline at end of file diff --git a/apps/vita3k.md b/apps/vita3k.md deleted file mode 100644 index 130aed61e..000000000 --- a/apps/vita3k.md +++ /dev/null @@ -1,8 +0,0 @@ -# VITA3K - - Experimental PlayStation Vita emulator - - SITE: https://github.com/Vita3K/Vita3K - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/vitomu b/apps/vitomu new file mode 100644 index 000000000..989bd2b3d --- /dev/null +++ b/apps/vitomu @@ -0,0 +1,3 @@ +# vitomu +Easy to use video to audio converter. +# SITES: https://github.com/digimezzo/vitomu \ No newline at end of file diff --git a/apps/vitomu.md b/apps/vitomu.md deleted file mode 100644 index c8fefd343..000000000 --- a/apps/vitomu.md +++ /dev/null @@ -1,8 +0,0 @@ -# VITOMU - - Easy to use video to audio converter. - - SITE: https://github.com/digimezzo/vitomu - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/viu b/apps/viu new file mode 100644 index 000000000..a0fef0289 --- /dev/null +++ b/apps/viu @@ -0,0 +1,3 @@ +# viu +Terminal image viewer with native support for iTerm and Kitty +# SITES: https://github.com/atanunq/viu \ No newline at end of file diff --git a/apps/viu.md b/apps/viu.md deleted file mode 100644 index 6d1f9d1d6..000000000 --- a/apps/viu.md +++ /dev/null @@ -1,8 +0,0 @@ -# VIU - - Terminal image viewer with native support for iTerm and Kitty - - SITE: https://github.com/atanunq/viu - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/vivaldi-snapshot b/apps/vivaldi-snapshot new file mode 100644 index 000000000..d9fd821e2 --- /dev/null +++ b/apps/vivaldi-snapshot @@ -0,0 +1,8 @@ +# vivaldi-snapshot +Vivaldi is an advanced chromium-based web browser made with the power user in mind. + + Desktop Snapshots are work-in-progress builds that are available for anyone to download and test. + + This is the unofficial AppImage. +# SCREENSHOTS: https://vivaldi.com/wp-content/uploads/vivaldi_og.png +# SITES: https://vivaldi.com \ No newline at end of file diff --git a/apps/vivaldi-snapshot.md b/apps/vivaldi-snapshot.md deleted file mode 100644 index 6f9dd98f8..000000000 --- a/apps/vivaldi-snapshot.md +++ /dev/null @@ -1,16 +0,0 @@ -# VIVALDI-SNAPSHOT - - Vivaldi is an advanced chromium-based web browser made with the power user in mind. - - Desktop Snapshots are work-in-progress builds that are available for anyone to download and test. - - This is the unofficial AppImage. - - ![Screenshot](https://vivaldi.com/wp-content/uploads/vivaldi_og.png) - - SITE: https://vivaldi.com - - UNOFFICIAL APPIMAGE x86_64: https://github.com/ivan-hc/Vivaldi-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/vivaldi-stable b/apps/vivaldi-stable new file mode 100644 index 000000000..4b422f599 --- /dev/null +++ b/apps/vivaldi-stable @@ -0,0 +1,6 @@ +# vivaldi-stable +Vivaldi is an advanced chromium-based web browser made with the power user in mind. + + This is the unofficial AppImage. +# SCREENSHOTS: https://vivaldi.com/wp-content/uploads/vivaldi_og.png +# SITES: https://vivaldi.com \ No newline at end of file diff --git a/apps/vivaldi-stable.md b/apps/vivaldi-stable.md deleted file mode 100644 index 8739eef6c..000000000 --- a/apps/vivaldi-stable.md +++ /dev/null @@ -1,14 +0,0 @@ -# VIVALDI-STABLE - - Vivaldi is an advanced chromium-based web browser made with the power user in mind. - - This is the unofficial AppImage. - - ![Screenshot](https://vivaldi.com/wp-content/uploads/vivaldi_og.png) - - SITE: https://vivaldi.com - - UNOFFICIAL APPIMAGE x86_64: https://github.com/ivan-hc/Vivaldi-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/vivifyscrum b/apps/vivifyscrum new file mode 100644 index 000000000..9bcb3d1cc --- /dev/null +++ b/apps/vivifyscrum @@ -0,0 +1,3 @@ +# vivifyscrum +VivifyScrum - Agile Tool for Professionals +# SITES: https://github.com/Vivify-Ideas/vivifyscrum2-electron \ No newline at end of file diff --git a/apps/vivifyscrum.md b/apps/vivifyscrum.md deleted file mode 100644 index 692465759..000000000 --- a/apps/vivifyscrum.md +++ /dev/null @@ -1,8 +0,0 @@ -# VIVIFYSCRUM - - VivifyScrum - Agile Tool for Professionals - - SITE: https://github.com/Vivify-Ideas/vivifyscrum2-electron - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/vizgraph b/apps/vizgraph new file mode 100644 index 000000000..efc380eee --- /dev/null +++ b/apps/vizgraph @@ -0,0 +1,3 @@ +# vizgraph +A simple tool for Using Graphviz. +# SITES: https://github.com/jcf94/vizgraph \ No newline at end of file diff --git a/apps/vizgraph.md b/apps/vizgraph.md deleted file mode 100644 index 8b4a9c1e4..000000000 --- a/apps/vizgraph.md +++ /dev/null @@ -1,8 +0,0 @@ -# VIZGRAPH - - A simple tool for Using Graphviz. - - SITE: https://github.com/jcf94/vizgraph - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/vk-desktop b/apps/vk-desktop new file mode 100644 index 000000000..58cb1b3bd --- /dev/null +++ b/apps/vk-desktop @@ -0,0 +1,3 @@ +# vk-desktop +Cross-platform client VKontakte. Кроссплатформенный клиент ВКонтакте. +# SITES: https://github.com/danyadev/vk-desktop \ No newline at end of file diff --git a/apps/vk-desktop.md b/apps/vk-desktop.md deleted file mode 100644 index 7598a6aba..000000000 --- a/apps/vk-desktop.md +++ /dev/null @@ -1,8 +0,0 @@ -# VK-DESKTOP - - Cross-platform client VKontakte. Кроссплатформенный клиент ВКонтакте. - - SITE: https://github.com/danyadev/vk-desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/vk-music-fs b/apps/vk-music-fs new file mode 100644 index 000000000..b04262275 --- /dev/null +++ b/apps/vk-music-fs @@ -0,0 +1,3 @@ +# vk-music-fs +The program makes it possible to listen to the music from VK using your favorite player and copy songs to your PC. Searching and obtaining Mp3 files from "My audios" is supported. Missing ID3v2 tags are automatically added. +# SITES: https://github.com/vodka2/vk-music-fs \ No newline at end of file diff --git a/apps/vk-music-fs.md b/apps/vk-music-fs.md deleted file mode 100644 index f6fdcf321..000000000 --- a/apps/vk-music-fs.md +++ /dev/null @@ -1,8 +0,0 @@ -# VK-MUSIC-FS - - The program makes it possible to listen to the music from VK using your favorite player and copy songs to your PC. Searching and obtaining Mp3 files from "My audios" is supported. Missing ID3v2 tags are automatically added. - - SITE: https://github.com/vodka2/vk-music-fs - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/vkdt b/apps/vkdt new file mode 100644 index 000000000..6b6f24b0e --- /dev/null +++ b/apps/vkdt @@ -0,0 +1,3 @@ +# vkdt +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. +# SITES: https://github.com/hanatos/vkdt \ No newline at end of file diff --git a/apps/vkdt.md b/apps/vkdt.md deleted file mode 100644 index 692239a4c..000000000 --- a/apps/vkdt.md +++ /dev/null @@ -1,8 +0,0 @@ -# VKDT - - 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. - - SITE: https://github.com/hanatos/vkdt - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/vkquake b/apps/vkquake new file mode 100644 index 000000000..9c16cfc71 --- /dev/null +++ b/apps/vkquake @@ -0,0 +1,3 @@ +# vkquake +Vulkan Quake game port based on QuakeSpasm. +# SITES: https://github.com/Novum/vkQuake \ No newline at end of file diff --git a/apps/vkquake.md b/apps/vkquake.md deleted file mode 100644 index 9c3b05dd7..000000000 --- a/apps/vkquake.md +++ /dev/null @@ -1,8 +0,0 @@ -# VKQUAKE - - Vulkan Quake game port based on QuakeSpasm. - - SITE: https://github.com/Novum/vkQuake - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/vlc b/apps/vlc new file mode 100644 index 000000000..a96379762 --- /dev/null +++ b/apps/vlc @@ -0,0 +1,7 @@ +# vlc +VLC is a free and open source cross-platform multimedia player and framework that plays most multimedia files as well as DVDs, Audio CDs, VCDs, and various streaming protocols. + + This is the unofficial AppImage built on top of JuNest, the lightweight Arch Linux based distro that runs on top of any other Linux distro. This kind of AppImage runs on any GNU/Linux distro old or newer, with at least the Linux kernel 3+. +# SCREENSHOTS: https://upload.wikimedia.org/wikipedia/commons/d/d7/Vlc.png +# SITES: https://www.videolan.org +# SOURCES: https://archlinux.org/packages/extra/x86_64/vlc https://github.com/ivan-hc/VLC-appimage \ No newline at end of file diff --git a/apps/vlc-git b/apps/vlc-git new file mode 100644 index 000000000..0588e2154 --- /dev/null +++ b/apps/vlc-git @@ -0,0 +1,11 @@ +# vlc-git +VLC is a free and open source cross-platform multimedia player and framework that plays most multimedia files as well as DVDs, Audio CDs, VCDs, and various streaming protocols. + + This is the unstable build from the development branch. + + This is pre-built using the "vlc-git" package from ChaoticAUR. + + This is the unofficial AppImage built on top of JuNest, the lightweight Arch Linux based distro that runs on top of any other Linux distro. +# SCREENSHOTS: https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io/assets/88724353/6d2747e1-e485-4216-ab87-b65d57713bf2 https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io/assets/88724353/7f73b92b-b619-480e-91f8-8911aa1c80ea +# SITES: https://www.videolan.org +# SOURCES: https://aur.archlinux.org/packages/vlc-git https://aur.chaotic.cx/ https://github.com/ivan-hc/VLC-appimage \ No newline at end of file diff --git a/apps/vlc-git.md b/apps/vlc-git.md deleted file mode 100644 index 579ec6f40..000000000 --- a/apps/vlc-git.md +++ /dev/null @@ -1,21 +0,0 @@ -# VLC-GIT - - VLC is a free and open source cross-platform multimedia player and framework that plays most multimedia files as well as DVDs, Audio CDs, VCDs, and various streaming protocols. - - This is the unstable build from the development branch. - - This is pre-built using the "vlc-git" package from ChaoticAUR. - - This is the unofficial AppImage built on top of JuNest, the lightweight Arch Linux based distro that runs on top of any other Linux distro. - - ![Screenshot](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io/assets/88724353/6d2747e1-e485-4216-ab87-b65d57713bf2) - ![Screenshot](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io/assets/88724353/7f73b92b-b619-480e-91f8-8911aa1c80ea) - - SITE: https://www.videolan.org - - SOURCES: https://aur.archlinux.org/packages/vlc-git https://aur.chaotic.cx/ - - APPIMAGE: https://github.com/ivan-hc/VLC-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/vlc.md b/apps/vlc.md deleted file mode 100644 index 0be1e6c6d..000000000 --- a/apps/vlc.md +++ /dev/null @@ -1,16 +0,0 @@ -# VLC - - VLC is a free and open source cross-platform multimedia player and framework that plays most multimedia files as well as DVDs, Audio CDs, VCDs, and various streaming protocols. - - This is the unofficial AppImage built on top of JuNest, the lightweight Arch Linux based distro that runs on top of any other Linux distro. This kind of AppImage runs on any GNU/Linux distro old or newer, with at least the Linux kernel 3+. - - ![Screenshot](https://upload.wikimedia.org/wikipedia/commons/d/d7/Vlc.png) - - SITE: https://www.videolan.org - - SOURCE: https://archlinux.org/packages/extra/x86_64/vlc - - APPIMAGE: https://github.com/ivan-hc/VLC-appimage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/vnote b/apps/vnote new file mode 100644 index 000000000..2c2bae84d --- /dev/null +++ b/apps/vnote @@ -0,0 +1,3 @@ +# vnote +Note-taking application for pleasant Markdown +# SITES: https://github.com/tamlok/vnote \ No newline at end of file diff --git a/apps/vnote.md b/apps/vnote.md deleted file mode 100644 index ab6ee30c3..000000000 --- a/apps/vnote.md +++ /dev/null @@ -1,8 +0,0 @@ -# VNOTE - - Note-taking application for pleasant Markdown - - SITE: https://github.com/tamlok/vnote - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/vocabsieve b/apps/vocabsieve new file mode 100644 index 000000000..05abdbd65 --- /dev/null +++ b/apps/vocabsieve @@ -0,0 +1,3 @@ +# vocabsieve +Simple sentence mining tool for language learning. +# SITES: https://github.com/FreeLanguageTools/vocabsieve \ No newline at end of file diff --git a/apps/vocabsieve.md b/apps/vocabsieve.md deleted file mode 100644 index 11b2e9a95..000000000 --- a/apps/vocabsieve.md +++ /dev/null @@ -1,8 +0,0 @@ -# VOCABSIEVE - - Simple sentence mining tool for language learning. - - SITE: https://github.com/FreeLanguageTools/vocabsieve - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/voicevox b/apps/voicevox new file mode 100644 index 000000000..c1b91c727 --- /dev/null +++ b/apps/voicevox @@ -0,0 +1,4 @@ +# voicevox +Offical Frontend for the free VOICEVOX TTS Engine +# SITES: https://voicevox.hiroshiba.jp +# SOURCES: https://github.com/VOICEVOX/voicevox \ No newline at end of file diff --git a/apps/voicevox.md b/apps/voicevox.md deleted file mode 100644 index 7d2d7312d..000000000 --- a/apps/voicevox.md +++ /dev/null @@ -1,10 +0,0 @@ -# VOICEVOX - - Offical Frontend for the free VOICEVOX TTS Engine - - SITE: https://voicevox.hiroshiba.jp - - SOURCE: https://github.com/VOICEVOX/voicevox - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/vokoscreenng b/apps/vokoscreenng new file mode 100644 index 000000000..bd4c04439 --- /dev/null +++ b/apps/vokoscreenng @@ -0,0 +1,3 @@ +# vokoscreenng +Unofficial, a powerful screencast creator. +# SITES: https://github.com/pkgforge-dev/vokoscreenNG-AppImage \ No newline at end of file diff --git a/apps/vokoscreenng.md b/apps/vokoscreenng.md deleted file mode 100644 index 24d5fda27..000000000 --- a/apps/vokoscreenng.md +++ /dev/null @@ -1,8 +0,0 @@ -# VOKOSCREENNG - - Unofficial, a powerful screencast creator. - - SITE: https://github.com/pkgforge-dev/vokoscreenNG-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/volaris b/apps/volaris new file mode 100644 index 000000000..83a5850e7 --- /dev/null +++ b/apps/volaris @@ -0,0 +1,3 @@ +# volaris +Volaris-Gui is the wrapper for Volaris, a secure file encryption software. +# SITES: https://github.com/volar-is/volaris-gui \ No newline at end of file diff --git a/apps/volaris.md b/apps/volaris.md deleted file mode 100644 index fc929779b..000000000 --- a/apps/volaris.md +++ /dev/null @@ -1,8 +0,0 @@ -# VOLARIS - - Volaris-Gui is the wrapper for Volaris, a secure file encryption software. - - SITE: https://github.com/volar-is/volaris-gui - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/vpaint b/apps/vpaint new file mode 100644 index 000000000..4b66f21cd --- /dev/null +++ b/apps/vpaint @@ -0,0 +1,3 @@ +# vpaint +Vector-Based Animation Editor +# SITES: https://github.com/dalboris/vpaint \ No newline at end of file diff --git a/apps/vpaint.md b/apps/vpaint.md deleted file mode 100644 index 6cb901cee..000000000 --- a/apps/vpaint.md +++ /dev/null @@ -1,8 +0,0 @@ -# VPAINT - - Vector-Based Animation Editor - - SITE: https://github.com/dalboris/vpaint - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/vrcft-avalonia b/apps/vrcft-avalonia new file mode 100644 index 000000000..df6adcf17 --- /dev/null +++ b/apps/vrcft-avalonia @@ -0,0 +1,3 @@ +# vrcft-avalonia +Cross-platform VRCFaceTracking made with Avalonia. +# SITES: https://github.com/dfgHiatus/VRCFaceTracking.Avalonia \ No newline at end of file diff --git a/apps/vrcft-avalonia.md b/apps/vrcft-avalonia.md deleted file mode 100644 index 99b288373..000000000 --- a/apps/vrcft-avalonia.md +++ /dev/null @@ -1,8 +0,0 @@ -# VRCFT-AVALONIA - - Cross-platform VRCFaceTracking made with Avalonia. - - SITE: https://github.com/dfgHiatus/VRCFaceTracking.Avalonia - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/vrcx b/apps/vrcx new file mode 100644 index 000000000..35cb9def5 --- /dev/null +++ b/apps/vrcx @@ -0,0 +1,3 @@ +# vrcx +Friendship management tool for VRChat. +# SITES: https://github.com/vrcx-team/VRCX \ No newline at end of file diff --git a/apps/vrcx.md b/apps/vrcx.md deleted file mode 100644 index 41a8f22b4..000000000 --- a/apps/vrcx.md +++ /dev/null @@ -1,8 +0,0 @@ -# VRCX - - Friendship management tool for VRChat. - - SITE: https://github.com/vrcx-team/VRCX - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/vrest-ng b/apps/vrest-ng new file mode 100644 index 000000000..623ea256e --- /dev/null +++ b/apps/vrest-ng @@ -0,0 +1,3 @@ +# vrest-ng +vREST NG - Zero code API test automation solution. +# SITES: https://vrest.io \ No newline at end of file diff --git a/apps/vrest-ng.md b/apps/vrest-ng.md deleted file mode 100644 index 08f832c5c..000000000 --- a/apps/vrest-ng.md +++ /dev/null @@ -1,7 +0,0 @@ -# VREST-NG - - vREST NG - Zero code API test automation solution. - - SITE: https://vrest.io - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/vrew b/apps/vrew new file mode 100644 index 000000000..8f03b1441 --- /dev/null +++ b/apps/vrew @@ -0,0 +1,3 @@ +# vrew +Your first video editor, your easiest choice. +# SITES: https://vrew.ai \ No newline at end of file diff --git a/apps/vrew.md b/apps/vrew.md deleted file mode 100644 index a7c605a18..000000000 --- a/apps/vrew.md +++ /dev/null @@ -1,8 +0,0 @@ -# VREW - - Your first video editor, your easiest choice. - - SITE: https://vrew.ai - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/vscodium b/apps/vscodium new file mode 100644 index 000000000..446cf38f8 --- /dev/null +++ b/apps/vscodium @@ -0,0 +1,4 @@ +# vscodium +VSCodium is a community-driven, freely-licensed binary distribution of MS VSCode. +# SCREENSHOTS: https://vscodium.com/img/vscodium.png +# SITES: https://vscodium.com \ No newline at end of file diff --git a/apps/vscodium.md b/apps/vscodium.md deleted file mode 100644 index 8bcc246fc..000000000 --- a/apps/vscodium.md +++ /dev/null @@ -1,10 +0,0 @@ -# VSCODIUM - - VSCodium is a community-driven, freely-licensed binary distribution of MS VSCode. - - ![Screenshot](https://vscodium.com/img/vscodium.png) - - SITE: https://vscodium.com - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/vt b/apps/vt new file mode 100644 index 000000000..41aa12a7f --- /dev/null +++ b/apps/vt @@ -0,0 +1,3 @@ +# vt +VirusTotal Command Line Interface +# SITES: https://github.com/VirusTotal/vt-cli \ No newline at end of file diff --git a/apps/vt.md b/apps/vt.md deleted file mode 100644 index 74a2c0e9e..000000000 --- a/apps/vt.md +++ /dev/null @@ -1,8 +0,0 @@ -# VT - - VirusTotal Command Line Interface - - SITE: https://github.com/VirusTotal/vt-cli - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/vtm b/apps/vtm new file mode 100644 index 000000000..0fe40d6c8 --- /dev/null +++ b/apps/vtm @@ -0,0 +1,3 @@ +# vtm +Text-based desktop environment +# SITES: https://github.com/directvt/vtm \ No newline at end of file diff --git a/apps/vtm.md b/apps/vtm.md deleted file mode 100644 index f036ea6bf..000000000 --- a/apps/vtm.md +++ /dev/null @@ -1,8 +0,0 @@ -# VTM - - Text-based desktop environment - - SITE: https://github.com/directvt/vtm - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/vue-calc b/apps/vue-calc new file mode 100644 index 000000000..d8d3b84c3 --- /dev/null +++ b/apps/vue-calc @@ -0,0 +1,3 @@ +# vue-calc +A Simple VueJS's Calculator built with ElectronJS. +# SITES: https://github.com/el3um4s/vue-calc \ No newline at end of file diff --git a/apps/vue-calc.md b/apps/vue-calc.md deleted file mode 100644 index 5f4b876d5..000000000 --- a/apps/vue-calc.md +++ /dev/null @@ -1,7 +0,0 @@ -# VUE-CALC - - A Simple VueJS's Calculator built with ElectronJS. - - SITE: https://github.com/el3um4s/vue-calc - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/vuerd b/apps/vuerd new file mode 100644 index 000000000..90d4e55ea --- /dev/null +++ b/apps/vuerd @@ -0,0 +1,3 @@ +# vuerd +A desktop ERD app. +# SITES: https://github.com/dineug/vuerd-electron \ No newline at end of file diff --git a/apps/vuerd.md b/apps/vuerd.md deleted file mode 100644 index 5cf6ad328..000000000 --- a/apps/vuerd.md +++ /dev/null @@ -1,7 +0,0 @@ -# VUERD - - A desktop ERD app. - - SITE: https://github.com/dineug/vuerd-electron - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/vup b/apps/vup new file mode 100644 index 000000000..a0c2447b6 --- /dev/null +++ b/apps/vup @@ -0,0 +1,3 @@ +# vup +Private and decentralized cloud storage. +# SITES: https://github.com/vup-app/vup \ No newline at end of file diff --git a/apps/vup.md b/apps/vup.md deleted file mode 100644 index 459b4fb27..000000000 --- a/apps/vup.md +++ /dev/null @@ -1,8 +0,0 @@ -# VUP - - Private and decentralized cloud storage. - - SITE: https://github.com/vup-app/vup - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/w2vgrep b/apps/w2vgrep new file mode 100644 index 000000000..7b1d160ad --- /dev/null +++ b/apps/w2vgrep @@ -0,0 +1,3 @@ +# w2vgrep +Semantic-grep, grep for words with similar meaning to the query. +# SITES: https://github.com/arunsupe/semantic-grep \ No newline at end of file diff --git a/apps/w2vgrep.md b/apps/w2vgrep.md deleted file mode 100644 index c5a098e5b..000000000 --- a/apps/w2vgrep.md +++ /dev/null @@ -1,8 +0,0 @@ -# W2VGREP - - Semantic-grep, grep for words with similar meaning to the query. - - SITE: https://github.com/arunsupe/semantic-grep - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/walc b/apps/walc new file mode 100644 index 000000000..d49bfd8d6 --- /dev/null +++ b/apps/walc @@ -0,0 +1,4 @@ +# walc +WALC - WhatsApp Linux Client (unofficial) +# SCREENSHOTS: https://dashboard.snapcraft.io/site_media/appmedia/2020/03/WALC-Preview.png +# SITES: https://github.com/WAClient/WALC \ No newline at end of file diff --git a/apps/walc.md b/apps/walc.md deleted file mode 100644 index 58826cf25..000000000 --- a/apps/walc.md +++ /dev/null @@ -1,10 +0,0 @@ -# WALC - - WALC - WhatsApp Linux Client (unofficial) - - ![Screenshot](https://dashboard.snapcraft.io/site_media/appmedia/2020/03/WALC-Preview.png) - - SITE: https://github.com/WAClient/WALC - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/walk b/apps/walk new file mode 100644 index 000000000..81d61952f --- /dev/null +++ b/apps/walk @@ -0,0 +1,3 @@ +# walk +Terminal file manager +# SITES: https://github.com/antonmedv/walk \ No newline at end of file diff --git a/apps/walk.md b/apps/walk.md deleted file mode 100644 index 39c8015df..000000000 --- a/apps/walk.md +++ /dev/null @@ -1,8 +0,0 @@ -# WALK - - Terminal file manager - - SITE: https://github.com/antonmedv/walk - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/walker b/apps/walker new file mode 100644 index 000000000..1e0cc4ad9 --- /dev/null +++ b/apps/walker @@ -0,0 +1,3 @@ +# walker +Multi-Purpose Launcher with a lot of features. Highly Customizable and fast. +# SITES: https://github.com/abenz1267/walker \ No newline at end of file diff --git a/apps/walker.md b/apps/walker.md deleted file mode 100644 index 73ec7b300..000000000 --- a/apps/walker.md +++ /dev/null @@ -1,8 +0,0 @@ -# WALKER - - Multi-Purpose Launcher with a lot of features. Highly Customizable and fast. - - SITE: https://github.com/abenz1267/walker - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/wallettech b/apps/wallettech new file mode 100644 index 000000000..051c299b1 --- /dev/null +++ b/apps/wallettech @@ -0,0 +1,3 @@ +# wallettech +BytechCoin GUI Wallet +# SITES: https://github.com/bytechcoin/bytech-wallet-electron \ No newline at end of file diff --git a/apps/wallettech.md b/apps/wallettech.md deleted file mode 100644 index ae6232b3a..000000000 --- a/apps/wallettech.md +++ /dev/null @@ -1,8 +0,0 @@ -# WALLETTECH - - BytechCoin GUI Wallet - - SITE: https://github.com/bytechcoin/bytech-wallet-electron - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/warp b/apps/warp new file mode 100644 index 000000000..788cc057d --- /dev/null +++ b/apps/warp @@ -0,0 +1,3 @@ +# warp +Unofficial. Fast and secure file transfer through internet or local network exchanging a word-based code. +# SITES: https://github.com/pkgforge-dev/Warp-AppImage \ No newline at end of file diff --git a/apps/warp-terminal b/apps/warp-terminal new file mode 100644 index 000000000..e38a2ab7f --- /dev/null +++ b/apps/warp-terminal @@ -0,0 +1,4 @@ +# warp-terminal +Warp is the terminal reimagined with AI and collaborative tools for better productivity. +# SCREENSHOTS: https://github.com/nazdridoy/Portable-Linux-Apps.github.io/assets/45564804/b00893ad-3323-4149-be54-c0bda0e6f64a https://github.com/nazdridoy/Portable-Linux-Apps.github.io/assets/45564804/fd80b086-70e0-4a53-ba9c-71b12ecc7591 +# SITES: https://www.warp.dev \ No newline at end of file diff --git a/apps/warp-terminal.md b/apps/warp-terminal.md deleted file mode 100644 index 8688eaa8b..000000000 --- a/apps/warp-terminal.md +++ /dev/null @@ -1,15 +0,0 @@ -# WARP-TERMINAL - - Warp is the terminal reimagined with AI and collaborative tools for better productivity. - - - ![1](https://github.com/nazdridoy/Portable-Linux-Apps.github.io/assets/45564804/b00893ad-3323-4149-be54-c0bda0e6f64a) - - ![3](https://github.com/nazdridoy/Portable-Linux-Apps.github.io/assets/45564804/fd80b086-70e0-4a53-ba9c-71b12ecc7591) - - - - SITE: https://www.warp.dev - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/warp.md b/apps/warp.md deleted file mode 100644 index dbe1cbb90..000000000 --- a/apps/warp.md +++ /dev/null @@ -1,8 +0,0 @@ -# WARP - - Unofficial. Fast and secure file transfer through internet or local network exchanging a word-based code. - - SITE: https://github.com/pkgforge-dev/Warp-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/warteschlangensimulator b/apps/warteschlangensimulator new file mode 100644 index 000000000..273e51220 --- /dev/null +++ b/apps/warteschlangensimulator @@ -0,0 +1,3 @@ +# warteschlangensimulator +A free, platform independent, discrete-event, stochastic simulator which allows to model queueing systems in form of flowcharts. +# SITES: https://github.com/A-Herzog/Warteschlangensimulator \ No newline at end of file diff --git a/apps/warteschlangensimulator.md b/apps/warteschlangensimulator.md deleted file mode 100644 index 04f320a4c..000000000 --- a/apps/warteschlangensimulator.md +++ /dev/null @@ -1,8 +0,0 @@ -# WARTESCHLANGENSIMULATOR - - A free, platform independent, discrete-event, stochastic simulator which allows to model queueing systems in form of flowcharts. - - SITE: https://github.com/A-Herzog/Warteschlangensimulator - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/wasistlos b/apps/wasistlos new file mode 100644 index 000000000..b9017c575 --- /dev/null +++ b/apps/wasistlos @@ -0,0 +1,3 @@ +# wasistlos +An unofficial WhatsApp desktop application for Linux. +# SITES: https://github.com/xeco23/WasIstLos \ No newline at end of file diff --git a/apps/wasistlos.md b/apps/wasistlos.md deleted file mode 100644 index 3053a971b..000000000 --- a/apps/wasistlos.md +++ /dev/null @@ -1,8 +0,0 @@ -# WASISTLOS - - An unofficial WhatsApp desktop application for Linux. - - SITE: https://github.com/xeco23/WasIstLos - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/watch b/apps/watch new file mode 100644 index 000000000..68916c962 --- /dev/null +++ b/apps/watch @@ -0,0 +1,3 @@ +# watch +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. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/watch.md b/apps/watch.md deleted file mode 100644 index 4e460fa75..000000000 --- a/apps/watch.md +++ /dev/null @@ -1,8 +0,0 @@ -# WATCH - - 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. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/watched b/apps/watched new file mode 100644 index 000000000..60ad66310 --- /dev/null +++ b/apps/watched @@ -0,0 +1,3 @@ +# watched +One app. Easy to use. Unlimited possibilities. Our concept is simple: WATCHED combines the functions of a media player in combination with a browser. What's the outcome? Excellent entertainment. Does it make you wonder that WATCHED is currently one of the most popular apps worldwide?. To your surprise, our app is available for free. Yep. That's right. Totally free. +# SITES: https://www.watched.com/ \ No newline at end of file diff --git a/apps/watched.md b/apps/watched.md deleted file mode 100644 index 1b3da6b0f..000000000 --- a/apps/watched.md +++ /dev/null @@ -1,8 +0,0 @@ -# WATCHED - - One app. Easy to use. Unlimited possibilities. Our concept is simple: WATCHED combines the functions of a media player in combination with a browser. What's the outcome? Excellent entertainment. Does it make you wonder that WATCHED is currently one of the most popular apps worldwide?. To your surprise, our app is available for free. Yep. That's right. Totally free. - - SITE: https://www.watched.com/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/watchflower b/apps/watchflower new file mode 100644 index 000000000..f5df082fc --- /dev/null +++ b/apps/watchflower @@ -0,0 +1,3 @@ +# watchflower +Read and plot datas from your Xiaomi "Flower Care" devices! +# SITES: https://github.com/emericg/WatchFlower \ No newline at end of file diff --git a/apps/watchflower.md b/apps/watchflower.md deleted file mode 100644 index 118387c04..000000000 --- a/apps/watchflower.md +++ /dev/null @@ -1,8 +0,0 @@ -# WATCHFLOWER - - Read and plot datas from your Xiaomi "Flower Care" devices! - - SITE: https://github.com/emericg/WatchFlower - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/watchit b/apps/watchit new file mode 100644 index 000000000..85eb18d88 --- /dev/null +++ b/apps/watchit @@ -0,0 +1,3 @@ +# watchit +Open movies everywhere +# SITES: https://github.com/ZorrillosDev/watchit-app \ No newline at end of file diff --git a/apps/watchit.md b/apps/watchit.md deleted file mode 100644 index 68877a47e..000000000 --- a/apps/watchit.md +++ /dev/null @@ -1,8 +0,0 @@ -# WATCHIT - - Open movies everywhere - - SITE: https://github.com/ZorrillosDev/watchit-app - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/waterfox b/apps/waterfox new file mode 100644 index 000000000..d4c15ad2f --- /dev/null +++ b/apps/waterfox @@ -0,0 +1,7 @@ +# waterfox +Waterfox is the privacy-focused web browser engineered to give you speed, control, and peace of mind on the internet. + + This is the portable official version converted to an AppImage by our team, "Portable Linux Apps" , no additional changes have been made. +# SCREENSHOTS: https://i.imgur.com/HHPG3Re.jpeg +# SITES: https://www.waterfox.net +# SOURCES: https://github.com/Portable-Linux-Apps/Waterfox-AppImage \ No newline at end of file diff --git a/apps/waterfox.md b/apps/waterfox.md deleted file mode 100644 index 51988d519..000000000 --- a/apps/waterfox.md +++ /dev/null @@ -1,14 +0,0 @@ -# WATERFOX - - Waterfox is the privacy-focused web browser engineered to give you speed, control, and peace of mind on the internet. - - This is the portable official version converted to an AppImage by our team, "Portable Linux Apps" , no additional changes have been made. - - ![Screenshot](https://i.imgur.com/HHPG3Re.jpeg) - - SITE: https://www.waterfox.net - - APPIMAGE: https://github.com/Portable-Linux-Apps/Waterfox-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/waydroid-helper b/apps/waydroid-helper new file mode 100644 index 000000000..1f474941a --- /dev/null +++ b/apps/waydroid-helper @@ -0,0 +1,3 @@ +# waydroid-helper +Waydroid Helper is a graphical user interface application written in Python using PyGObject. It provides a user-friendly way to configure Waydroid and install extensions, including Magisk and ARM translation. +# SITES: https://github.com/ayasa520/waydroid-helper \ No newline at end of file diff --git a/apps/waydroid-helper.md b/apps/waydroid-helper.md deleted file mode 100644 index 0974f4471..000000000 --- a/apps/waydroid-helper.md +++ /dev/null @@ -1,8 +0,0 @@ -# WAYDROID-HELPER - - Waydroid Helper is a graphical user interface application written in Python using PyGObject. It provides a user-friendly way to configure Waydroid and install extensions, including Magisk and ARM translation. - - SITE: https://github.com/ayasa520/waydroid-helper - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/wazo-desktop b/apps/wazo-desktop new file mode 100644 index 000000000..bc31ee0cb --- /dev/null +++ b/apps/wazo-desktop @@ -0,0 +1,3 @@ +# wazo-desktop +Wazo desktop client for wazo VOIP server +# SITES: https://wazo.io \ No newline at end of file diff --git a/apps/wazo-desktop.md b/apps/wazo-desktop.md deleted file mode 100644 index 81d91bcbf..000000000 --- a/apps/wazo-desktop.md +++ /dev/null @@ -1,8 +0,0 @@ -# WAZO-DESKTOP - - Wazo desktop client for wazo VOIP server - - SITE: https://wazo.io - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/wc b/apps/wc new file mode 100644 index 000000000..746d791bc --- /dev/null +++ b/apps/wc @@ -0,0 +1,3 @@ +# wc +Print newline, word, and byte counts for each file. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/wc.md b/apps/wc.md deleted file mode 100644 index ae4053c7e..000000000 --- a/apps/wc.md +++ /dev/null @@ -1,8 +0,0 @@ -# WC - - Print newline, word, and byte counts for each file. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/weakauras b/apps/weakauras new file mode 100644 index 000000000..112824e6f --- /dev/null +++ b/apps/weakauras @@ -0,0 +1,3 @@ +# weakauras +A cross-platform application built to provide the missing link between Wago.io and World of Warcraft. +# SITES: https://weakauras.wtf/ \ No newline at end of file diff --git a/apps/weakauras.md b/apps/weakauras.md deleted file mode 100644 index 6ee2a9b7c..000000000 --- a/apps/weakauras.md +++ /dev/null @@ -1,8 +0,0 @@ -# WEAKAURAS - - A cross-platform application built to provide the missing link between Wago.io and World of Warcraft. - - SITE: https://weakauras.wtf/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/weatherdump b/apps/weatherdump new file mode 100644 index 000000000..cfe5a6cf9 --- /dev/null +++ b/apps/weatherdump @@ -0,0 +1,3 @@ +# weatherdump +A WeatherDump desktop GUI. +# SITES: https://github.com/luigifcruz/weatherdump-desktop \ No newline at end of file diff --git a/apps/weatherdump.md b/apps/weatherdump.md deleted file mode 100644 index bce120d41..000000000 --- a/apps/weatherdump.md +++ /dev/null @@ -1,7 +0,0 @@ -# WEATHERDUMP - - A WeatherDump desktop GUI. - - SITE: https://github.com/luigifcruz/weatherdump-desktop - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/webamp b/apps/webamp new file mode 100644 index 000000000..80ac8bef5 --- /dev/null +++ b/apps/webamp @@ -0,0 +1,3 @@ +# webamp +Desktop version of Winamp 2.9 reimplementation in HTML5 and JS +# SITES: https://github.com/durasj/webamp-desktop \ No newline at end of file diff --git a/apps/webamp-desktop-enhanced b/apps/webamp-desktop-enhanced new file mode 100644 index 000000000..8f670328f --- /dev/null +++ b/apps/webamp-desktop-enhanced @@ -0,0 +1,3 @@ +# webamp-desktop-enhanced +Unofficial, experimental cross-platform desktop version of Winamp 2.9 reimplementation in electron. +# SITES: https://github.com/pkgforge-dev/Webamp-Desktop-AppImage-Enhanced \ No newline at end of file diff --git a/apps/webamp-desktop-enhanced.md b/apps/webamp-desktop-enhanced.md deleted file mode 100644 index c54abf935..000000000 --- a/apps/webamp-desktop-enhanced.md +++ /dev/null @@ -1,8 +0,0 @@ -# WEBAMP-DESKTOP-ENHANCED - - Unofficial, experimental cross-platform desktop version of Winamp 2.9 reimplementation in electron. - - SITE: https://github.com/pkgforge-dev/Webamp-Desktop-AppImage-Enhanced - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/webamp.md b/apps/webamp.md deleted file mode 100644 index 6f509a1cf..000000000 --- a/apps/webamp.md +++ /dev/null @@ -1,8 +0,0 @@ -# WEBAMP - - Desktop version of Winamp 2.9 reimplementation in HTML5 and JS - - SITE: https://github.com/durasj/webamp-desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/webcamoid b/apps/webcamoid new file mode 100644 index 000000000..41b137261 --- /dev/null +++ b/apps/webcamoid @@ -0,0 +1,8 @@ +# webcamoid +Webcamoid is a multi-platform camera capture app focused on providing all major features required by power users with a very simple and intuitive interface. + + This is the unofficial AppImage. + + The official executable binaries are available on the official website, upon donation. +# SITES: https://webcamoid.github.io +# SOURCES: https://github.com/pkgforge-dev/Webcamoid-AppImage \ No newline at end of file diff --git a/apps/webcamoid.md b/apps/webcamoid.md deleted file mode 100644 index da1369f10..000000000 --- a/apps/webcamoid.md +++ /dev/null @@ -1,14 +0,0 @@ -# WEBCAMOID - - Webcamoid is a multi-platform camera capture app focused on providing all major features required by power users with a very simple and intuitive interface. - - This is the unofficial AppImage. - - The official executable binaries are available on the official website, upon donation. - - SITE: https://webcamoid.github.io - - APPIMAGE: https://github.com/pkgforge-dev/Webcamoid-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/webcord b/apps/webcord new file mode 100644 index 000000000..a8e2f4761 --- /dev/null +++ b/apps/webcord @@ -0,0 +1,3 @@ +# webcord +A Discord and Fosscord electron-based client implemented without Discord API. +# SITES: https://github.com/SpacingBat3/WebCord \ No newline at end of file diff --git a/apps/webcord-enhanced b/apps/webcord-enhanced new file mode 100644 index 000000000..b59378757 --- /dev/null +++ b/apps/webcord-enhanced @@ -0,0 +1,3 @@ +# webcord-enhanced +Unofficial, A Discord and Fosscord client implemented without Discord API. +# SITES: https://github.com/pkgforge-dev/WebCord-AppImage-Enhanced \ No newline at end of file diff --git a/apps/webcord-enhanced.md b/apps/webcord-enhanced.md deleted file mode 100644 index d50aedbf8..000000000 --- a/apps/webcord-enhanced.md +++ /dev/null @@ -1,8 +0,0 @@ -# WEBCORD-ENHANCED - - Unofficial, A Discord and Fosscord client implemented without Discord API. - - SITE: https://github.com/pkgforge-dev/WebCord-AppImage-Enhanced - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/webcord.md b/apps/webcord.md deleted file mode 100644 index 000785b89..000000000 --- a/apps/webcord.md +++ /dev/null @@ -1,8 +0,0 @@ -# WEBCORD - - A Discord and Fosscord electron-based client implemented without Discord API. - - SITE: https://github.com/SpacingBat3/WebCord - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/webdesktop b/apps/webdesktop new file mode 100644 index 000000000..a310ad90a --- /dev/null +++ b/apps/webdesktop @@ -0,0 +1,3 @@ +# webdesktop +WebDesktop make apps with just a text editor and nodejs. +# SITES: https://github.com/Webdeskme/wdOS \ No newline at end of file diff --git a/apps/webdesktop.md b/apps/webdesktop.md deleted file mode 100644 index 8ad2582ae..000000000 --- a/apps/webdesktop.md +++ /dev/null @@ -1,8 +0,0 @@ -# WEBDESKTOP - - WebDesktop make apps with just a text editor and nodejs. - - SITE: https://github.com/Webdeskme/wdOS - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/webkitty b/apps/webkitty new file mode 100644 index 000000000..e1e93a176 --- /dev/null +++ b/apps/webkitty @@ -0,0 +1,3 @@ +# webkitty +Local web development IDE +# SITES: https://dartfling.com/product?pid=3 \ No newline at end of file diff --git a/apps/webkitty.md b/apps/webkitty.md deleted file mode 100644 index 567c2e040..000000000 --- a/apps/webkitty.md +++ /dev/null @@ -1,8 +0,0 @@ -# WEBKITTY - - Local web development IDE - - SITE: https://dartfling.com/product?pid=3 - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/webrecorder b/apps/webrecorder new file mode 100644 index 000000000..d917e5b8b --- /dev/null +++ b/apps/webrecorder @@ -0,0 +1,3 @@ +# webrecorder +The Webrecorder Desktop App is a complete packaging of Webrecorder hosted service as an Electron application, with an integrated Chromium browser. +# SITES: https://github.com/webrecorder/webrecorder-desktop \ No newline at end of file diff --git a/apps/webrecorder.md b/apps/webrecorder.md deleted file mode 100644 index 8f20f7d5d..000000000 --- a/apps/webrecorder.md +++ /dev/null @@ -1,8 +0,0 @@ -# WEBRECORDER - - The Webrecorder Desktop App is a complete packaging of Webrecorder hosted service as an Electron application, with an integrated Chromium browser. - - SITE: https://github.com/webrecorder/webrecorder-desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/weektodo b/apps/weektodo new file mode 100644 index 000000000..bb73060e8 --- /dev/null +++ b/apps/weektodo @@ -0,0 +1,3 @@ +# weektodo +WeekToDo is a Free and Open Source Weekly Planner. Stop prioritizing what's on your schedule and start scheduling your priorities. +# SITES: https://weektodo.me/ \ No newline at end of file diff --git a/apps/weektodo.md b/apps/weektodo.md deleted file mode 100644 index 0abf8c742..000000000 --- a/apps/weektodo.md +++ /dev/null @@ -1,8 +0,0 @@ -# WEEKTODO - - WeekToDo is a Free and Open Source Weekly Planner. Stop prioritizing what's on your schedule and start scheduling your priorities. - - SITE: https://weektodo.me/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/westeroscraftlauncher b/apps/westeroscraftlauncher new file mode 100644 index 000000000..2aacf6f52 --- /dev/null +++ b/apps/westeroscraftlauncher @@ -0,0 +1,3 @@ +# westeroscraftlauncher +Custom launcher for modded minecraft written in Electron and Node.js. +# SITES: https://github.com/WesterosCraft/ElectronLauncher \ No newline at end of file diff --git a/apps/westeroscraftlauncher.md b/apps/westeroscraftlauncher.md deleted file mode 100644 index b592a527e..000000000 --- a/apps/westeroscraftlauncher.md +++ /dev/null @@ -1,7 +0,0 @@ -# WESTEROSCRAFTLAUNCHER - - Custom launcher for modded minecraft written in Electron and Node.js. - - SITE: https://github.com/WesterosCraft/ElectronLauncher - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/wethr b/apps/wethr new file mode 100644 index 000000000..432d57337 --- /dev/null +++ b/apps/wethr @@ -0,0 +1,3 @@ +# wethr +🌤️ Command line weather tool. +# SITES: https://github.com/risoflora/wethr \ No newline at end of file diff --git a/apps/wethr.md b/apps/wethr.md deleted file mode 100644 index 9959e4875..000000000 --- a/apps/wethr.md +++ /dev/null @@ -1,8 +0,0 @@ -# WETHR - - 🌤️ Command line weather tool. - - SITE: https://github.com/risoflora/wethr - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/wewechat b/apps/wewechat new file mode 100644 index 000000000..4774aa4d4 --- /dev/null +++ b/apps/wewechat @@ -0,0 +1,3 @@ +# wewechat +weweChat is an Unofficial WeChat client built with React, MobX and Electron. +# SITES: https://github.com/trazyn/weweChat \ No newline at end of file diff --git a/apps/wewechat.md b/apps/wewechat.md deleted file mode 100644 index 06f6e137c..000000000 --- a/apps/wewechat.md +++ /dev/null @@ -1,8 +0,0 @@ -# WEWECHAT - - weweChat is an Unofficial WeChat client built with React, MobX and Electron. - - SITE: https://github.com/trazyn/weweChat - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/wexond b/apps/wexond new file mode 100644 index 000000000..892638118 --- /dev/null +++ b/apps/wexond @@ -0,0 +1,3 @@ +# wexond +Extensible, fast and innovative web browser with material UI. +# SITES: https://github.com/wexond/wexond \ No newline at end of file diff --git a/apps/wexond.md b/apps/wexond.md deleted file mode 100644 index 1df647361..000000000 --- a/apps/wexond.md +++ /dev/null @@ -1,8 +0,0 @@ -# WEXOND - - Extensible, fast and innovative web browser with material UI. - - SITE: https://github.com/wexond/wexond - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/wezterm b/apps/wezterm new file mode 100644 index 000000000..ac33d8619 --- /dev/null +++ b/apps/wezterm @@ -0,0 +1,4 @@ +# wezterm +Ez's Terminal is a GPU-accelerated cross-platform terminal emulator and multiplexer written by @wez and implemented in Rust. +# SITES: https://wezfurlong.org/wezterm +# SOURCES: https://github.com/wez/wezterm \ No newline at end of file diff --git a/apps/wezterm-nightly b/apps/wezterm-nightly new file mode 100644 index 000000000..bf0ab426b --- /dev/null +++ b/apps/wezterm-nightly @@ -0,0 +1,6 @@ +# wezterm-nightly +Ez's Terminal is a GPU-accelerated cross-platform terminal emulator and multiplexer written by @wez and implemented in Rust. + + This is the Nightly build. +# SITES: https://wezfurlong.org/wezterm +# SOURCES: https://github.com/wez/wezterm \ No newline at end of file diff --git a/apps/wezterm-nightly.md b/apps/wezterm-nightly.md deleted file mode 100644 index f4c782be4..000000000 --- a/apps/wezterm-nightly.md +++ /dev/null @@ -1,12 +0,0 @@ -# WEZTERM-NIGHTLY - - Ez's Terminal is a GPU-accelerated cross-platform terminal emulator and multiplexer written by @wez and implemented in Rust. - - This is the Nightly build. - - SITE: https://wezfurlong.org/wezterm - - SOURCE: https://github.com/wez/wezterm - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/wezterm.md b/apps/wezterm.md deleted file mode 100644 index 2808e43fd..000000000 --- a/apps/wezterm.md +++ /dev/null @@ -1,10 +0,0 @@ -# WEZTERM - - Ez's Terminal is a GPU-accelerated cross-platform terminal emulator and multiplexer written by @wez and implemented in Rust. - - SITE: https://wezfurlong.org/wezterm - - SOURCE: https://github.com/wez/wezterm - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/wget b/apps/wget new file mode 100644 index 000000000..1d7fc979a --- /dev/null +++ b/apps/wget @@ -0,0 +1,3 @@ +# wget +Network utility to retrieve files from the web. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/wget.md b/apps/wget.md deleted file mode 100644 index c87b8d4b1..000000000 --- a/apps/wget.md +++ /dev/null @@ -1,8 +0,0 @@ -# WGET - - Network utility to retrieve files from the web. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/whalebird b/apps/whalebird new file mode 100644 index 000000000..655095055 --- /dev/null +++ b/apps/whalebird @@ -0,0 +1,3 @@ +# whalebird +An Electron based Mastodon client for Windows, Mac and Linux +# SITES: https://github.com/h3poteto/whalebird-desktop \ No newline at end of file diff --git a/apps/whalebird.md b/apps/whalebird.md deleted file mode 100644 index 680eac02d..000000000 --- a/apps/whalebird.md +++ /dev/null @@ -1,8 +0,0 @@ -# WHALEBIRD - - An Electron based Mastodon client for Windows, Mac and Linux - - SITE: https://github.com/h3poteto/whalebird-desktop - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/whatsdesk b/apps/whatsdesk new file mode 100644 index 000000000..7a212d1b3 --- /dev/null +++ b/apps/whatsdesk @@ -0,0 +1,3 @@ +# whatsdesk +Unofficial, An unofficial client of WhatsApp. +# SITES: https://github.com/pkgforge-dev/WhatsDesk-AppImage \ No newline at end of file diff --git a/apps/whatsdesk.md b/apps/whatsdesk.md deleted file mode 100644 index 26e5bffba..000000000 --- a/apps/whatsdesk.md +++ /dev/null @@ -1,8 +0,0 @@ -# WHATSDESK - - Unofficial, An unofficial client of WhatsApp. - - SITE: https://github.com/pkgforge-dev/WhatsDesk-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/whatsie b/apps/whatsie new file mode 100644 index 000000000..6d5ca906d --- /dev/null +++ b/apps/whatsie @@ -0,0 +1,3 @@ +# whatsie +Unofficial, feature rich WhatsApp web client based on Qt WebEngine. +# SITES: https://github.com/pkgforge-dev/WhatSie-AppImage \ No newline at end of file diff --git a/apps/whatsie.md b/apps/whatsie.md deleted file mode 100644 index 45fa7a75b..000000000 --- a/apps/whatsie.md +++ /dev/null @@ -1,8 +0,0 @@ -# WHATSIE - - Unofficial, feature rich WhatsApp web client based on Qt WebEngine. - - SITE: https://github.com/pkgforge-dev/WhatSie-AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/whatstron b/apps/whatstron new file mode 100644 index 000000000..cb757febf --- /dev/null +++ b/apps/whatstron @@ -0,0 +1,3 @@ +# whatstron +Unofficial WhatsApp desktop client for Linux. +# SITES: https://github.com/murilopereirame/Whatstron \ No newline at end of file diff --git a/apps/whatstron.md b/apps/whatstron.md deleted file mode 100644 index 960f7b924..000000000 --- a/apps/whatstron.md +++ /dev/null @@ -1,8 +0,0 @@ -# WHATSTRON - - Unofficial WhatsApp desktop client for Linux. - - SITE: https://github.com/murilopereirame/Whatstron - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/whirlpool-gui b/apps/whirlpool-gui new file mode 100644 index 000000000..eecd25f34 --- /dev/null +++ b/apps/whirlpool-gui @@ -0,0 +1,3 @@ +# whirlpool-gui +Desktop GUI for Whirlpool by Samourai-Wallet +# SITES: https://github.com/Samourai-Wallet/whirlpool-gui/ \ No newline at end of file diff --git a/apps/whirlpool-gui.md b/apps/whirlpool-gui.md deleted file mode 100644 index 081a17e9d..000000000 --- a/apps/whirlpool-gui.md +++ /dev/null @@ -1,8 +0,0 @@ -# WHIRLPOOL-GUI - - Desktop GUI for Whirlpool by Samourai-Wallet - - SITE: https://github.com/Samourai-Wallet/whirlpool-gui/ - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/whispering b/apps/whispering new file mode 100644 index 000000000..a160bde4c --- /dev/null +++ b/apps/whispering @@ -0,0 +1,3 @@ +# whispering +Press shortcut → speak → get text. Free and open source. More local-first apps soon ❤️. +# SITES: https://github.com/EpicenterHQ/epicenter \ No newline at end of file diff --git a/apps/whispering.md b/apps/whispering.md deleted file mode 100644 index b257daad2..000000000 --- a/apps/whispering.md +++ /dev/null @@ -1,8 +0,0 @@ -# WHISPERING - - Press shortcut → speak → get text. Free and open source. More local-first apps soon ❤️. - - SITE: https://github.com/EpicenterHQ/epicenter - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/who b/apps/who new file mode 100644 index 000000000..5aad760c5 --- /dev/null +++ b/apps/who @@ -0,0 +1,4 @@ +# who + Show who is logged on. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/who.md b/apps/who.md deleted file mode 100644 index 59444f76c..000000000 --- a/apps/who.md +++ /dev/null @@ -1,8 +0,0 @@ -# WHO - - Show who is logged on. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/whoami b/apps/whoami new file mode 100644 index 000000000..d6419b793 --- /dev/null +++ b/apps/whoami @@ -0,0 +1,4 @@ +# whoami + Print effective user name. This is part of "am-utils" suite. +# SITES: https://github.com/ivan-hc/am-utils +# SOURCES: https://github.com/ivan-hc/am-utils \ No newline at end of file diff --git a/apps/whoami.md b/apps/whoami.md deleted file mode 100644 index 1b5fb9d8f..000000000 --- a/apps/whoami.md +++ /dev/null @@ -1,8 +0,0 @@ -# WHOAMI - - Print effective user name. This is part of "am-utils" suite. - - SITE: https://github.com/ivan-hc/am-utils - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/whu-library-seat b/apps/whu-library-seat new file mode 100644 index 000000000..031f1b528 --- /dev/null +++ b/apps/whu-library-seat @@ -0,0 +1,3 @@ +# whu-library-seat +Wuhan University Library Assistant - Desktop (for Jinan University, etc.) 武汉大学图书馆抢座软件 +# SITES: https://github.com/CS-Tao/whu-library-seat \ No newline at end of file diff --git a/apps/whu-library-seat.md b/apps/whu-library-seat.md deleted file mode 100644 index c1fb02e06..000000000 --- a/apps/whu-library-seat.md +++ /dev/null @@ -1,8 +0,0 @@ -# WHU-LIBRARY-SEAT - - Wuhan University Library Assistant - Desktop (for Jinan University, etc.) 武汉大学图书馆抢座软件 - - SITE: https://github.com/CS-Tao/whu-library-seat - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/wick-editor b/apps/wick-editor new file mode 100644 index 000000000..1b4e8ccc3 --- /dev/null +++ b/apps/wick-editor @@ -0,0 +1,3 @@ +# wick-editor +A free and open-source tool for creating games, animations and everything in-between! +# SITES: https://github.com/Wicklets/wick-editor \ No newline at end of file diff --git a/apps/wick-editor.md b/apps/wick-editor.md deleted file mode 100644 index 0702dd8f2..000000000 --- a/apps/wick-editor.md +++ /dev/null @@ -1,8 +0,0 @@ -# WICK-EDITOR - - A free and open-source tool for creating games, animations and everything in-between! - - SITE: https://github.com/Wicklets/wick-editor - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/widelands b/apps/widelands new file mode 100644 index 000000000..6f8122096 --- /dev/null +++ b/apps/widelands @@ -0,0 +1,3 @@ +# widelands +Widelands is a free, open source real-time strategy game with singleplayer campaigns and a multiplayer mode. The game was inspired by Settlers II™ (© Bluebyte) but has significantly more variety and depth to it. +# SITES: https://github.com/widelands/widelands \ No newline at end of file diff --git a/apps/widelands.md b/apps/widelands.md deleted file mode 100644 index 12568256a..000000000 --- a/apps/widelands.md +++ /dev/null @@ -1,8 +0,0 @@ -# WIDELANDS - - Widelands is a free, open source real-time strategy game with singleplayer campaigns and a multiplayer mode. The game was inspired by Settlers II™ (© Bluebyte) but has significantly more variety and depth to it. - - SITE: https://github.com/widelands/widelands - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/wiiu-downloader b/apps/wiiu-downloader new file mode 100644 index 000000000..5562b7827 --- /dev/null +++ b/apps/wiiu-downloader @@ -0,0 +1,3 @@ +# wiiu-downloader +Allows to download encrypted wiiu files from nintendo's official servers +# SITES: https://github.com/Xpl0itU/WiiUDownloader \ No newline at end of file diff --git a/apps/wiiu-downloader.md b/apps/wiiu-downloader.md deleted file mode 100644 index 360d9700e..000000000 --- a/apps/wiiu-downloader.md +++ /dev/null @@ -1,8 +0,0 @@ -# WIIU-DOWNLOADER - - Allows to download encrypted wiiu files from nintendo's official servers - - SITE: https://github.com/Xpl0itU/WiiUDownloader - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/wikilynx b/apps/wikilynx new file mode 100644 index 000000000..02b8be04c --- /dev/null +++ b/apps/wikilynx @@ -0,0 +1,3 @@ +# wikilynx +A simple game browser made using Qt C++ for playing wikipedia speed-runs the right way +# SITES: https://github.com/flamboyantpenguin/wikilynx \ No newline at end of file diff --git a/apps/wikilynx.md b/apps/wikilynx.md deleted file mode 100644 index f5882722e..000000000 --- a/apps/wikilynx.md +++ /dev/null @@ -1,8 +0,0 @@ -# WIKILYNX - - A simple game browser made using Qt C++ for playing wikipedia speed-runs the right way - - SITE: https://github.com/flamboyantpenguin/wikilynx - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/win11-clipboard-history b/apps/win11-clipboard-history new file mode 100644 index 000000000..2441f714e --- /dev/null +++ b/apps/win11-clipboard-history @@ -0,0 +1,3 @@ +# win11-clipboard-history +A beautiful, Windows 11-style Clipboard History Manager for Linux. +# SITES: https://github.com/gustavosett/Windows-11-Clipboard-History-For-Linux \ No newline at end of file diff --git a/apps/win11-clipboard-history.md b/apps/win11-clipboard-history.md deleted file mode 100644 index 531fa78d6..000000000 --- a/apps/win11-clipboard-history.md +++ /dev/null @@ -1,8 +0,0 @@ -# WIN11-CLIPBOARD-HISTORY - - A beautiful, Windows 11-style Clipboard History Manager for Linux. - - SITE: https://github.com/gustavosett/Windows-11-Clipboard-History-For-Linux - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/winboat b/apps/winboat new file mode 100644 index 000000000..33b0c75e5 --- /dev/null +++ b/apps/winboat @@ -0,0 +1,3 @@ +# winboat +Run Windows apps on 🐧 Linux with ✨ seamless integration. +# SITES: https://github.com/TibixDev/winboat \ No newline at end of file diff --git a/apps/winboat.md b/apps/winboat.md deleted file mode 100644 index d95cf85f1..000000000 --- a/apps/winboat.md +++ /dev/null @@ -1,8 +0,0 @@ -# WINBOAT - - Run Windows apps on 🐧 Linux with ✨ seamless integration. - - SITE: https://github.com/TibixDev/winboat - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/window-pet b/apps/window-pet new file mode 100644 index 000000000..51cad326c --- /dev/null +++ b/apps/window-pet @@ -0,0 +1,3 @@ +# window-pet +Pet overlay app built with tauri and react that lets you have adorable companion such as pets, anime characters on your screen. +# SITES: https://github.com/SeakMengs/WindowPet \ No newline at end of file diff --git a/apps/window-pet.md b/apps/window-pet.md deleted file mode 100644 index b8089b2f2..000000000 --- a/apps/window-pet.md +++ /dev/null @@ -1,8 +0,0 @@ -# WINDOW-PET - - Pet overlay app built with tauri and react that lets you have adorable companion such as pets, anime characters on your screen. - - SITE: https://github.com/SeakMengs/WindowPet - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/windows2usb b/apps/windows2usb new file mode 100644 index 000000000..de4643d3a --- /dev/null +++ b/apps/windows2usb @@ -0,0 +1,3 @@ +# windows2usb +Windows2usb is a bash script which writes Microsoft Windows 7/8/8.1/10/11 installation DVD images to USB Flash Drive or external HDD on Linux. It was designed with compatibility in mind, and should work in all cases, contrary to other popular Linux tools. +# SITES: https://github.com/ValdikSS/windows2usb \ No newline at end of file diff --git a/apps/windows2usb.md b/apps/windows2usb.md deleted file mode 100644 index d86fd1fd0..000000000 --- a/apps/windows2usb.md +++ /dev/null @@ -1,8 +0,0 @@ -# WINDOWS2USB - - Windows2usb is a bash script which writes Microsoft Windows 7/8/8.1/10/11 installation DVD images to USB Flash Drive or external HDD on Linux. It was designed with compatibility in mind, and should work in all cases, contrary to other popular Linux tools. - - SITE: https://github.com/ValdikSS/windows2usb - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/windows95 b/apps/windows95 new file mode 100644 index 000000000..56f4877c7 --- /dev/null +++ b/apps/windows95 @@ -0,0 +1,4 @@ +# windows95 +Windows 95 in Electron. Runs on macOS, Linux, and Windows. +# SCREENSHOTS: https://user-images.githubusercontent.com/1426799/44532591-4ceb3680-a6a8-11e8-8c2c-bc29f3bfdef7.png +# SITES: https://github.com/felixrieseberg/windows95 \ No newline at end of file diff --git a/apps/windows95.md b/apps/windows95.md deleted file mode 100644 index 1f292cf85..000000000 --- a/apps/windows95.md +++ /dev/null @@ -1,10 +0,0 @@ -# WINDOWS95 - - Windows 95 in Electron. Runs on macOS, Linux, and Windows. - - ![Screenshot](https://user-images.githubusercontent.com/1426799/44532591-4ceb3680-a6a8-11e8-8c2c-bc29f3bfdef7.png) - - SITE: https://github.com/felixrieseberg/windows95 - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/windusb-gui b/apps/windusb-gui new file mode 100644 index 000000000..8bcb73d48 --- /dev/null +++ b/apps/windusb-gui @@ -0,0 +1,3 @@ +# windusb-gui +A modern, Rust-based graphical tool for creating bootable Windows USB installers on Linux. +# SITES: https://github.com/Broly1/WindUSB-GUI \ No newline at end of file diff --git a/apps/windusb-gui.md b/apps/windusb-gui.md deleted file mode 100644 index 282c93550..000000000 --- a/apps/windusb-gui.md +++ /dev/null @@ -1,8 +0,0 @@ -# WINDUSB-GUI - - A modern, Rust-based graphical tool for creating bootable Windows USB installers on Linux. - - SITE: https://github.com/Broly1/WindUSB-GUI - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | \ No newline at end of file diff --git a/apps/wine b/apps/wine new file mode 100644 index 000000000..600f35d05 --- /dev/null +++ b/apps/wine @@ -0,0 +1,5 @@ +# wine +WINE - Compatibility layer to run MS Windows apps and games on GNU/Linux. + + This script allows you to download one of the many versions available from the mmtrt/WINE_AppImage repository, on Github. +# SITES: https://github.com/mmtrt/WINE_AppImage \ No newline at end of file diff --git a/apps/wine-devel b/apps/wine-devel new file mode 100644 index 000000000..d2afd65c8 --- /dev/null +++ b/apps/wine-devel @@ -0,0 +1,6 @@ +# wine-devel +WINE - Compatibility layer to run MS Windows apps and games on GNU/Linux. + + "Devel" is used to provide development headers, mostly used by third party software compilation. This version is for both x86 and x64 MS Windows programs. +# SITES: https://www.winehq.org +# SOURCES: https://github.com/mmtrt/WINE_AppImage \ No newline at end of file diff --git a/apps/wine-devel.md b/apps/wine-devel.md deleted file mode 100644 index ebc033979..000000000 --- a/apps/wine-devel.md +++ /dev/null @@ -1,22 +0,0 @@ -# WINE-DEVEL - - WINE - Compatibility layer to run MS Windows apps and games on GNU/Linux. - - "Devel" is used to provide development headers, mostly used by third party software compilation. This version is for both x86 and x64 MS Windows programs. - - USAGE: wine-devel winecfg (this will launch WINE Config) - wine-devel uninstaller (this will launch Install/remove) - wine-devel notepad (this will launch Notepad) - wine-devel .exe (to launch a any Windows program) - - NOTE that Q4wine and other profile managers for WINE may not recognize this command, to solve this problem AM automatically creates a symbolic link to this AppImage called /opt/wine-devel/wine which can be used by the above profile managers. - - The "mmtrt" repository always provides the latest version for each of the - three development branches of WINE. - - SITE: https://www.winehq.org - - SOURCE: https://github.com/mmtrt/WINE_AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/wine-stable b/apps/wine-stable new file mode 100644 index 000000000..d9441a20e --- /dev/null +++ b/apps/wine-stable @@ -0,0 +1,6 @@ +# wine-stable +WINE - Compatibility layer to run MS Windows apps and games on GNU/Linux. + + "Stable" is the current stable wine version (recommended). This version is for both x86 and x64 MS Windows programs. +# SITES: https://www.winehq.org +# SOURCES: https://github.com/mmtrt/WINE_AppImage \ No newline at end of file diff --git a/apps/wine-stable.md b/apps/wine-stable.md deleted file mode 100644 index bf45a597e..000000000 --- a/apps/wine-stable.md +++ /dev/null @@ -1,21 +0,0 @@ -# WINE-STABLE - - WINE - Compatibility layer to run MS Windows apps and games on GNU/Linux. - - "Stable" is the current stable wine version (recommended). This version is for both x86 and x64 MS Windows programs. - - USAGE: wine-stable winecfg (this will launch WINE Config) - wine-stable uninstaller (this will launch Install/remove) - wine-stable notepad (this will launch Notepad) - wine-stable .exe (to launch a any Windows program) - - NOTE that Q4wine and other profile managers for WINE may not recognize this command, to solve this problem AM automatically creates a symbolic link to this AppImage called /opt/wine-stable/wine which can be used by the above profile managers. - - The "mmtrt" repository always provides the latest version for each of the three development branches of WINE. - - SITE: https://www.winehq.org - - SOURCE: https://github.com/mmtrt/WINE_AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/wine-staging b/apps/wine-staging new file mode 100644 index 000000000..9db383ecd --- /dev/null +++ b/apps/wine-staging @@ -0,0 +1,7 @@ +# wine-staging +WINE - Compatibility layer to run MS Windows apps and games on GNU/Linux. + + "Staging" is the most recent testing wine version. + This version is for both x86 and x64 MS Windows programs. +# SITES: https://www.winehq.org +# SOURCES: https://github.com/mmtrt/WINE_AppImage \ No newline at end of file diff --git a/apps/wine-staging-ge-proton b/apps/wine-staging-ge-proton new file mode 100644 index 000000000..70cd6387e --- /dev/null +++ b/apps/wine-staging-ge-proton @@ -0,0 +1,10 @@ +# wine-staging-ge-proton +WINE - Compatibility layer to run MS Windows apps and games on GNU/Linux. + + "Staging" is the most recent testing wine version. This version is for both x86 and x64 MS Windows programs. + + Proton GE is a sister project of Proton. The latter is a Valve project based on WINE that is bringing a lot of joy to Linux gamers. Thanks to this fantastic software integrated into the Steam Play client, Windows video games can be played as if they were native. And the truth is, the list of compatible titles continues to grow and improve. + + Proton GE is a Proton build with the latest versions of the vanilla version of the WINE. Additionally, it has FFmpeg and FAduio enabled by default, as well as all Proton patches applied, as well as VKD3D. Therefore, Proton GE can be considered as a "vitaminized" version of the basic design. +# SITES: https://www.winehq.org +# SOURCES: https://github.com/mmtrt/WINE_AppImage \ No newline at end of file diff --git a/apps/wine-staging-ge-proton.md b/apps/wine-staging-ge-proton.md deleted file mode 100644 index 683a96ac0..000000000 --- a/apps/wine-staging-ge-proton.md +++ /dev/null @@ -1,25 +0,0 @@ -# WINE-STAGING-GE-PROTON - - WINE - Compatibility layer to run MS Windows apps and games on GNU/Linux. - - "Staging" is the most recent testing wine version. This version is for both x86 and x64 MS Windows programs. - - Proton GE is a sister project of Proton. The latter is a Valve project based on WINE that is bringing a lot of joy to Linux gamers. Thanks to this fantastic software integrated into the Steam Play client, Windows video games can be played as if they were native. And the truth is, the list of compatible titles continues to grow and improve. - - Proton GE is a Proton build with the latest versions of the vanilla version of the WINE. Additionally, it has FFmpeg and FAduio enabled by default, as well as all Proton patches applied, as well as VKD3D. Therefore, Proton GE can be considered as a "vitaminized" version of the basic design. - - USAGE: wine-staging-ge-proton winecfg (this will launch WINE Config) - wine-staging-ge-proton uninstaller (this will launch Install/remove) - wine-staging-ge-proton notepad (this will launch Notepad) - wine-staging-ge-proton .exe (to launch a any Windows program) - - NOTE that Q4wine and other profile managers for WINE may not recognize this command, to solve this problem AM automatically creates a symbolic link to this AppImage called /opt/wine-staging-ge-proton/wine which can be used by the above profile managers. - - The "mmtrt" repository always provides the latest version for each of the three development branches of WINE and additional variants of WINE AppImage. - - SITE: https://www.winehq.org - - SOURCE: https://github.com/mmtrt/WINE_AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/wine-staging.md b/apps/wine-staging.md deleted file mode 100644 index 693d217c6..000000000 --- a/apps/wine-staging.md +++ /dev/null @@ -1,22 +0,0 @@ -# WINE-STAGING - - WINE - Compatibility layer to run MS Windows apps and games on GNU/Linux. - - "Staging" is the most recent testing wine version. - This version is for both x86 and x64 MS Windows programs. - - USAGE: wine-staging winecfg (this will launch WINE Config) - wine-staging uninstaller (this will launch Install/remove) - wine-staging notepad (this will launch Notepad) - wine-staging .exe (to launch a any Windows program) - - NOTE that Q4wine and other profile managers for WINE may not recognize this command, to solve this problem AM automatically creates a symbolic link to this AppImage called /opt/wine-staging/wine which can be used by the above profile managers. - - The "mmtrt" repository always provides the latest version for each of the three development branches of WINE. - - SITE: https://www.winehq.org - - SOURCE: https://github.com/mmtrt/WINE_AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/wine.md b/apps/wine.md deleted file mode 100644 index 96b70b548..000000000 --- a/apps/wine.md +++ /dev/null @@ -1,29 +0,0 @@ -# WINE - - WINE - Compatibility layer to run MS Windows apps and games on GNU/Linux. - - This script allows you to download one of the many versions available from the mmtrt/WINE_AppImage repository, on Github. - - NOTE: this will create two symlinks in $PATH, "wine" and "wine64", needed to made this AppImage work with other frontends, like Bottles AppImage. - - As a result, symbolic links may overwrite those created by installations not managed by "AM" (in /usr/local/bin) and "AppMan" (in ~/.local/bin). - - The need to create this script is given by the fact that the mmtrt/WINE_AppImage's repository is constantly evolving. The AppImages provided are of high quality and reflect the needs of the most demanding users. - - It could happen (as happened to me, with the transition from WINE v8 to WINE v9) to request a previous version because the new one is not compatible with the system in use, and to be used as a "fallback" while the author performs other tests to fix any bugs. - - The other already existing scripts for this repository ("wine-stable", "wine-staging", "wine-devel" and "wine-staging-ge-proton") may be "inaccurate" if, for example, they are available two "stable" releases for two different versions, being all artifacts released as continuous builds. - - To change the release use the option "--rollback" of "AM" and "AppMan". - - IT IS STRONGLY RECOMMENDED TO USE THIS SCRIPT TO INSTALL WINE. - - USAGE: wine winecfg (this will launch WINE Config) - wine uninstaller (this will launch Install/remove) - wine notepad (this will launch Notepad) - wine .exe (to launch a any Windows program) - - SITE: https://github.com/mmtrt/WINE_AppImage - - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | diff --git a/apps/wine32-deploy b/apps/wine32-deploy new file mode 100644 index 000000000..27c529cbb --- /dev/null +++ b/apps/wine32-deploy @@ -0,0 +1,4 @@ +# wine32-deploy +Wine32-deploy is a tool for creating AppImages for 32-bit Microsoft Windows® applications. +# SITES: +# SOURCES: https://github.com/sudo-give-me-coffee/wine32-deploy \ No newline at end of file diff --git a/apps/wine32-deploy.md b/apps/wine32-deploy.md deleted file mode 100644 index 17d6fe826..000000000 --- a/apps/wine32-deploy.md +++ /dev/null @@ -1,33 +0,0 @@ -# WINE32-DEPLOY - - Wine32-deploy is a tool for creating AppImages for 32-bit Microsoft Windows® applications. - - USAGE: wine32-deploy