A fast light fetch written in Rust
Find a file
2023-04-22 19:19:39 +03:00
.github/workflows Automatically compile binaries 2023-04-22 19:19:39 +03:00
src Initial Commit 2023-04-22 18:36:50 +03:00
.gitignore Initial Commit 2023-04-22 18:47:08 +03:00
Cargo.lock Initial Commit 2023-04-22 18:47:08 +03:00
Cargo.toml Initial Commit 2023-04-22 18:47:08 +03:00
README.md readme 2023-04-22 19:00:08 +03:00

mrfetch

This is the repository for mrfetch. mrfetch is a fetch utility created by iVacon as a nitch-inspired hobby project made in Rust. The mrfetch tool is in no way, shape, or form, endorsed by the Rust Foundation or Project. Disclaimers aside, this started as nothing more but a personal hobby project for me (iVacon) to practice Rust with. I don't expect this to get popular, and definitely not to replace nitch. Those projects are far, far greater and bigger and made by way smarter people.

Install guide

This program works ONLY on Linux. No macOS, no Windows. Maybe you can run it on BSD but that's untested.

  1. Dependencies: rustup, figlet and git.
  2. Clone the repository:
git clone https://github.com/iVacon/mrfetch
  1. Set up rustup if you haven't already:
rustup default stable

4: Compile:

cd mrfetch
cargo build --release

5: Install:

sudo cp target/release/mrfetch /bin/mrfetch```