retch-cli 0.1.4

A fast, feature-rich system information fetcher written in Rust (similar to fastfetch or neofetch)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! # retch
//!
//! A fast, feature-rich system information fetcher written in Rust.
//! Similar to tools like `fastfetch` or `neofetch`.
//!
//! This crate provides both a CLI binary (`retch`) and a library interface
//! for fetching and displaying system information.

pub mod cli;
pub mod config;
pub mod display;
pub mod fetch;
pub mod logo;
pub mod theme;