Skip to content
Β 
Β 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

198 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Zuno

Zuno

A fast, native-feeling desktop client for YouTube Music.
Built with Tauri, React and TypeScript for Windows, macOS and Linux.

Downloads Version License Stars AUR

Zuno home view

Important

Zuno is an independent, unofficial project. It is not affiliated with, authorized by, sponsored by, or endorsed by YouTube or Google.


About

Zuno brings YouTube Music to the desktop as its own application, not a browser tab. There is no official desktop client, so the goal is a fast, native-feeling one that holds up with large libraries.

If you find it useful, starring the repo genuinely helps.


Screenshots

Synced lyrics Artist page
Synced lyrics following the current line An artist page showing popular songs and releases
Click a line to seek, nudge the timing if a match is off, and see which source the words came from. Popular tracks and every release, filtered by albums, singles or EPs.
Queue Library
The queue panel open beside the home view The library songs list, with explicit badges and the now-playing meter
Separates what you added by hand from what came next on its own. Marks what is liked, downloaded and explicit at a glance.

Zuno settings, showing the library and lyrics options
Settings β€” quality, lyrics source, translation and text size, downloads and the disk cap.


Features

Feature Description
Search Ctrl+Space from anywhere, across artists, songs, playlists and albums
Multiple tabs Each tab keeps its own queue, volume and player state β€” start an album in one, browse in another, and the first keeps playing
Offline downloads Save a song, a selection, or a whole album or playlist, with its own quality setting and a size cap you control
Mini player A morphing capsule that appears when you tab away; drag it anywhere, hover to expand
Synced lyrics Line-by-line lyrics that follow the song, unlike the official web client. Click a line to jump to it, nudge the timing if a match is off, and pick which source is tried first
Lyrics translation A translation under each line, in any of twenty languages, with an adjustable text size
Like & dislike Rate from the row, the player or the right-click menu β€” ratings sync to your YouTube Music account
Batch actions Shift/ctrl-select rows, then queue, download, add to a playlist or remove them together
Queue control Collapses to an artwork-only rail; end the queue at a track, generate more from it, shuffle or clear what's next
Recommendations Personalised suggestions plus a "surprise me" shuffle β€” hide the carousel if you would rather open on your library
Browse Explore, charts, moods and genres, and podcasts, with mood chips you can drill into
Local files Folders from your own machine sit alongside your library, with a tag editor for fixing metadata
Discord & Last.fm Rich Presence and scrobbling, each toggleable straight from the toolbar
Account support Sign in with Google for your library and playlists, and switch between channels on the same account
Playlist import/export Save a playlist to a file and bring it back, on this machine or another
Desktop integration Media keys, minimise to tray, launch at login, remembered window position, rebindable shortcuts
Light & dark themes Follows the OS by default, or pin either one β€” plus a reduced-motion mode
Caching Playlists, lyrics and artwork are cached, so revisits are instant
Auto-updates Signed updates install themselves; no manual re-download

Download

Grab the newest installer from the latest release for Windows, macOS or Linux.

On Arch and derivatives, install from the AUR instead:

yay -S zuno     # or: paru -S zuno

Platform support

  • Windows β€” primary target; the most tested of the three.
  • macOS β€” supported; the build is unsigned (see below).
  • Linux β€” supported across major distros; runs on your system's WebKitGTK and GStreamer.

Linux notes

Install the .deb or .rpm, or zuno from the AUR on Arch. All three run on your system's WebKitGTK (rendering) and GStreamer (playback) rather than bundling their own.

πŸ”‡ No sound, or "YouTube player error 5"

Most distros don't install the codecs YouTube needs by default:

# Debian, Ubuntu, Mint
sudo apt install gstreamer1.0-libav gstreamer1.0-plugins-base gstreamer1.0-plugins-good

# Fedora (gstreamer1-libav needs RPM Fusion enabled)
sudo dnf install gstreamer1-libav gstreamer1-plugins-base gstreamer1-plugins-good

# Arch β€” installed automatically with the AUR package
sudo pacman -S gst-libav gst-plugins-base gst-plugins-good

Confirm they registered:

gst-inspect-1.0 | grep -E 'avdec_aac|avdec_h264'
⬜ A blank grey window

A WebKitGTK rendering problem under Wayland, most often on Nvidia. Launch from a terminal with one of:

WEBKIT_DISABLE_DMABUF_RENDERER=1 zuno
WEBKIT_DISABLE_COMPOSITING_MODE=1 zuno
GDK_BACKEND=x11 zuno

Launching from an app menu instead? Add the same variable to the Exec line of zuno.desktop (typically /usr/share/applications/zuno.desktop, or ~/.local/share/applications/zuno.desktop for a user install):

Exec=env WEBKIT_DISABLE_DMABUF_RENDERER=1 zuno
⚠️ An EGL error on launch

Preload the system Wayland client library:

LD_PRELOAD=/usr/lib/libwayland-client.so ~/Downloads/zuno*.AppImage

In Gear Lever, add LD_PRELOAD=/usr/lib/libwayland-client.so to Zuno's environment variables.

πŸͺ΅ Anything else

Open Settings β†’ Library β†’ Application log, reproduce the problem, and attach the log to an issue along with your desktop environment, display server (X11 or Wayland) and distro β€” those three narrow down a Linux bug faster than anything else. The log also lives at ~/.local/share/com.zuno.desktop/logs/current.log.

macOS notes

"Apple is not able to verify that it is free from malware"

The macOS builds aren't signed with an Apple Developer ID, so Gatekeeper blocks them on first launch. This isn't a malware finding β€” it means the binary is unsigned. Drag Zuno to Applications, then either:

  • open System Settings β†’ Privacy & Security, scroll to the message about Zuno, and click Open Anyway, or
  • clear the quarantine flag yourself:
xattr -dr com.apple.quarantine /Applications/Zuno.app

Build from source instead if you'd rather not trust a prebuilt, unsigned binary.

A Keychain prompt on sign-in

Zuno stores one encryption key in its own Keychain entry and encrypts your YouTube Music session with it before writing anything to the app data directory. Choose Always Allow to avoid repeated prompts β€” or Deny if you don't intend to sign in to YouTube Music.


For developers

Prerequisites

  • Node.js LTS and npm
  • Rust and Cargo
  • C++ build tools (MSVC on Windows)
  • Microsoft Edge WebView2 Runtime (Windows)

The Tauri CLI ships in the project's dev dependencies β€” no global install needed.

Install, run, build

npm install
npm run tauri dev
npm run tauri build

Architecture

The docs/ folder documents the codebase:

Contributing

Contributions are welcome. Fork the repo, branch, test locally, and open a pull request describing what changed and why. For larger changes, open an issue first so the approach can be discussed.

By contributing you agree to the Contributor License Agreement.


Credits

Zuno is a fork of JustAnotherMusicClient by 2latemc, used under the Apache 2.0 licence. The original project did the hard groundwork of getting YouTube Music working on the desktop.

If you want to support the original author, they accept donations on Ko-fi.


Legal

Zuno provides no downloading functionality. It is a client for audio listening, with theming and interface additions.

Zuno interacts with YouTube and YouTube Music. Access to those services remains governed by their own terms, policies, availability and regional restrictions.

Zuno does not host or claim ownership of music, videos, artwork, metadata, or any other content supplied by third parties. Rights in that content remain with their respective owners.

The project is not intended to circumvent access controls, geographic restrictions, advertising, paid service requirements, or content licensing, nor to enable unauthorised downloading, copying, redistribution or public performance of third-party content.

YouTube and YouTube Music are trademarks of Google LLC. All other trademarks are the property of their respective owners. References to third-party products describe compatibility and integration only.

Releases

Packages

Used by

Contributors

Languages