bunbun/src/main.rs

77 lines
2 KiB
Rust
Raw Normal View History

2024-03-23 21:58:32 +00:00
use colored::Colorize;
2024-03-23 23:30:36 +00:00
use std::env;
2024-03-23 22:35:06 +00:00
use sysinfo::System;
use whoami::*;
use clap::Parser;
/// A simple and adorable sysinfo utility written in Rust.
#[derive(Parser, Debug)]
#[command(version, about, long_about = None)]
struct Args {
/// Show ASCII art only
#[arg(short, long)]
ascii_only: bool,
/// Show CPU architecture
#[arg(short = 'x', long)]
arch: bool,
/// Hide terminal colours
#[arg(short = 'z', long, default_value_t = false)]
hide_colours: bool,
}
fn cpu_arch(args: &Args) {
if args.arch {
let arch = arch();
println!("{:>17} {}", "Arch".cyan().bold(), arch);
}
}
2024-03-23 21:58:32 +00:00
fn main() {
let args = Args::parse();
2024-03-23 21:58:32 +00:00
let bottom = format!("c({})({})", "\"".red(), "\"".red()).to_string();
2024-03-23 23:30:23 +00:00
let ascii = ["(\\ /)", "( . .)", &bottom];
2024-03-23 21:58:32 +00:00
2024-03-23 23:17:07 +00:00
let hostname = fallible::hostname().unwrap_or(String::from("N/A"));
let user = env!("USER");
let combined = format!("{}@{}", user.italic(), hostname.italic());
2024-03-23 23:17:07 +00:00
2024-03-23 22:35:06 +00:00
let kernel = System::kernel_version().unwrap_or(String::from("N/A"));
let pretty = distro();
let wm: &str;
if cfg!(windows) {
wm = "Aero";
} else if cfg!(unix) {
wm = env!("XDG_CURRENT_DESKTOP");
} else {
wm = "N/A";
2024-03-23 21:58:32 +00:00
}
2024-03-23 22:35:06 +00:00
println!();
if !args.ascii_only {
println!("{:>48}", combined);
cpu_arch(&args);
println!("{:>8} {:>6} {}", ascii[0], "OS".blue().bold(), pretty);
println!("{:>9} {:>9} {}", ascii[1], "Kernel".red().bold(), kernel);
println!("{:>28} {:>4} {}", ascii[2], "WM".green().bold(), wm);
} else {
for i in ascii {
println!(" {}", i);
}
}
if !args.hide_colours {
println!();
let colors = ["black", "red", "green", "yellow", "blue", "magenta", "cyan", "white"];
let mut color_string: String = " ".to_owned();
for color in colors {
color_string.push_str(&format!("{:>3}", "".color(color)));
}
println!("{}", color_string);
}
2024-03-23 21:58:32 +00:00
}