Feature rich, native desktop, YouTube Music client. Tauri + Rust + SvelteKit, ad-free playback through libmpv, Last.fm scrobbling and Discord Rich Presence, no Electron.
327
stars
478
commits
Rust
primary language
Sep 11, 2026
updated
A native desktop YouTube Music client — Rust + Tauri, ad-free, no Electron.
Limusic talks directly to YouTube's internal API and plays audio through libmpv — no bundled browser runtime, no backend server, no ads in the audio. It started as a desktop rebuild of the playback engine behind Metrolist, an Android YouTube Music client, and grew from there.
| Platform | File | Notes |
|---|---|---|
| Linux | .AppImage | Self-updating, libmpv bundled. Needs glibc 2.39+ (Ubuntu 24.04+, Debian 13+, Fedora 40+) |
| Linux (Ubuntu/Debian) | .deb | No self-update. Needs Ubuntu 24.04+ / Debian 13+; apt pulls libmpv and webkit2gtk in for you |
| Linux (Fedora/RHEL) | .rpm | Needs mpv-libs installed (sudo dnf install mpv-libs). Updates through dnf, not in-app |
| Linux (Arch) | AUR | yay -S limusic-bin. Community-maintained by @xiryuudev, updates through pacman |
| Windows | -setup.exe | Self-updating |
| Windows | .msi | Plain installer, no auto-update |
| macOS | none yet | Build from source, see docs/BUILD-PLATFORMS.md |
Both live in the title bar, next to the window controls.
Building from source? Last.fm needs your own API credentials — they're not in the
repo. Get a key at last.fm/api/account/create
and put it in src-tauri/lastfm.keys:
LIMUSIC_LASTFM_API_KEY=your_key
LIMUSIC_LASTFM_API_SECRET=your_secret
Without that file everything else still builds and runs; the Last.fm button just reports that it isn't configured.
Open the panel with the microphone button in the player bar, next to the queue button. It takes the same side of the window as the queue, so opening one closes the other.
Lyrics come from Boidu first, then LRCLIB, then YouTube Music's own timed lyrics, then Netease, QQ Music and Kugou, falling back to plain un-timed text when nobody has a synced version. Matching is keyed on the track's exact length, because popular songs exist as several cuts and the wrong one drifts a few seconds out. Results are cached locally, so replaying a track is instant.
Boidu is the only source with per-word timings, which is what lets a line highlight word by word as it's sung. It goes first for that reason, which also means it is asked about every track you play. Turn it off in Settings -> Playback -> Word-by-word lyrics and the other sources still provide line-by-line lyrics. Netease additionally supplies translations, shown under each line where it has them.
Note that YouTube Music's lyrics are licensed per region and are missing entirely in some countries — where that's the case, LRCLIB does all the work.
Synced listening with friends. Everyone streams their own audio from YouTube; the room only relays play/pause, seeks, track changes and the queue. One person hosts the relay:
cargo run -p sync-server # plain WebSocket on 0.0.0.0:8080
Front it with something that terminates TLS (Tailscale Funnel, Cloudflare
Tunnel), then paste the wss:// URL into the Listen Together panel in the app.
Rooms have join codes and the host approves every join and every track
suggestion.
Limusic is translated on Weblate, who host it free for libre projects.
English, Turkish, Brazilian Portuguese and Indonesian ship in the app today. The badge above shows everything else in flight.
Translate on Weblate, not in a pull request. Weblate keeps its own copy of
the catalogs, so a hand-edited fr.json merged here puts the two out of sync
and the next batch of real translations arrives as a merge conflict. Weblate
also shows you the English original beside each string, flags translations that
went stale when the English changed, checks that placeholders like {count}
survived, and opens the pull request for you. Anything untranslated falls back
to English in the app, so partial work is safe to submit.
en.json is the exception: it changes by hand, in whichever pull request
changes the UI. Switching a finished language on in the picker takes a small
code change too, see CONTRIBUTING.md.
Fedora:
sudo dnf install mpv-libs mpv-libs-devel webkit2gtk4.1-devel \
gcc gcc-c++ make openssl-devel librsvg2-devel
cd ui && pnpm install && cd ..
cargo tauri build
Windows and macOS instructions live in docs/BUILD-PLATFORMS.md.
n parameter) and by BotGuard attestation. Limusic runs that
JavaScript where it expects to run, in a real webview, hidden, and never lets
any of it touch the UI process.This project is not affiliated with, funded, authorized, endorsed by, or in any way associated with YouTube, Google LLC, or any of their affiliates and subsidiaries.
All trademarks, service marks, and intellectual property rights referenced in this project belong to their respective owners.
Rust
51.7%
Svelte
29.3%
TypeScript
15.0%
Shell
2.0%
CSS
1.8%
Feature rich, native desktop, YouTube Music client. Tauri + Rust + SvelteKit, ad-free playback through libmpv, Last.fm scrobbling and Discord Rich Presence, no Electron.
327
stars
478
commits
Rust
primary language
Sep 11, 2026
updated
A native desktop YouTube Music client — Rust + Tauri, ad-free, no Electron.
Limusic talks directly to YouTube's internal API and plays audio through libmpv — no bundled browser runtime, no backend server, no ads in the audio. It started as a desktop rebuild of the playback engine behind Metrolist, an Android YouTube Music client, and grew from there.
| Platform | File | Notes |
|---|---|---|
| Linux | .AppImage | Self-updating, libmpv bundled. Needs glibc 2.39+ (Ubuntu 24.04+, Debian 13+, Fedora 40+) |
| Linux (Ubuntu/Debian) | .deb | No self-update. Needs Ubuntu 24.04+ / Debian 13+; apt pulls libmpv and webkit2gtk in for you |
| Linux (Fedora/RHEL) | .rpm | Needs mpv-libs installed (sudo dnf install mpv-libs). Updates through dnf, not in-app |
| Linux (Arch) | AUR | yay -S limusic-bin. Community-maintained by @xiryuudev, updates through pacman |
| Windows | -setup.exe | Self-updating |
| Windows | .msi | Plain installer, no auto-update |
| macOS | none yet | Build from source, see docs/BUILD-PLATFORMS.md |
Both live in the title bar, next to the window controls.
Building from source? Last.fm needs your own API credentials — they're not in the
repo. Get a key at last.fm/api/account/create
and put it in src-tauri/lastfm.keys:
LIMUSIC_LASTFM_API_KEY=your_key
LIMUSIC_LASTFM_API_SECRET=your_secret
Without that file everything else still builds and runs; the Last.fm button just reports that it isn't configured.
Open the panel with the microphone button in the player bar, next to the queue button. It takes the same side of the window as the queue, so opening one closes the other.
Lyrics come from Boidu first, then LRCLIB, then YouTube Music's own timed lyrics, then Netease, QQ Music and Kugou, falling back to plain un-timed text when nobody has a synced version. Matching is keyed on the track's exact length, because popular songs exist as several cuts and the wrong one drifts a few seconds out. Results are cached locally, so replaying a track is instant.
Boidu is the only source with per-word timings, which is what lets a line highlight word by word as it's sung. It goes first for that reason, which also means it is asked about every track you play. Turn it off in Settings -> Playback -> Word-by-word lyrics and the other sources still provide line-by-line lyrics. Netease additionally supplies translations, shown under each line where it has them.
Note that YouTube Music's lyrics are licensed per region and are missing entirely in some countries — where that's the case, LRCLIB does all the work.
Synced listening with friends. Everyone streams their own audio from YouTube; the room only relays play/pause, seeks, track changes and the queue. One person hosts the relay:
cargo run -p sync-server # plain WebSocket on 0.0.0.0:8080
Front it with something that terminates TLS (Tailscale Funnel, Cloudflare
Tunnel), then paste the wss:// URL into the Listen Together panel in the app.
Rooms have join codes and the host approves every join and every track
suggestion.
Limusic is translated on Weblate, who host it free for libre projects.
English, Turkish, Brazilian Portuguese and Indonesian ship in the app today. The badge above shows everything else in flight.
Translate on Weblate, not in a pull request. Weblate keeps its own copy of
the catalogs, so a hand-edited fr.json merged here puts the two out of sync
and the next batch of real translations arrives as a merge conflict. Weblate
also shows you the English original beside each string, flags translations that
went stale when the English changed, checks that placeholders like {count}
survived, and opens the pull request for you. Anything untranslated falls back
to English in the app, so partial work is safe to submit.
en.json is the exception: it changes by hand, in whichever pull request
changes the UI. Switching a finished language on in the picker takes a small
code change too, see CONTRIBUTING.md.
Fedora:
sudo dnf install mpv-libs mpv-libs-devel webkit2gtk4.1-devel \
gcc gcc-c++ make openssl-devel librsvg2-devel
cd ui && pnpm install && cd ..
cargo tauri build
Windows and macOS instructions live in docs/BUILD-PLATFORMS.md.
n parameter) and by BotGuard attestation. Limusic runs that
JavaScript where it expects to run, in a real webview, hidden, and never lets
any of it touch the UI process.This project is not affiliated with, funded, authorized, endorsed by, or in any way associated with YouTube, Google LLC, or any of their affiliates and subsidiaries.
All trademarks, service marks, and intellectual property rights referenced in this project belong to their respective owners.
Rust
51.7%
Svelte
29.3%
TypeScript
15.0%
Shell
2.0%
CSS
1.8%