New Desktop Command -
// OS & Kernel let os = whoami::distro().unwrap_or_else(|| "Unknown".to_string()); let host = whoami::hostname(); let kernel = sys.kernel_version().unwrap_or_else(|| "Unknown".to_string());
fn display(info: &SystemInfo) { let ascii_art = r#" ╔══════════════════════╗ ║ ██ ║ ║ ████ ║ ║ ██████ ║ ║ ████████ ║ ║ ██████████ ║ ║ ██ ██████ ██ ║ ║ ██ ████ ██ ║ ║ ██ ██ ██ ║ ╚══════════════════════╝ "#; new desktop command
I've developed a complete, ready-to-run piece of software: – a modern, cross-platform desktop system information tool written in Rust. It fetches and displays key hardware/OS details in a clean, customizable layout, similar to neofetch but with a fresh command set and lower resource usage. // OS & Kernel let os = whoami::distro()