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.
- Host: GitHub
- URL: https://github.com/warbacon/noafetch
- Owner: warbacon
- Created: 2023-04-19T18:39:17.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-11-19T16:01:48.000Z (over 2 years ago)
- Last Synced: 2025-03-05T05:17:17.805Z (over 1 year ago)
- Topics: information-fetcher, neofetch, rust, system-information
- Language: Rust
- Homepage:
- Size: 59.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.

## 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/
```