An open API service indexing awesome lists of open source software.

https://github.com/warbacon/noafetch

🦀 A tool for viewing minimal system information instantly.
https://github.com/warbacon/noafetch

information-fetcher neofetch rust system-information

Last synced: 11 months ago
JSON representation

🦀 A tool for viewing minimal system information instantly.

Awesome Lists containing this project

README

          

# noafetch (no ascii-art fetch)

Dead simple system information tool but insanely fast written in Rust. Currently this project
works properly GNU/Linux and kinda works in Windows. I haven't tested in MacOS.

![noafetch preview](./assets/noafetch.webp)

## Compilation

### Requirements

- Cargo
- GCC (although clang could work too, I haven't tried it)

### Instructions

1. Clone this repository and cd into it:

```bash
git clone https://github.com/Warbacon/noafetch.git
cd ./noafetch
```

2. Compile the release version:

```bash
cargo build --release
```

3. The compiled binary will be located in ``./target/release/noafetch``. You can copy it to a directory in your ``$PATH``.
For example, if ``~/.local/bin/`` is in your path, you can do:

```bash
cp ./target/release/noafetch ~/.local/bin/
```