rox

Download rox

One download per platform. No account, nothing running in the background when it's closed.

v1.26.4 released September 10, 2026 release notes

macOS

rox-v1.26.4-macos-aarch64.dmg

  1. Open the DMG.
  2. Drag rox into Applications.

Windows

rox-v1.26.4-windows-x86_64-setup.exerox-v1.26.4-windows-x86_64.zip

  1. Run the setup. rox lands in your Start menu.
  2. Portable instead? Unzip anywhere and run rox.exe.

If SmartScreen objects, choose More info, then Run anyway.

Downloads by release

All time downloads: 624

Linux 126
macOS 77
Windows 421

Counted from the release files on GitHub, oldest on the left. Copies built from the AUR or the Nix flake aren't in the total.

Package managers

Two routes that keep rox updated alongside the rest of your system.

Arch Linux AUR, builds from source

yay -S rox-player

On the AUR as rox-player, co-maintained by the rox author. Any AUR helper works, or clone the package and run makepkg -si yourself.

rox-player on the AUR

Nix and NixOS straight from the flake

nix run github:zealsprince/rox
nix profile install github:zealsprince/rox

The repo is a flake. The first command runs rox without installing anything, the second puts it in your profile. On NixOS, add the flake as an input and pull in packages.default, or use the overlay it exports.

flake.nix

Running it from a terminal

Pass rox files or folders and it plays them now, replacing what's loaded. Folders expand to the audio files directly inside them.

rox ~/music/albums/loveless
rox --enqueue track.flac
rox --portable

--enqueue (or -e) appends to the up-next queue instead of playing. --portable keeps the library, settings and caches in a rox-data folder beside the executable for that run. To stay portable across launches, drop an empty file named portable next to the executable, or flip the toggle in the Behavior settings.

Building it yourself

With Nix, nix develop then cargo run gets you a dev shell carrying the Rust toolchain and the libraries gpui loads at runtime. Without Nix you need stable Rust, cmake and gpui's system libraries from your distro, plus one run of the two vendor scripts. The development section of the README has the full list.