Inventory management for the CLI - original concept by chesapeake
Go to file
Lux Aliaga 21c477e2ce
makefile: Disallow macOS from installing manpages.
Since the directory structure on macOS is not even close to the one in
Linux systems, I've decided to stop making it attempt to install the
manpages.
2022-09-28 15:01:43 -03:00
assets readme: Add logo 2022-09-18 01:43:49 -03:00
src item: Fix taking files recursively 2022-09-27 21:23:43 -03:00
.gitignore fixup! vento: Imported changes to Git 2022-09-14 09:41:06 -03:00
Cargo.lock manifest: Bump version to v1.0.1 2022-09-27 22:38:44 -03:00
Cargo.toml manifest: Bump version to v1.0.1 2022-09-27 22:38:44 -03:00
LICENSE.md vento: Licensed under GPLv3 2022-09-14 17:01:37 -03:00
Makefile.toml makefile: Disallow macOS from installing manpages. 2022-09-28 15:01:43 -03:00
README.md readme: Rewrite for Crates.io 2022-09-28 15:01:42 -03:00
build.rs fixup! common: Add custom config 2022-09-27 00:05:06 -03:00

README.md

Vento

Latest version Downloads Licensed under GPLv3

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.

Installation

Make sure Rust is installed, along with cargo, Rust's package manager.

$ cargo install vento

2) Manually

Clone the repository using git.

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

2.a) cargo-make

This install method additionally installs the manpages for Vento. Make sure Rust, cargo and cargo-make are installed.

$ cargo make install

2.b) Cargo

Make sure Rust is installed, along with cargo, Rust's package manager.

$ cargo install --path .

Quick Start

After installing, run:

$ vento -i

This will create a .vento folder in your home directory, which will store your inventories. Some basic commands include:

// listing files in the currently active inventory
$ vento

// switching inventory slots
$ vento -c

// taking a file or directory
$ take <file|directory>

// dropping a file or directory
$ drop <file|directory> [destination]

For additional documentation, you can check the documentation for each command by running the following.

$ (command) -h

Or, if Vento was installed through cargo-make, check the manpages by running:

$ man (command)

Credits

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