From 31babf1c59ace8c79ba580154ca8d82363192203 Mon Sep 17 00:00:00 2001 From: shibedrill <53824200+shibedrill@users.noreply.github.com> Date: Wed, 13 Sep 2023 18:38:21 -0400 Subject: [PATCH] Changed terminal color to match shell color. --- Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 5 +++-- src/main.rs | 2 +- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index dfa2eea..7b8f92d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -333,7 +333,7 @@ checksum = "6f61fba1741ea2b3d6a1e3178721804bb716a68a6aeba1149b5d52e3d464ea66" [[package]] name = "oxidefetch" -version = "1.4.0" +version = "1.4.1" dependencies = [ "byte-unit", "chrono", diff --git a/Cargo.toml b/Cargo.toml index f35cc7d..48dc950 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxidefetch" -version = "1.4.0" +version = "1.4.1" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/README.md b/README.md index 28f343b..4958c0d 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# oxidefetch 1.4.0 +# oxidefetch 1.4.1 Fully cross platform Neofetch clone written in Rust. Up to 25 times faster than Neofetch! ![alt text](image.png "Example output of OxideFetch on a WSL2 Arch Linux host") @@ -83,7 +83,8 @@ No weird quirks to report at this time. **1.2.2:** All GPUs should print in their own lines. **1.3.0:** Tentative fix for issue where empty GPU info line might print on Linux. **1.3.2:** Changed color of time output to be more visible on gray terminals. -**1.4.0:** Added support for terminal detection, and fixed system detection on Darwin systems. +**1.4.0:** Added support for terminal detection, and fixed system detection on Darwin systems. +**1.4.1:** Changed terminal color to match shell color. ### License This software is covered by the MIT license. See license.txt for details. \ No newline at end of file diff --git a/src/main.rs b/src/main.rs index d8a0562..5d0b9d6 100644 --- a/src/main.rs +++ b/src/main.rs @@ -60,7 +60,7 @@ fn main() { color_print("Kernel:\t", '', &sys_info.kernel_ver, "bright blue"); color_print("Uptime:\t", '', &Some(sys_info.uptime), "bright gray"); color_print("Shell:\t", '', &sys_info.shell, "bright magenta"); - color_print("Terminal:\t", '', &sys_info.terminal, "bright green"); + color_print("Terminal:\t", '', &sys_info.terminal, "magenta"); color_print("CPU:\t", '', &Some(sys_info.cpu), "green"); if sys_info.gpu.is_some() {