feat: changed formatting and added shell, plus an optional kernel version

This commit is contained in:
Muhammad Nauman Raza 2024-03-24 21:05:25 +00:00
parent eed86b104d
commit edb9c32fc6
Signed by: devraza
GPG key ID: 91EAD6081011574B
2 changed files with 23 additions and 6 deletions

2
Cargo.lock generated
View file

@ -64,7 +64,7 @@ checksum = "7ff69b9dd49fd426c69a0db9fc04dd934cdb6645ff000864d98f7e2af8830eaa"
[[package]]
name = "bunbun"
version = "1.1.0"
version = "1.2.0"
dependencies = [
"clap",
"colored",

View file

@ -1,5 +1,5 @@
use colored::Colorize;
use std::env::var;
use std::{env::var, path::PathBuf};
use sysinfo::System;
use whoami::*;
use clap::Parser;
@ -16,11 +16,16 @@ struct Args {
#[arg(short = 'x', long)]
arch: bool,
/// Show the kernel version
#[arg(short = 'k', long)]
kernel: bool,
/// Hide terminal colours
#[arg(short = 'z', long, default_value_t = false)]
hide_colours: bool,
}
// Display the CPU architecture
fn cpu_arch(args: &Args) {
if args.arch {
let arch = arch();
@ -28,6 +33,15 @@ fn cpu_arch(args: &Args) {
}
}
// Display the kernel version
fn display_kernel(args: &Args) {
if args.kernel {
let kernel = System::kernel_version().unwrap_or(String::from("N/A"));
println!("{:>19} {}", "Kernel".yellow().bold(), kernel);
}
}
fn main() {
let args = Args::parse();
@ -39,7 +53,6 @@ fn main() {
let combined = format!("{}@{}", user.italic(), hostname.italic());
let kernel = System::kernel_version().unwrap_or(String::from("N/A"));
let pretty = distro();
let wm: String;
@ -60,13 +73,17 @@ fn main() {
wm = "N/A".to_string();
}
let shell_path = PathBuf::from(var("SHELL").unwrap_or(String::from("N/A")));
let shell = shell_path.file_name().expect("Could not get $SHELL path").to_str().unwrap();
println!();
if !args.ascii_only {
println!("{: <13}{}", "", 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);
display_kernel(&args);
println!("{:>8} {:>6} {}", ascii[0], "OS".red().bold(), pretty);
println!("{:>9} {:>8} {}", ascii[1], "Shell".green().bold(), shell);
println!("{:>28} {:>4} {}", ascii[2], "WM".blue().bold(), wm);
} else {
for i in ascii {
println!(" {}", i);