Inventory management for the CLI - original concept by chesapeake
Go to file
Lux Aliaga 13e28e445c
build: Create manpages for Vento.
I've backtracked from using Clap and instead will keep using my own
custom command parser. I'll be using the man crate instead. These
manpages have the new syntax which I'll implement in the following
commits. This also uses cargo-make to install the manpages because I
don't want the manpages being replaced everytime I rebuild.
2022-09-24 22:51:57 -03:00
assets readme: Add logo 2022-09-18 01:43:49 -03:00
src src: Better error handling 2022-09-19 00:31:30 -03:00
.gitignore fixup! vento: Imported changes to Git 2022-09-14 09:41:06 -03:00
Cargo.lock build: Create manpages for Vento. 2022-09-24 22:51:57 -03:00
Cargo.toml build: Create manpages for Vento. 2022-09-24 22:51:57 -03:00
LICENSE.md vento: Licensed under GPLv3 2022-09-14 17:01:37 -03:00
Makefile.toml build: Create manpages for Vento. 2022-09-24 22:51:57 -03:00
README.md build: Create manpages for Vento. 2022-09-24 22:51:57 -03:00
build.rs build: Create manpages for Vento. 2022-09-24 22:51:57 -03:00

README.md

Vento

Vento is a utility which allows you to manage your files as if you're playing an old text adventure. It's made in Rust and originally inspired by Chesapeake's Inventory.

Install

Clone the repository using Git.

$ git clone https://codeberg.org/nixgoat/vento.git && cd vento

The recommended method to install Vento is to use cargo-make. This will install the binary and the manpages for Vento.

$ cargo make install

Otherwise you can build and install it with Cargo. This will however not install the manpages.

$ cargo install --path .

Quickstart

After installing, run vento init. This will create a .vento folder in your home directory which will store your inventories. After which, you can run vento list to display the files in your inventories, vento take to move a file into your active inventory and vento drop to drop a file out of it. If you're stuck, run vento help.

Credits

  • Chesapeake for the original concept
  • jo! for helping me with Rust concepts!