diff --git a/src/dots.rs b/src/dots.rs index 068bee2..3ed3e0a 100644 --- a/src/dots.rs +++ b/src/dots.rs @@ -5,21 +5,21 @@ macro_rules! GLYPH {() => {""}} macro_rules! GAP {() => {" "}} const NO_COLORS_STR: &str = concat!( - GLYPH!(), GAP!(), - GLYPH!(), GAP!(), - GLYPH!(), GAP!(), - GLYPH!(), GAP!(), - GLYPH!(), GAP!(), - GLYPH!(), + GLYPH!(), GAP!(), + GLYPH!(), GAP!(), + GLYPH!(), GAP!(), + GLYPH!(), GAP!(), + GLYPH!(), GAP!(), + GLYPH!(), ); const COLORS_STR: &str = concat!( - BLUE!(), GLYPH!(), GAP!(), - CYAN!(), GLYPH!(), GAP!(), - GREEN!(), GLYPH!(), GAP!(), - YELLOW!(), GLYPH!(), GAP!(), - RED!(), GLYPH!(), GAP!(), - MAGENTA!(), GLYPH!(), RESET!(), + BLUE!(), GLYPH!(), GAP!(), + CYAN!(), GLYPH!(), GAP!(), + GREEN!(), GLYPH!(), GAP!(), + YELLOW!(), GLYPH!(), GAP!(), + RED!(), GLYPH!(), GAP!(), + MAGENTA!(), GLYPH!(), RESET!(), ); #[must_use] diff --git a/src/main.rs b/src/main.rs index dd2e570..edbe14a 100644 --- a/src/main.rs +++ b/src/main.rs @@ -38,7 +38,7 @@ fn main() -> Result<(), Box> { uptime: get_current()?, memory_usage: get_memory_usage()?, storage: get_root_disk_usage()?, - dots: print_dots(), + dots: print_dots(), }; print_system_info(&fields)?; }