Installation
macOS (Homebrew)
Section titled “macOS (Homebrew)”brew install sentrux/tap/sentruxcurl -fsSL https://raw.githubusercontent.com/sentrux/sentrux/main/install.sh | shThis downloads the latest release binary to /usr/local/bin/sentrux.
Windows
Section titled “Windows”Download from Releases, or:
curl -L -o sentrux.exe https://github.com/sentrux/sentrux/releases/latest/download/sentrux-windows-x86_64.exeBuild from source
Section titled “Build from source”git clone https://github.com/sentrux/sentrux.gitcd sentrux && cargo build --releaseThe binary will be at target/release/sentrux.
Verify installation
Section titled “Verify installation”sentrux --version# sentrux 0.5.7GPU backends (Linux)
Section titled “GPU backends (Linux)”sentrux automatically tries multiple GPU backends. If the app won’t start:
WGPU_BACKEND=vulkan sentrux # force VulkanWGPU_BACKEND=gl sentrux # force OpenGLUpgrade
Section titled “Upgrade”# Homebrewbrew update && brew upgrade sentrux
# Linux — re-run the install scriptcurl -fsSL https://raw.githubusercontent.com/sentrux/sentrux/main/install.sh | sh