Manette is a terminal file explorer. It allows you to navigate the file though its full screen terminal UI and run commands from its shell.
- Download the latest manette release from https://github.com/paulez/manette/releases and copy manette to
~/.local/bin
.
curl -L https://github.com/paulez/manette/releases/download/v0.1-alpha.1/manette -o ~/.local/bin/manette
- Mark
~/.local/bin/manette
executable:
chmod +x ~/.local/bin
Manette is built on Rust, so you will need rustc and cargo to compile it from source.
git clone https://github.com/paulez/manette.git
cd manette
cargo run
We build a release inside a container for maximum compatibility.
docker run --rm -v "$PWD":/usr/src/manette:Z -w /usr/src/manette rust cargo build --release