From 5347a9105ebf2fb4e7f593cd711eb2545b8a6f3e Mon Sep 17 00:00:00 2001 From: Muhammad Nauman Raza Date: Sun, 5 May 2024 22:36:01 +0100 Subject: [PATCH] chore(aesthetic): update styling of user@hostname --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index 7a1aa06..44743c4 100644 --- a/src/main.rs +++ b/src/main.rs @@ -50,7 +50,7 @@ fn main() { let hostname = fallible::hostname().unwrap_or(String::from("N/A")); let user = username(); - let combined = format!("{}@{}", user.italic(), hostname.italic()); + let combined = format!("{}@{}", user, hostname); let pretty = distro(); @@ -81,7 +81,7 @@ fn main() { println!(); if !args.ascii_only { - println!("{: <13}{}", "", combined); + println!("{: <13}{}", "", combined.bold()); cpu_arch(&args); display_kernel(&args); println!("{:>8} {:>6} {}", ascii[0], "OS".red().bold(), pretty);