New Desktop Command May 2026

let info = gather_info(); display(&info); }

fn display(info: &SystemInfo) { let ascii_art = r#" ╔══════════════════════╗ ║ ██ ║ ║ ████ ║ ║ ██████ ║ ║ ████████ ║ ║ ██████████ ║ ║ ██ ██████ ██ ║ ║ ██ ████ ██ ║ ║ ██ ██ ██ ║ ╚══════════════════════╝ "#; 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()); let info = gather_info(); display(&info); } fn display(info:

fn get_windows_gpu() -> String let output = Command::new("wmic") .args(&["path", "win32_videocontroller", "get", "name"]) .output(); if let Ok(out) = output let stdout = String::from_utf8_lossy(&out.stdout); let lines: Vec<&str> = stdout.lines().collect(); if lines.len() > 1 return lines[1].trim().to_string(); let info = gather_info()