Getting Started - Installation

Installation

mbr can be installed via Nix (recommended), Cargo, or from binary releases. More can be added so file an issue if you have a request.

Nix provides reproducible builds and includes all dependencies.

Run Without Installing

# Run directly from GitHub
nix run github:zmre/mbr -- -g /path/to/notes

Build and Install

# Build the binary
nix build github:zmre/mbr

# Run from build output
./result/bin/mbr -s /path/to/notes

Add to Your Flake

{
  inputs = {
    nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
    mbr.url = "github:zmre/mbr";
  };

  outputs = { self, nixpkgs, mbr }: {
    # Use mbr.packages.${system}.default in your configuration
  };
}

Using Cargo

If you have Rust installed, you can build from source:

cargo install --git https://github.com/zmre/mbr

Prerequisites

Binary Releases

Pre-built binaries are available on the GitHub Releases page.

macOS App Bundle

The macOS release includes MBR.app, a native application bundle with:

To install, move MBR.app to your Applications folder.

Verify Installation

# Check version
mbr --version

# Display help
mbr --help

# Test with a markdown file
mbr -s README.md

Next Steps