├── .github
├── contributing.md
├── pull_request_template.md
└── workflows
│ └── lint.yml
├── .gitignore
├── LICENSE
├── README.md
└── package.json
/.github/contributing.md:
--------------------------------------------------------------------------------
1 | # Contribution Guidelines
2 |
3 | Make sure your pull request follows the guidelines/checklists in this document. Please note that entries can be removed if they do not follow the guidelines. Thank you for your suggestion!
4 |
5 | All projects are assumed to be free and open source unless otherwise specified using the appropriate badges to indicate otherwise.
6 |
7 | - Use the following format: `[Title](link) - Description.`
8 | - If the project is closed source add the `![closed source]` badge after the `(link)` but before the `-`.
9 | - If the project/article is non-free or paywalled add the `![paid]` badge after the `(link)` but before the `-`.
10 | - Add entries alphabetically to the most appropriate category.
11 | - No unnecessary words like `for Tauri`, `a Tauri plugin` and `Super-Fast`.
12 | - Description does not start with `A` or `An`.
13 | - Description is under 24 words.
14 | - Description has no links or parenthesis.
15 | - Use `backticks` when mentioning package names.
16 | - Double-check spelling and grammar.
17 | - No trailing whitespace is added to the end of any file.
18 | - One suggestion per pull request.
19 | - Entries that repeatedly violate guidelines will be removed!
20 | - You have to [sign your commits](https://docs.github.com/en/authentication/managing-commit-signature-verification/signing-commits).
21 |
22 | ## Plugins/Integrations
23 |
24 | - Works with **Tauri 1.x and onward**.
25 | - The project is open source and accepts contributions.
26 | - The repo is at least 30 days old.
27 | - Documentation is in English.
28 | - The project is active and maintained.
29 |
30 | ## Templates
31 |
32 | - Works with **Tauri 1.x and onward**.
33 | - The repo is at least 30 days old.
34 | - Documentation is in English.
35 | - The template provides enough information about how to get started and what's included.
36 | - The template is pretty different from the existing templates.
37 |
38 | ## Apps
39 |
40 | - The app is original and not too simple.
41 | - The README is in English.
42 | - The app makes a reasonable effort to be fast, lightweight and secure.
43 | - If the app is closed source, evidence of it being built with Tauri is included.
44 |
--------------------------------------------------------------------------------
/.github/pull_request_template.md:
--------------------------------------------------------------------------------
1 | This is the link to the project: [TITLE](URL)
2 |
3 | - [ ] **I have read the [contributing guidelines](https://github.com/tauri-apps/awesome-tauri/blob/dev/.github/contributing.md).**
4 | - [ ] Use the following format: `[Title](link) - Description.`
5 | - [ ] If the project is closed source add the `![closed source]` badge after the `(link)` but before the `-`.
6 | - [ ] If the project/article is non-free or paywalled add the `![paid]` badge after the `(link)` but before the `-`.
7 | - [ ] Add entries alphabetically to the most appropriate category.
8 | - [ ] No unnecessary words like `for Tauri`, `a Tauri plugin` and `Super-Fast`.
9 | - [ ] Description does not start with `A` or `An`.
10 | - [ ] Description is under 24 words.
11 | - [ ] Description has no links or parenthesis.
12 | - [ ] Use `backticks` when mentioning package names.
13 | - [ ] Double-check spelling and grammar.
14 | - [ ] No trailing whitespace is added to the end of any file.
15 | - [ ] One suggestion per pull request.
16 | - [ ] I understand that my entry will be removed if it violates the guidelines.
17 | - [ ] I have [signed my commits](https://docs.github.com/en/authentication/managing-commit-signature-verification/signing-commits).
18 |
19 | ### Plugins/Integrations
20 |
21 |
22 |
23 | - [ ] Works with **Tauri 1.x and onward**.
24 | - [ ] The project is open source and accepts contributions.
25 | - [ ] The repo is at least 30 days old.
26 | - [ ] Documentation is in English.
27 | - [ ] The project is active and maintained.
28 |
29 | ### Templates
30 |
31 |
32 |
33 | - [ ] Works with **Tauri 1.x and onward**.
34 | - [ ] The repo is at least 30 days old.
35 | - [ ] Documentation is in English.
36 | - [ ] The template provides enough information about how to get started and what's included.
37 | - [ ] The template is pretty different from the existing templates.
38 |
39 | ### Apps
40 |
41 |
42 |
43 | - [ ] The app is original and not too simple.
44 | - [ ] The README is in English.
45 | - [ ] The app makes a reasonable effort to be fast, lightweight and secure.
46 | - [ ] If the app closed source, evidence of it being built with Tauri is included.
47 |
48 | ### Additional Context
49 |
--------------------------------------------------------------------------------
/.github/workflows/lint.yml:
--------------------------------------------------------------------------------
1 | name: Lint
2 | on:
3 | push:
4 | pull_request:
5 | branches: [dev]
6 |
7 | jobs:
8 | lint:
9 | runs-on: ubuntu-latest
10 | steps:
11 | - uses: actions/checkout@v2
12 | with:
13 | fetch-depth: 0
14 | - run: npm install
15 | - run: npm run lint
16 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules/
2 | package-lock.json
3 | yarn.lock
4 | pnpm-lock.yaml
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2025 Tauri Apps Contributors
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
Awesome Tauri
5 |
6 | A curated collection of the best stuff from the Tauri ecosystem and community.
7 |
8 |
9 |
10 | [](https://awesome.re)
11 |
12 |
13 |
14 | ## Table of Contents
15 |
16 | - [Getting Started](#getting-started)
17 | - [Guides & Tutorials](#guides--tutorials)
18 | - [Templates](#templates)
19 | - [Development](#development)
20 | - [Plugins](#plugins)
21 | - [Integrations](#integrations)
22 | - [Articles](#articles)
23 | - [Applications](#applications)
24 | - [Audio & Video](#audio--video)
25 | - [ChatGPT clients](#chatgpt-clients)
26 | - [Data](#data)
27 | - [Developer tools](#developer-tools)
28 | - [Ebook readers](#ebook-readers)
29 | - [Email & Feeds](#email--feeds)
30 | - [File management](#file-management)
31 | - [Finance](#finance)
32 | - [Gaming](#gaming)
33 | - [Information](#information)
34 | - [Learning](#learning)
35 | - [Networking](#networking)
36 | - [Office & Writing](#office--writing)
37 | - [Productivity](#productivity)
38 | - [Search](#search)
39 | - [Security](#security)
40 | - [Social media](#social-media)
41 | - [Utilities](#utilities)
42 |
43 | ## Getting Started
44 |
45 | ### Guides & Tutorials
46 |
47 | - [Introduction](https://v2.tauri.app/start/) ![officially maintained] - Official introduction to Tauri.
48 | - [Getting Started](https://v2.tauri.app/start/prerequisites/) ![officially maintained] - Official getting started with Tauri docs.
49 | - [create-tauri-app](https://github.com/tauri-apps/create-tauri-app) ![officially maintained] - Rapidly scaffold your Tauri app.
50 | - [Auto-Updates with Tauri v2](https://docs.crabnebula.dev/guides/auto-updates-tauri) - Setup auto-updates with Tauri and CrabNebula Cloud.
51 | - [Create Tauri App with React](https://www.youtube.com/watch?v=zawhqLA7N9Y&ab_channel=chrisbiscardi) ![youtube] - Chris Biscardi shows how easy it is to wire up a Rust crate with a JS module and communicate between them.
52 | - [Publish to Apple's App Store](https://thinkgo.io/post/2023/02/publish_tauri_to_apples_app_store/) - Details all the steps needed to publish your Mac app to the app store. Includes a sample bash script.
53 | - [Tauri & ReactJS - Creating Modern Desktop Apps](https://youtube.com/playlist?list=PLmWYh0f8jKSjt9VC5sq2T3mFETasG2p2L) ![youtube] - Creating a modern desktop application with Tauri.
54 |
55 | ### Templates
56 |
57 | - [angular-tauri](https://github.com/maximegris/angular-tauri) - Angular with Typescript, SASS, and Hot Reload.
58 | - [nuxtor](https://github.com/NicolaSpadari/nuxtor) - Nuxt 3 + Tauri 2 + UnoCSS, a starter template for building desktop apps.
59 | - [rust-full-stack-with-authentication-template](https://github.com/sollambert/rust-full-stack-with-auth-template) - Yew, Tailwind CSS, Tauri, Axum, Sqlx - Starter template for full stack applications with built-in authentication.
60 | - [tauri-angular-template](https://github.com/charlesxsh/tauri-angular-boilerplate) - Angular template
61 | - [tauri-astro-template](https://github.com/HuakunShen/tauri-astro-template) - Astro template
62 | - [tauri-bishop-template](https://github.com/RoseBlume/Bishop-Tauri-Template) - Minimized vanilla template designed for highschool students.
63 | - [tauri-clojurescript-template](https://github.com/rome-user/tauri-clojurescript-template) - Minimal ClojureScript template with Shadow CLJS and React.
64 | - [tauri-deno-starter](https://github.com/marc2332/tauri-deno-starter) - React template using esbuild with Deno.
65 | - [tauri-leptos-template](https://gitlab.com/cristofa/tauri-leptos-template) - Leptos template
66 | - [tauri-nextjs-template](https://github.com/kvnxiao/tauri-nextjs-template) - Next.js (SSG) template, with TailwindCSS, opinionated linting, and GitHub Actions preconfigured.
67 | - [tauri-nuxt-template](https://github.com/HuakunShen/tauri-nuxt-template) - Nuxt3 template.
68 | - [tauri-preact-rsbuild-template](https://github.com/Alfredoes234/tauri-preact-rsbuild-template) - Preact template that uses rsbuild, rather than vite.
69 | - [tauri-react-mantine-vite-template](https://github.com/elibroftw/modern-desktop-app-template) - React Mantine template featuring custom titlebar for Windows, auto publish action, auto update, and more.
70 | - [tauri-react-parcel-template](https://github.com/henrhie/tauri-react-parcel-template) - React template with Parcel as build tool, TypeScript and hot module replacement.
71 | - [tauri-rescript-template](https://github.com/JonasKruckenberg/tauri-rescript-template) - Tauri, ReScript, and React template.
72 | - [tauri-solid-ts-tailwind-vite-template](https://github.com/AR10Dev/tauri-solid-ts-tailwind-vite) - SolidJS Template preconfigured to use Vite, TypeScript, Tailwind CSS, ESLint and Prettier.
73 | - [tauri-svelte-template](https://github.com/probablykasper/tauri-svelte-template) - Svelte template with cross-platform GitHub action builds, Vite, TypeScript, Svelte Preprocess, hot module replacement, ESLint and Prettier.
74 | - [tauri-sveltekit-template](https://github.com/deid84/tauri-sveltekit-admin-template) - SvelteKit Admin template with cross-platform GitHub action builds, Vite, TypeScript, Svelte Preprocess, hot module replacement, ESLint and Prettier.
75 | - [tauri-sycamore-template](https://github.com/JonasKruckenberg/tauri-sycamore-template) - Tauri and Sycamore template.
76 | - [tauri-vue-template](https://github.com/Uninen/tauri-vue-template) - Vue template with TypeScript, Vite + HMR, Vitest, Tailwind CSS, ESLint, and GitHub Actions.
77 | - [tauri-vue-template-2](https://github.com/skymen/tauri-vue-template) - Another vue template with Javascript, Vite, Pinia, Vue Router and Github Actions.
78 | - [tauri-yew-example](https://bitbucket.org/ftegtmeyer/tauri-yew-stopwatch/) - Simple stopwatch with Yew using commands and Tauri events.
79 | - [tauronic](https://github.com/rgilsimoes/Tauronic/) - Tauri template for hybrid Apps using Ionic components in React flavour.
80 |
81 | ## Development
82 |
83 | ### Plugins
84 |
85 | - [Official Plugins](https://github.com/tauri-apps/plugins-workspace) ![officially maintained] - This repository contains all the plugins maintained by the Tauri team. This includes plugins for NFC, logging, notifications, and more.
86 | - [window-vibrancy](https://github.com/tauri-apps/window-vibrancy) ![officially maintained] - Make your windows vibrant (v1 only - added to Tauri in v2).
87 | - [window-shadows](https://github.com/tauri-apps/window-shadows) ![officially maintained] - Add native shadows to your windows in Tauri (v1 only - added to Tauri in v2).
88 | - [tauri-plugin-blec](https://github.com/MnlPhlp/tauri-plugin-blec) - Cross platform Bluetooth Low Energy client based on `btleplug`.
89 | - [tauri-plugin-drpc](https://github.com/smokingplaya/tauri-plugin-drpc) - Discord RPC support
90 | - [tauri-plugin-keep-screen-on](https://gitlab.com/cristofa/tauri-plugin-keep-screen-on) - Disable screen timeout on Android and iOS.
91 | - [tauri-plugin-graphql](https://github.com/JonasKruckenberg/tauri-plugin-graphql) - Type-safe IPC for Tauri using GraphQL.
92 | - [sentry-tauri](https://github.com/timfish/sentry-tauri) - Capture JavaScript errors, Rust panics and native crash minidumps to Sentry.
93 | - [tauri-plugin-aptabase](https://github.com/aptabase/tauri-plugin-aptabase) - Privacy-first and minimalist analytics for desktop and mobile apps.
94 | - [tauri-plugin-clipboard](https://github.com/CrossCopy/tauri-plugin-clipboard) - Clipboard plugin for reading/writing clipboard text/image/html/rtf/files, and monitoring clipboard update.
95 | - [taurpc](https://github.com/MatsDK/TauRPC) - Typesafe IPC wrapper for Tauri commands and events.
96 | - [tauri-plugin-context-menu](https://github.com/c2r0b/tauri-plugin-context-menu) - Native context menu.
97 | - [tauri-plugin-fs-pro](https://github.com/ayangweb/tauri-plugin-fs-pro) - Extended with additional methods for files and directories.
98 | - [tauri-plugin-macos-permissions](https://github.com/ayangweb/tauri-plugin-macos-permissions) - Support for checking and requesting macOS system permissions.
99 | - [tauri-plugin-network](https://github.com/HuakunShen/tauri-plugin-network) - Tools for reading network information and scanning network.
100 | - [tauri-plugin-pinia](https://github.com/ferreira-tb/tauri-store/tree/main/packages/plugin-pinia) - Persistent Pinia stores for Vue.
101 | - [tauri-plugin-prevent-default](https://github.com/ferreira-tb/tauri-plugin-prevent-default) - Disable default browser shortcuts.
102 | - [tauri-plugin-python](https://github.com/marcomq/tauri-plugin-python/) - Use python in your backend.
103 | - [tauri-plugin-screenshots](https://github.com/ayangweb/tauri-plugin-screenshots) - Get screenshots of windows and monitors.
104 | - [tauri-plugin-serialport](https://github.com/deid84/tauri-plugin-serialport) - Cross-compatible serialport communication tool.
105 | - [tauri-plugin-serialplugin](https://github.com/s00d/tauri-plugin-serialplugin) - Cross-compatible serialport communication tool for tauri 2.
106 | - [tauri-plugin-sharesheet](https://github.com/buildyourwebapp/tauri-plugin-sharesheet) - Share content to other apps via the Android Sharesheet or iOS Share Pane.
107 | - [tauri-plugin-svelte](https://github.com/ferreira-tb/tauri-store/tree/main/packages/plugin-svelte) - Persistent Svelte stores.
108 | - [tauri-plugin-system-info](https://github.com/HuakunShen/tauri-plugin-system-info) - Detailed system information.
109 | - [tauri-plugin-theme](https://github.com/wyhaya/tauri-plugin-theme) - Dynamically change Tauri App theme.
110 | - [tauri-awesome-rpc](https://github.com/ahkohd/tauri-awesome-rpc) - Custom invoke system that leverages WebSocket.
111 | - [tauri-nspanel](https://github.com/ahkohd/tauri-nspanel) - Convert a window to panel.
112 | - [tauri-plugin-nosleep](https://github.com/pevers/tauri-plugin-nosleep/) - Block the power save functionality in the OS.
113 | - [tauri-plugin-udp](https://github.com/kuyoonjo/tauri-plugin-udp) - UDP socket support.
114 | - [tauri-plugin-tcp](https://github.com/kuyoonjo/tauri-plugin-tcp) - TCP socket support.
115 | - [tauri-plugin-mqtt](https://github.com/kuyoonjo/tauri-plugin-mqtt) - MQTT client support.
116 | - [tauri-plugin-view](https://github.com/ecmel/tauri-plugin-view) - View and share files on mobile.
117 |
118 | ### Integrations
119 |
120 | - [Astrodon](https://github.com/astrodon/astrodon) - Make Tauri desktop apps with Deno.
121 | - [Deno in Tauri](https://github.com/typed-sigterm/deno-in-tauri) - Run JS/TS code with Deno Core Engine, in Tauri apps.
122 | - [kkrpc](https://github.com/kunkunsh/kkrpc) - Seamless RPC communication between a Tauri app and node/deno/bun processes, just like Electron.
123 | - [Tauri Specta](https://github.com/oscartbeaumont/tauri-specta) - Completely typesafe Tauri commands.
124 | - [axios-tauri-adapter](https://git.kaki87.net/KaKi87/axios-tauri-adapter) - `axios` adapter for the `@tauri-apps/api/http` module.
125 | - [axios-tauri-api-adapter](https://github.com/persiliao/axios-tauri-api-adapter) - Makes it easy to use Axios in Tauri, `axios` adapter for the `@tauri-apps/api/http` module.
126 | - [ngx-tauri](https://codeberg.org/crapsilon/ngx-tauri) - Small lib to wrap around functions from tauri modules, to integrate easier with Angular.
127 | - [svelte-tauri-filedrop](https://github.com/probablykasper/svelte-tauri-filedrop) - File drop handling component for Svelte.
128 | - [tauri-macos-menubar-app-example](https://github.com/ahkohd/tauri-macos-menubar-app-example) - Example macOS Menubar app project.
129 | - [tauri-macos-spotlight-example](https://github.com/ahkohd/tauri-macos-spotlight-example) - Example macOS Spotlight app project.
130 | - [tauri-update-cloudflare](https://github.com/KilleenCode/tauri-update-cloudflare) - One-click deploy a Tauri Update Server to Cloudflare.
131 | - [tauri-update-server](https://git.kaki87.net/KaKi87/tauri-update-server) - Automatically interface the Tauri updater with git repository releases.
132 | - [vite-plugin-tauri](https://github.com/amrbashir/vite-plugin-tauri) - Integrate Tauri in a Vite project to build cross-platform apps.
133 |
134 | ### Articles
135 |
136 | - [Getting Started Using Tauri Mobile](https://medium.com/p/6f90de5b098) ![paid] - Ed Rutherford outlines how to create a mobile app with Tauri.
137 | - [How to use local SQLite database with Tauri and Rust](https://blog.moonguard.dev/how-to-use-local-sqlite-database-with-tauri) - Guide to setup and use SQLite database with Tauri and Rust.
138 | - [Managing State in Desktop Applications with Rust and Tauri](https://blog.moonguard.dev/manage-state-with-tauri) - How to share and manage any kind of state globally in Tauri apps.
139 | - [Setting up Actix Web in a Tauri App](https://blog.moonguard.dev/setting-up-actix-in-tauri) - How to setup a HTTP server with Tauri and Actix Web.
140 | - [Tauri's async process](https://rfdonnelly.github.io/posts/tauri-async-rust-process/) - Rob Donnelly dives deep into Async with Tauri.
141 |
142 | ## Applications
143 |
144 | ### Audio & Video
145 |
146 | - [Ascapes Mixer](https://github.com/ilyaly/ascapes-mixer) - Audio mixer with three dedicated players for music, ambience and SFX for TTRPG sessions.
147 | - [Cap](https://github.com/CapSoftware/cap) - The open-source Loom alternative. Beautiful, shareable screen recordings.
148 | - [Cardo](https://github.com/n0vella/cardo) - Podcast player with integrated search and management of subscriptions.
149 | - [Compresso](https://github.com/codeforreal1/compressO) - Cross-platform video compression app powered by FFmpeg.
150 | - [Curses](https://github.com/mmpneo/curses) - Speech-to-Text and Text-to-Speech captions for OBS, VRChat, Twitch chat and more.
151 | - [Douyin Downloader](https://github.com/lzdyes/douyin-downloader) - Cross-platform douyin video downloader.
152 | - [Feiyu Player](https://github.com/idootop/feiyu-player) - Cross-platform online video player where beauty meets functionality.
153 | - [Hypetrigger](https://hypetrigger.io/) ![closed source] - Detect highlight clips in video with FFMPEG + Tensorflow on the GPU.
154 | - [Hyprnote](https://github.com/fastrepl/hyprnote) - AI notepad for meetings. Local-first and extensible.
155 | - [Jellyfin Vue](https://github.com/jellyfin/jellyfin-vue) - GUI client for a Jellyfin server based on Vue.js and Tauri.
156 | - [Lofi Engine](https://github.com/meel-hd/lofi-engine) - Generate Lo-Fi music on the go and locally.
157 | - [mediarepo](https://github.com/Trivernis/mediarepo) - Tag-based media management application.
158 | - [Mr Tagger](https://github.com/probablykasper/mr-tagger) - Music file tagging app.
159 | - [Musicat](https://github.com/basharovV/musicat) - Sleek desktop music player and tagger for offline music.
160 | - [screenpipe](https://github.com/louis030195/screen-pipe) - Build AI apps based on all your screens & mics context.
161 | - [Watson.ai](https://github.com/LatentDream/watson.ai) - Easily record and extract the most important information from your meetings.
162 | - [XGetter](https://github.com/xgetter-team/xgetter) ![closed source]- Cross-platform GUI to download videos and audio from Youtube, Facebook, X(Twitter), Instagram, Tiktok and more.
163 | - [yt-dlp GUI](https://github.com/gaeljacquin/yt-dlp-gui) - Cross-platform GUI client for the `yt-dlp` command-line audio/video downloader.
164 |
165 | ### ChatGPT clients
166 |
167 | - [ChatGPT](https://github.com/lencx/ChatGPT) - Cross-platform ChatGPT desktop application.
168 | - [ChatGPT-Desktop](https://github.com/Synaptrix/ChatGPT-Desktop) - Cross-platform productivity ChatGPT assistant launcher.
169 | - [Kaas](https://github.com/0xfrankz/Kaas) - Cross-platform desktop LLM client for OpenAI ChatGPT, Anthropic Claude, Microsoft Azure and more, with a focus on privacy and security.
170 | - [Orion](https://github.com/taecontrol/orion) - Cross-platform app that lets you create multiple AI assistants with specific goals powered with ChatGPT.
171 | - [QuickGPT](https://github.com/dubisdev/quickgpt) - Lightweight AI assistant for Windows.
172 | - [Yack](https://github.com/rajatkulkarni95/yack) - Spotlight like app for interfacing with GPT APIs.
173 |
174 | ### Data
175 |
176 | - [Annimate](https://github.com/matthias-stemmler/annimate) - Convenient export of query results from the ANNIS system for linguistic corpora.
177 | - [BS Redis Desktop Client](https://github.com/fuyoo/bs-redis-desktop-client) - The Best Surprise Redis Desktop Client.
178 | - [Dataflare](https://dataflare.app) ![closed source] ![paid] - Simple and elegant database manager.
179 | - [DocKit](https://github.com/geek-fun/dockit) - GUI client for NoSQL databases such as elasticsearch, OpenSearch, etc.
180 | - [Duckling](https://github.com/l1xnan/duckling) - Lightweight and fast viewer for csv/parquet files and databases such as DuckDB, SQLite, PostgreSQL, MySQL, Clickhouse, etc.
181 | - [Elasticvue](https://elasticvue.com/) - Free and open-source Elasticsearch GUI
182 | - [Noir](https://noirdb.dev) - Keyboard-driven database management client.
183 | - [pgMagic🪄](https://pgmagic.app/?ref=awesometauri) ![closed source] ![paid] - GUI client to talk to Postgres in SQL or with natural language.
184 | - [qsv pro](https://qsvpro.dathere.com) ![closed source] ![paid] - Explore spreadsheet data including CSV in interactive data tables with generated metadata and a node editor based on the `qsv` CLI.
185 | - [Rclone UI](https://rcloneui.com) - The cross-platform desktop GUI for **`rclone`** & S3.
186 | - [SmoothCSV](https://smoothcsv.com/) ![closed source] - Powerful and intuitive tool for editing CSV files with spreadsheet-like interface.
187 |
188 | ### Developer tools
189 |
190 | - [AHQ Store](https://github.com/ahqsoftwares/tauri-ahq-store) - Publish, Update and Install apps to the Windows-specific AHQ Store.
191 | - [AppCenter Companion](https://github.com/zenoxs/tauri-appcenter-companion) - Regroup, build and track your `VS App Center` apps.
192 | - [AppHub](https://github.com/francesco-gaglione/AppHub) - Streamlines .appImage package installation, management, and uninstallation through an intuitive Linux desktop interface.
193 | - [Aptakube](https://aptakube.com/) ![closed source] - Multi-cluster Kubernetes UI.
194 | - [Brew Services Manage](https://github.com/persiliao/brew-services-manage)![closed source] macOS Menu Bar application for managing Homebrew services.
195 | - [claws](https://clawsapp.com/) ![closed source] - Visual interface for the AWS CLI.
196 | - [CrabNebula DevTools](https://crabnebula.dev/devtools) - Visual tool for understanding your app. Optimize the development process with easy debugging and profiling.
197 | - [CrabNebula DevTools Premium](https://crabnebula.dev/devtools) ![closed source] ![paid] - Optimize the development process with easy debugging and profiling. Debug the Rust portion of your app with the same comfort as JavaScript!
198 | - [DevBox](https://www.dev-box.app/) ![closed source] - Many useful tools for developers, like generators, viewers, converters, etc.
199 | - [DevClean](https://github.com/HuakunShen/devclean) - Clean up development environment with ease.
200 | - [DevTools-X](https://github.com/fosslife/devtools-x) - Collection of 30+ cross platform development utilities.
201 | - [Dropcode](https://github.com/egoist/dropcode) - Simple and lightweight code snippet manager.
202 | - [Echoo](https://github.com/zsmatrix62/echoo-app) - Offline/Online utilities for developers on MacOS & Windows.
203 | - [GitButler](https://gitbutler.com) - GitButler is a new Source Code Management system.
204 | - [GitLight](https://github.com/colinlienard/gitlight) - GitHub & GitLab notifications on your desktop.
205 | - [JET Pilot](https://www.jet-pilot.app) - Kubernetes desktop client that focuses on less clutter, speed and good looks.
206 | - [Hoppscotch](https://hoppscotch.com/download) ![closed source] - Trusted by millions of developers to build, test and share APIs.
207 | - [Keadex Mina](https://github.com/keadex/keadex) - Open Source, serverless IDE to easily code and organize at a scale C4 model diagrams.
208 | - [KFtray](https://github.com/hcavarsan/kftray) - A tray application that manages port forwarding in Kubernetes.
209 | - [PraccJS](https://github.com/alyalin/PraccJS) - Lets you practice JavaScript with real-time code execution.
210 | - [nda](https://github.com/kuyoonjo/nda) - Network Debug Assistant - UDP, TCP, Websocket, SocketIO, MQTT
211 | - [Ngroker](https://ngroker.com) ![closed source] ![paid] - 🆖ngrok gui client.
212 | - [Soda](https://github.com/Web3-Builders-Alliance/soda) - Generate source code from an IDL.
213 | - [Pake](https://github.com/tw93/Pake) - Turn any webpage into a desktop app with Rust with ease.
214 | - [Rivet](https://github.com/Ironclad/rivet) - Visual programming environment for creating AI features and agents.
215 | - [TableX](https://tablex-tan.vercel.app/) - Table viewer for modern developers
216 | - [Tauri Mobile Test](https://github.com/dedSyn4ps3/tauri-mobile-test) - Create and build cross-platform mobile applications.
217 | - [Testfully](https://testfully.io/) ![closed source] ![paid] - Offline API Client & Testing tool.
218 | - [verbcode](https://github.com/Verbcode/verbcode-release) ![closed source] - Simplify your localization journey.
219 | - [Worktree Status](https://github.com/sandercox/worktree-status/) - Get git repo status in your macOS MenuBar or Windows notification area.
220 | - [Yaak](https://yaak.app) - Organize and execute REST, GraphQL, and gRPC requests.
221 |
222 | ### Ebook readers
223 |
224 | - [Alexandria](https://github.com/btpf/Alexandria) - Minimalistic cross-platform eBook reader.
225 | - [Jane Reader](https://janereader.com) ![closed source] - Modern and distraction-free epub reader.
226 | - [Readest](https://github.com/chrox/readest) - Modern and feature-rich ebook reader designed for avid readers.
227 |
228 | ### Email & Feeds
229 |
230 | - [Alduin](https://alduin.stouder.io/) - Alduin is a free and open source RSS, Atom and JSON feed reader that allows you to keep track of your favorite websites.
231 | - [Aleph](https://github.com/chezhe/aleph) - Aleph is an RSS reader & podcast client.
232 | - [BULKUS](https://github.com/KM8Oz/BULKUS) - Email validation software.
233 | - [Lettura](https://github.com/zhanglun/lettura) - Open-source feed reader for macOS.
234 | - [mdsilo Desktop](https://github.com/mdSilo/mdSilo-app) - Feed reader and knowledge base.
235 |
236 | ### File management
237 |
238 | - [CzkawkaTauri](https://github.com/shixinhuang99/czkawka-tauri) - Multi functional app to find duplicates, empty folders, similar images etc.
239 | - [enassi](https://github.com/enassi/enassi) - Encryption assistant that encrypts and stores your notes and files.
240 | - [EzUp](https://github.com/HuakunShen/ezup) - File and Image uploader. Designed for blog writing and note taking.
241 | - [Orange](https://github.com/naaive/orange) - Cross-platform file search engine that can quickly locate files or folders based on keywords.
242 | - [Payload](https://payload.app/) ![closed source] - Drag & drop file transfers over local networks and online.
243 | - [Spacedrive](https://github.com/spacedriveapp/spacedrive) - A file explorer from the future.
244 | - [SquirrelDisk](https://github.com/adileo/squirreldisk) - Beautiful cross-platform disk usage analysis tool.
245 | - [Time Machine Inspector](https://github.com/probablykasper/time-machine-inspector) - Find out what's taking up your Time Machine backup space.
246 | - [Xplorer](https://github.com/kimlimjustin/xplorer) - Customizable, modern and cross-platform File Explorer.
247 |
248 | ### Finance
249 |
250 | - [Compotes](https://github.com/Orbitale/Compotes) - Local bank account operations storage to vizualize them as graphs and customize them with rules and tags for better filtering.
251 | - [CryptoBal](https://github.com/Rabbit-Company/CryptoBal-Desktop) - Desktop application for monitoring your crypto assets.
252 | - [Ghorbu Wallet](https://github.com/matthias-wright/ghorbu-wallet) - Cross-platform desktop HD wallet for Bitcoin.
253 | - [nym-wallet](https://github.com/nymtech/nym/tree/develop/nym-wallet) - The Nym desktop wallet enables you to use the Nym network and take advantage of its key capabilities.
254 | - [UsTaxes](https://github.com/ustaxes/ustaxes) - Free, private, open-source US tax filings.
255 | - [Mahalli](https://github.com/AbdelilahOu/Mahalli-tauri) - Local first inventory and invoicing management app.
256 | - [Wealthfolio](https://wealthfolio.app) - Simple, open-source desktop portfolio tracker that keeps your financial data safe on your computer.
257 |
258 | ### Gaming
259 |
260 | - [9Launcher](https://github.com/wearrrrr/9Launcher) - Modern Cross-platform launcher for Touhou Project Games.
261 | - [BestCraft](https://github.com/Tnze/ffxiv-best-craft) - Crafting simulator with solver algorithms for Final Fantasy XIV(FF14).
262 | - [BetterFleet](https://github.com/zelytra/BetterFleet) - Help players of Sea of Thieves create an alliance server.
263 | - [clear](https://clear.adithya.zip) - Clean and minimalist video game library manager and launcher.
264 | - [CubeShuffle](https://github.com/philipborg/CubeShuffle) - Card game shuffling utility.
265 | - [En Croissant](https://github.com/franciscoBSalgueiro/en-croissant) - Chess database and game analysis app.
266 | - [FishLauncher](https://github.com/fishfight/FishLauncher) - Cross-platform launcher for `Fish Fight`.
267 | - [Gale](https://github.com/Kesomannen/gale) - Mod manager for many games on `Thunderstore`.
268 | - [Modrinth App](https://github.com/modrinth/code/blob/main/apps/app) - Cross-platform launcher for `Minecraft` with mod management.
269 | - [OpenGOAL](https://github.com/open-goal/launcher) - Cross-platform installer, mod-manager and launcher for `OpenGOAL`; the reverse engineered PC ports of the Jak and Daxter series.
270 | - [Outer Wilds Mod Manager](https://github.com/ow-mods/ow-mod-man) - Cross-platform mod manager for `Outer Wilds`.
271 | - [OyasumiVR](https://github.com/Raphiiko/OyasumiVR) - Software that helps you sleep in virtual reality, for use with SteamVR, VRChat, and more.
272 | - [Rai Pal](https://github.com/raicuparta/rai-pal) - Manager for universal mods such as `UEVR` and `UUVR`.
273 | - [Resolute](https://github.com/Gawdl3y/Resolute) - User-friendly, cross-platform mod manager for the game Resonite.
274 | - [Retrom](https://github.com/JMBeresford/retrom) - Private cloud game library distribution server + frontend/launcher.
275 | - [Samira](https://github.com/jsnli/Samira) - Steam achievement manager for Linux.
276 | - [Steam Art Manager](https://github.com/Tormak9970/Steam-Art-Manager) - Tool for customizing the art of your Steam games.
277 | - [Tauri Chess](https://github.com/jamessizeland/tauri-chess) - Implementation of Chess, logic in Rust and visualization in React.
278 | - [Teyvat Guide](https://github.com/BTMuli/TeyvatGuide) - Game Tool for Genshin Impact player.
279 | - [Quadrant](https://github.com/mrquantumoff/quadrant/) - Tool for managing Minecraft mods and modpacks with the ability to use Modrinth and CurseForge.
280 |
281 | ### Information
282 |
283 | - [Cores](https://github.com/Levminer/cores) ![paid] - Modern hardware monitor with remote monitoring.
284 | - [Seismic](https://github.com/breadthe/seismic) - Taskbar app for USGS earthquake tracking.
285 | - [Stockman](https://github.com/awkj/stockman) - Display stock info on mac menubar.
286 | - [Watchcoin](https://github.com/lifecoder1988/tauri-watch-coin) - Display cypto price on OS menubar without a window.
287 |
288 | ### Learning
289 |
290 | - [Japanese](https://github.com/meel-hd/japanese) - Learn Japanese Hiragana and Katakana. Memorize, write, pronounce, and test your knowledge.
291 | - [Manjaro Starter](https://github.com/oguzkaganeren/manjaro-starter) - Documentation and support app for new Manjaro users.
292 | - [Piano Trainer](https://github.com/ZaneH/piano-trainer) - Practice piano chords, scales, and more using your MIDI keyboard.
293 | - [Solars](https://github.com/hiltontj/solars) - Visualize the planets of our solar system.
294 | - [Syre](https://github.com/syre-data/syre) - Scientific data assistant.
295 | - [Rosary](https://github.com/Roseblume/Rosary) - Study Christianity.
296 |
297 | ### Networking
298 |
299 | - [Clash Verge Rev](https://github.com/clash-verge-rev/clash-verge-rev) - Continuation of Clash Verge, a rule-based proxy.
300 | - [CyberAPI](https://github.com/vicanso/cyberapi) - API tool client for developer.
301 | - [Jexpe](https://github.com/jexpe-apps/jexpe) - Cross-platform, open source SSH and SFTP client that makes connecting to your remote servers easy.
302 | - [Mail-Dev](https://github.com/samirdjelal/mail-dev) - Cross-platform, local SMTP server for email testing/debugging.
303 | - [mDNS-Browser](https://github.com/hrzlgnm/mdns-browser) - Cross-platform mDNS browser app for discovering network services using mDNS.
304 | - [Nhex](https://github.com/nhexirc/nhex) - Next-generation IRC client inspired by HexChat.
305 | - [RustDesk](https://github.com/rustdesk/rustdesk-server) - Self-hosted server for RustDesk, an open source remote desktop.
306 | - [RustDuck](https://github.com/thewh1teagle/RustDuck) - Cross platform dynamic DNS updater for duckdns.org.
307 | - [T-Shell](https://github.com/TheBlindM/T-Shell) - An open-source SSH, SFTP intelligent command line terminal application.
308 | - [TunnlTo](https://github.com/TunnlTo/desktop-app) - Windows WireGuard VPN client built for split tunneling.
309 | - [UpVPN](https://github.com/upvpn/upvpn-app) - WireGuard VPN client for Linux, macOS, and Windows.
310 | - [Watcher](https://github.com/windht/watcher) - API manager built for a easier use to manage and collaborate.
311 | - [Wirefish](https://github.com/stefanodevenuto/wirefish) - Cross-platform packet sniffer and analyzer.
312 |
313 | ### Office & Writing
314 |
315 | - [fylepad](https://github.com/imrofayel/fylepad/) - Notepad with powerful rich-text editing, built with Vue & Tauri.
316 | - [Bidirectional](https://github.com/samirdjelal/bidirectional) - Write Arabic text in apps that don't support bidirectional text.
317 | - [Blank](https://github.com/FPurchess/blank) - Minimalistic, opinionated markdown editor made for writing.
318 | - [Ensō](https://enso.sonnet.io) ![closed source] - Write now, edit later. Ensō is a writing tool that helps you enter a state of flow.
319 | - [Handwriting keyboard](https://github.com/BigIskander/Handwriting-keyboard-for-Linux-tesseract) - Handwriting keyboard for Linux X11 desktop environment.
320 | - [JournalV](https://github.com/ahmedkapro/journalv) - Journaling app for your days and dreams.
321 | - [MarkFlowy](https://github.com/drl990114/MarkFlowy) - Modern markdown editor application with built-in ChatGPT extension.
322 | - [MD Viewer](https://github.com/kuyoonjo/md-viewer) - Cross-platform markdown viewer.
323 | - [MDX Notes](https://github.com/maqi1520/mdx-notes/tree/tauri-app) - Versatile WeChat typesetting editor and cross-platform Markdown note-taking software.
324 | - [Noor](https://noor.to/) ![closed source] - Chat app for high-performance teams. Designed for uninterrupted deep work and rapid collaboration.
325 | - [Notpad](https://github.com/Muhammed-Rahif/Notpad) - Cross-platform rich text editor with a notepad interface, enhanced with advanced features beyond standard notepad.
326 | - [Parchment](https://github.com/tywil04/parchment) - Simple local-only cross-platform text editor with basic markdown support.
327 | - [Semanmeter](https://yibiao.fun/) ![closed source] - OCR and document conversion software.
328 | - [Ubiquity](https://github.com/opensourcecheemsburgers/ubiquity) - Cross-platform markdown editor; built with Yew, Tailwind, and DaisyUI.
329 | - [HuLa](https://github.com/HuLaSpark/HuLa) - HuLa is a desktop instant messaging app built on Tauri+Vue3 (not just instant messaging).
330 | - [Gramax](https://github.com/Gram-ax/gramax) - Free, open-source application for creating, editing, and publishing Git-driven documentation sites using Markdown and a visual editor.
331 |
332 | ### Productivity
333 |
334 | - [Banban](https://github.com/HubertK05/banban) - Kanban board with tags, categories and markdown support.
335 | - [Blink Eye](https://github.com/nomandhoni-cs/blink-eye) - A minimalist eye care reminder app to reduce eye strain, featuring customizable timers , full-screen popups, and screen-on-time.
336 | - [BuildLog](https://github.com/rajatkulkarni95/buildlog) - Menu bar for keeping track of Vercel Deployments.
337 | - [Constito](https://constito.com) ![closed source] ![paid] - Organize your life so that no one else sees it.
338 | - [Clippy](https://github.com/0-don/clippy) - Clipboard manager with sync & encryption.
339 | - [Dalgona](https://github.com/GHGHGHKO/dalgona) - GIF meme finder app for Windows and macOS.
340 | - [EcoPaste](https://github.com/ayangweb/EcoPaste/tree/master) - Powerful open-source clipboard manager for macOS, Windows and Linux(x11) platforms.
341 | - [Floweb](https://floweb.cn/en) ![closed source] ![paid] - Ultra-lightweight floating desktop pendant that transforms web pages into web applications, supporting features such as pinning and transparency, multi-account, auto-refresh.
342 | - [GitBar](https://github.com/mikaelkristiansson/gitbar) - System tray app for GitHub reviews.
343 | - [Gitification](https://github.com/Gitification-App/gitification) - Menu bar app for managing Github notifications.
344 | - [Google Task Desktop Client](https://github.com/codad5/google-task-tauri) - Google Task Desktop Client
345 | - [HackDesk](https://github.com/EastSun5566/hackdesk) - Hackable HackMD desktop application.
346 | - [jasnoo](https://jasnoo.com) ![closed source] ![paid] - Desktop software designed to help you solve problems, prioritise daily actions and focus
347 | - [Kanri](https://github.com/trobonox/kanri) - Cross-platform, offline-first Kanban board app with a focus on simplicity and user experience.
348 | - [Kianalol](https://github.com/zxh3/kianalol) - Spotlight-like efficiency tool for swift website access.
349 | - [Kunkun](https://kunkun.sh/) - Cross-platform, extensible app launcher. Alternative to Alfred and Raycast.
350 | - [Link Saas](https://github.com/linksaas/desktop) - Efficiency tools for software development teams.
351 | - [MacroGraph](https://github.com/Brendonovich/macrograph) - Visual programming for content creators.
352 | - [MeadTools](https://github.com/ljreaux/meadtools-desktop) - All-in-one Mead, Wine, and Cider making calculator.
353 | - [mynd](https://github.com/Gnarus-G/mynd) - Quick and very simple todo-list management app for developers that live mostly in the terminal.
354 | - [Obliqoro](https://github.com/mrjackwills/obliqoro) - Oblique Strategies meets Pomodoro.
355 | - [PasteBar](https://github.com/PasteBar/PasteBarApp) - Limitless, Free Clipboard Manager for Mac and Windows. Effortless management of everything you copy and paste.
356 | - [Pomodoro](https://github.com/g07cha/pomodoro) - Time management tool based on Pomodoro technique.
357 | - [Qopy](https://github.com/0PandaDEV/Qopy) - The fixed Clipboard Manager for Windows and Mac.
358 | - [Remind Me Again](https://github.com/probablykasper/remind-me-again) - Toggleable reminders app for Mac, Linux and Windows.
359 | - [Takma](https://github.com/jam53/Takma) - Kanban-style to-do app, fully offline with support for Markdown, labels, due dates, checklists and deep linking.
360 | - [Tencent Yuanbao](https://yuanbao.tencent.com/) ![closed source] - Tencent Yuanbao is an AI application based on Tencent Hunyuan large model. It is an all-round assistant that can help you with writing, painting, copywriting, translation, programming, searching, reading and summarizing.
361 | - [TimeChunks](https://danielulrich.com/en/timechunks/) ![closed source] - Time tracking for freelancers without timers and HH:MM:SS inputs.
362 | - [WindowPet](https://github.com/SeakMengs/WindowPet) - Overlay app that lets you have adorable companions such as pets and anime characters on your screen.
363 | - [Zawee](https://zawee.net) ![closed source] - Experience the synergy of Kanban boards, note-taking, file sharing, and more, seamlessly integrated into one powerful application.
364 | - [ZeroLaunch-rs](https://github.com/ghost-him/ZeroLaunch-rs) - Focuses on app launching with error correction, supports full/pinyin/abbreviation searches. Features customizable interface and keyboard shortcuts.
365 |
366 | ### Search
367 |
368 | - [Coco AI](http://coco.rs/) - 🥥 Coco AI unifies all your enterprise applications and data—Google Workspace, Dropbox, GitHub, and more—into one powerful search and Gen-AI chat platform.
369 | - [Harana](https://github.com/harana/search) - Search your desktop and 300+ cloud apps, instantly.
370 | - [Spyglass](https://github.com/a5huynh/spyglass) - Personal search engine that indexes your files/folders, cloud accounts, and whatever interests you on the internet.
371 |
372 | ### Security
373 |
374 | - [Authme](https://github.com/Levminer/authme) - Two-factor (2FA) authentication app for desktop.
375 | - [Calciumdibromid](https://codeberg.org/Calciumdibromid/CaBr2) - Generate "experiment wise safety sheets" in compliance to European law.
376 | - [Defguard](https://github.com/defguard/client) - WireGuard VPN destkop client with Two-factor (2FA) authentication.
377 | - [Gluhny](https://github.com/angeldollface/gluhny) A graphical interface to validate IMEI numbers.
378 | - [OneKeePass](https://github.com/OneKeePass/desktop) - Secure, modern, cross-platform and KeePass compatible password manager.
379 | - [Padloc](https://github.com/padloc/padloc) - Modern, open source password manager for individuals and teams.
380 | - [Secops](https://github.com/kunalsin9h/secops) - Ubuntu Operating System security made easy.
381 | - [Tauthy](https://github.com/pwltr/tauthy) - Cross-platform TOTP authentication client.
382 | - [Truthy](https://github.com/fosslife/truthy/) - Modern cross-platform 2FA manager with tons of features and a beautiful UI.
383 |
384 | ### Social media
385 |
386 | - [Dorion](https://github.com/SpikeHD/Dorion) - Light weight third-party Discord client with support for plugins and themes.
387 | - [Identia](https://github.com/iohzrd/identia) - Decentralized social media on IPFS.
388 | - [Kadium](https://github.com/probablykasper/kadium) - App for staying on top of YouTube channel uploads.
389 | - [Scraper Instagram GUI Desktop](https://git.kaki87.net/KaKi87/scraper-instagram-gui-desktop) - Alternative Instagram front-end for desktop.
390 |
391 | ### Utilities
392 |
393 | - [AgeTimer](https://github.com/dhextras/age-timer-tauri) - Desktop utility that counts your age in real-time.
394 | - [Auto Wallpaper](https://github.com/auto-wallpaper/auto-wallpaper) - Automatically generates 4K wallpapers based on user's location, weather, and time of day or any custom prompts.
395 | - [bewCloud Desktop Sync](https://github.com/bewcloud/bewcloud-desktop) - Desktop sync app for bewCloud, a simpler alternative to Nextcloud and ownCloud.
396 | - [TypeView - KeyStroke Visualizer](https://github.com/dunkbing/typeview) - Visualizes keys pressed on the screen and simulates the sound of mechanical keyboard.
397 | - [Browsernaut](https://github.com/billyjacoby/browsernaut) - Browser picker for macOS.
398 | - [Clipboard Record](https://github.com/lesterhnu/clipboard) - Record Clipboard Content.
399 | - [Dwall](https://github.com/dwall-rs/dwall) - Change the Windows desktop and lock screen wallpapers according to the sun's azimuth and altitude angles, just like on macOS.
400 | - [Fancy Screen Recorder](https://fancyapps.com/freebies/) ![closed source] - Record entire screen or a selected area, trim and save as a GIF or video.
401 | - [FanslySync](https://github.com/SticksDev/FanslySync) - Sync your Fansly data with 3rd party applications, securely!
402 | - [Flying Carpet](https://github.com/spieglt/flyingcarpet) - File transfer between Android, iOS, Linux, macOS, and Windows over auto-configured hotspot.
403 | - [Get Unique ID](https://github.com/hiql/get-unique-id-app) - Generates unique IDs for you to use in debugging, development, or anywhere else you may need a unique ID.
404 | - [Happy](https://github.com/thewh1teagle/happy) - Control HappyLight compatible LED strip with ease.
405 | - [Imagenie](https://github.com/zhongweili/imagenie) - AI-powered desktop app for stunning image transformations
406 | - [KoS - Key on Screen](https://github.com/dubisdev/key-on-screen) - Show in your screen the keys you are pressing.
407 | - [Lanaya](https://github.com/ChurchTao/Lanaya) - Easy to use, cross-platform clipboard management.
408 | - [Lingo](https://github.com/thewh1teagle/lingo) - Translate offline in every language on every platform.
409 | - [Linka!](https://github.com/linka-app/linka) - AI powered, easy to use, cross-platform bookmark management tool.
410 | - [Locus](https://github.com/Sushants-Git/locus) - Intelligent activity tracker that helps you understand and improve your focus habits.
411 | - [MagicMirror](https://github.com/idootop/MagicMirror) - Instant AI Face Swap, Hairstyles & Outfits — One click to a brand new you!
412 | - [MBTiles Viewer](https://github.com/Akylas/mbview-rs) - MBTiles Viewer and Inspector.
413 | - [Metronome](https://github.com/ZaneH/metronome) - Visual metronome for Windows, Linux and macOS.
414 | - [Mobslide](https://github.com/thewh1teagle/mobslide) - Turn your smartphone into presentation remote controller.
415 | - [NeoHtop](https://github.com/Abdenasser/neohtop) - Cross platform system monitoring tool with a model look and feel.
416 | - [Overlayed](https://overlayed.dev) - Voice chat overlay for Discord.
417 | - [Pachtop](https://pachtop.com/) - Modern Cross-platform system monitor 🚀
418 | - [Passwords](https://github.com/hiql/passwords-app) - A random password generator.
419 | - [Pavo](https://github.com/zhanglun/pavo) - Cross-platform desktop wallpaper application.
420 | - [Peekaboo](https://github.com/angeldollface/peekaboo) A graphical interface to display images.
421 | - [Pointless](https://github.com/kkoomen/pointless) - Endless drawing canvas.
422 | - [Pot](https://github.com/pot-app/pot-desktop) - Cross-platform Translation Software.
423 | - [RMBG](https://github.com/zhbhun/rmbg) - Cross-platform image background removal tool.
424 | - [Recordscript](https://github.com/Recordscript/recordscript) - Record & transcribe your online meetings, or subtitle your files. Cross-platform local-only screen recorder & subtitle generator.
425 | - [Rounded Corners](https://github.com/RoundedCorners/Application) - Rounded Corners app for Windows.
426 | - [RunMath](https://github.com/dubisdev/runmath) - Keyboard-first calculator for Windows.
427 | - [SensiMouse](https://github.com/Nicify/sensi-mouse) - Easily change macOS system-wide mouse sensitivity and acceleration settings.
428 | - [SlimeVR Server](https://github.com/SlimeVR/SlimeVR-Server) - Server app for SlimeVR, facilitating full-body tracking in virtual reality.
429 | - [SoulFire](https://github.com/AlexProgrammerDE/SoulFireClient) - Advanced Minecraft Server-Stresser Tool. Launch bot attacks on your servers to measure performance.
430 | - [Stable Diffusion Buddy](https://github.com/breadthe/sd-buddy) - Desktop UI companion for the self-hosted Mac version of Stable Diffusion.
431 | - [Stacks](https://github.com/cablehead/stacks) - Modern and capable clipboard manager for macOS. Seeking Linux and Windows contributions.
432 | - [SwitchShuttle](https://github.com/s00d/switchshuttle) - Cross-platform system tray application that allows users to run predefined commands in various terminal applications.
433 | - [Tauview](https://github.com/sprout2000/tauview) - Minimalist image viewer for macOS and Linux based on Leaflet.js.
434 | - [ToeRings](https://github.com/acarl005/toerings) - Conky Seamod inspired system monitor app.
435 | - [Toolcat](https://toolcat.app) ![closed source] - All-in-one toolkit for developers and creators.
436 | - [TrayFier](https://github.com/dubisdev/trayfier) - Supercharge your Windows Tray with links, files, executables...
437 | - [TrguiNG](https://github.com/openscopeproject/TrguiNG) - Remote GUI for Transmission torrent daemon.
438 | - [Verve](https://github.com/ParthJadhav/verve) - Launcher for accessing and opening applications, files and documents.
439 | - [Vibe](https://thewh1teagle.github.io/vibe) - Transcribe audio or video in every language on every platform.
440 | - [Wallpaper changer](https://github.com/zeet2020/wallpaper-changer-tauri) - Simple wallpaper changer app.
441 | - [Zap](https://usezap.sh/?ref=awesometauri) ![closed source] - macOS spotlight-like dock that makes navigating apps convenient.
442 | - [Sofast](https://sofast.fun) ![closed source] - A cross-platform Raycast-like app.
443 |
444 | [officially maintained]: https://img.shields.io/badge/official-FFC131?&logo=tauri&logoColor=black
445 | [closed source]: https://img.shields.io/badge/closed%20source-FFC131?&logoColor=black
446 | [paid]: https://img.shields.io/badge/paid-FFC131?&logoColor=black
447 | [youtube]: https://img.shields.io/badge/YouTube-FF0000
448 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "awesome-tauri",
3 | "version": "1.0.0",
4 | "description": "",
5 | "main": "index.js",
6 | "scripts": {
7 | "lint": "awesome-lint README.md"
8 | },
9 | "repository": {
10 | "type": "git",
11 | "url": "git+https://github.com/tauri-apps/awesome-tauri.git"
12 | },
13 | "author": "",
14 | "license": "MIT",
15 | "bugs": {
16 | "url": "https://github.com/tauri-apps/awesome-tauri/issues"
17 | },
18 | "homepage": "https://github.com/tauri-apps/awesome-tauri#readme",
19 | "devDependencies": {
20 | "awesome-lint": "^0.18.0"
21 | }
22 | }
23 |
--------------------------------------------------------------------------------