https://github.com/evren-os/rustor
A blazing fast fetch tool written in Rust
https://github.com/evren-os/rustor
command-line fastfetch fetch linux neofetch terminal
Last synced: about 1 year ago
JSON representation
A blazing fast fetch tool written in Rust
- Host: GitHub
- URL: https://github.com/evren-os/rustor
- Owner: Evren-os
- Created: 2024-12-12T06:42:11.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-08T08:00:32.000Z (over 1 year ago)
- Last Synced: 2025-03-08T09:18:04.785Z (over 1 year ago)
- Topics: command-line, fastfetch, fetch, linux, neofetch, terminal
- Language: Rust
- Homepage:
- Size: 242 KB
- Stars: 4
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Rustor
A fast, minimal tool to fetch system info, written in Rust.

---
## Performance
`rustor` is designed for speed. Benchmarking with [Hyperfine](https://github.com/sharkdp/hyperfine) shows:
```sh
Benchmark 1: rustor
Time (mean ± σ): 799.1 µs ± 113.8 µs [User: 346.9 µs, System: 592.7 µs]
Range (min … max): 542.8 µs … 1748.3 µs 1681 runs
```
This means `rustor` takes about 0.0008 seconds (or 0.8 ms) on average to pull system info almost instantly.
---
## Features
- Clean, simple display of system info.
- Blazing fast execution.
- Built with Rust for speed and safety.
---
## Installation
### Via install script
Run this command in terminal:
```bash
curl -fsSL https://raw.githubusercontent.com/Evren-os/rustor/main/install.sh | bash
```
### From source
1. Clone the repo:
```bash
git clone https://github.com/Evren-os/rustor.git
cd rustor
```
2. Build it:
```bash
cargo build --release
```
3. Install:
```bash
sudo mv ./target/release/rustor /usr/local/bin/
```
### Usage
Just run rustor to see your system info:
```bash
rustor
```
---