We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a484b0 commit d27e8b3Copy full SHA for d27e8b3
src/dots.rs
@@ -5,21 +5,21 @@ macro_rules! GLYPH {() => {""}}
5
macro_rules! GAP {() => {" "}}
6
7
const NO_COLORS_STR: &str = concat!(
8
- GLYPH!(), GAP!(),
9
10
11
12
13
- GLYPH!(),
+ GLYPH!(), GAP!(),
+ GLYPH!(),
14
);
15
16
const COLORS_STR: &str = concat!(
17
- BLUE!(), GLYPH!(), GAP!(),
18
- CYAN!(), GLYPH!(), GAP!(),
19
- GREEN!(), GLYPH!(), GAP!(),
20
- YELLOW!(), GLYPH!(), GAP!(),
21
- RED!(), GLYPH!(), GAP!(),
22
- MAGENTA!(), GLYPH!(), RESET!(),
+ BLUE!(), GLYPH!(), GAP!(),
+ CYAN!(), GLYPH!(), GAP!(),
+ GREEN!(), GLYPH!(), GAP!(),
+ YELLOW!(), GLYPH!(), GAP!(),
+ RED!(), GLYPH!(), GAP!(),
+ MAGENTA!(), GLYPH!(), RESET!(),
23
24
25
#[must_use]
src/main.rs
@@ -38,7 +38,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
38
uptime: get_current()?,
39
memory_usage: get_memory_usage()?,
40
storage: get_root_disk_usage()?,
41
- dots: print_dots(),
+ dots: print_dots(),
42
};
43
print_system_info(&fields)?;
44
}
0 commit comments