Install Herdr
Herdr ships as a single binary for Linux and macOS.
Install
Section titled “Install”Run the installer:
curl -fsSL https://herdr.dev/install.sh | shThe installer downloads the right release binary for your platform and places it on your PATH.
Install with Homebrew
Section titled “Install with Homebrew”If you already use Homebrew:
brew install herdrInstall with mise
Section titled “Install with mise”If you already use mise:
mise use -g herdrVerify
Section titled “Verify”Start Herdr:
herdrIf your shell cannot find herdr, restart the terminal or check that the install directory is on your PATH.
Update
Section titled “Update”Herdr checks for new releases and notifies you in the app. You can update manually:
herdr updateherdr update is for installs managed by Herdr’s own installer. Homebrew, mise, and Nix installs are updated through those package managers instead.
Herdr uses the stable update channel by default. To opt into preview builds from master, set the channel:
herdr channel set previewSwitch back to stable the same way:
herdr channel set stableFor direct installs, changing channels also checks that channel and installs its latest binary. If that update fails, run herdr update to retry from the configured channel.
Preview builds are GitHub prereleases published from the current development branch. They are useful when you want fixes before the next stable release, but they can regress. Homebrew, mise, and Nix installs do not use the preview channel.
By default, herdr update installs the new binary and leaves compatible running sessions alone. If an update changes Herdr’s client/server protocol, Herdr asks whether to stop the old server after installing. Stop the old server to use the new version. Stopping exits pane processes. For the default session, run herdr server stop, then run herdr again. For a named session, run herdr session stop <name>, then run herdr session attach <name> again.
To opt into experimental live server handoff for supported running sessions, run:
herdr update --handoffLive handoff does not apply to Homebrew, mise, or Nix package-manager updates. For those installs, update with the package manager, then restart that Herdr session when you are ready to use the new server. If a running session still uses the old server, stop it with herdr server stop or herdr session stop <name>, then run Herdr again.
Install with Nix
Section titled “Install with Nix”If you already use Nix, Herdr provides a flake that builds Herdr from source:
nix run github:ogulcancelik/herdr/v0.x.ynix build github:ogulcancelik/herdr/v0.x.ynix profile install github:ogulcancelik/herdr/v0.x.yReplace v0.x.y with the latest release tag. You can omit the tag to track master, but release tags are recommended for normal installs.
The flake also exposes a development shell:
nix develop github:ogulcancelik/herdrUpdate through the same Nix workflow you used to install Herdr. For a profile install, list your profile entries and upgrade the Herdr entry:
nix profile listnix profile upgrade <index-or-name>If Herdr is an input in your own flake, update that input and rebuild your system, Home Manager, or development environment:
nix flake update herdrDownload manually
Section titled “Download manually”You can also download a binary from GitHub releases.
Choose the asset that matches your system:
| System | Asset |
|---|---|
| Linux x86_64 | herdr-linux-x86_64 |
| Linux aarch64 | herdr-linux-aarch64 |
| macOS Intel | herdr-macos-x86_64 |
| macOS Apple silicon | herdr-macos-aarch64 |
Make it executable and move it somewhere on your PATH.
chmod +x herdr-linux-x86_64mv herdr-linux-x86_64 ~/.local/bin/herdrRequirements
Section titled “Requirements”Herdr supports Linux and macOS. Native Windows support is not available yet; use Herdr inside WSL for now.