From 4bc3e84fc4507c12e477adacbdbccafb9230fb0e Mon Sep 17 00:00:00 2001 From: Jake Roggenbuck Date: Wed, 25 May 2022 21:06:56 -0700 Subject: [PATCH 1/4] Fix cpus output --- src/display.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/display.rs b/src/display.rs index 88228a73..837c81d6 100644 --- a/src/display.rs +++ b/src/display.rs @@ -104,7 +104,7 @@ pub fn print_cpus(cpus: Vec, name: String, raw: bool) { } else { println!("Name: {}", name); for x in cpus { - println!("{} is currently @ {} MHz", x.name, x.cur_freq / 1000); + println!("{}:\t{} MHz", x.name, x.cur_freq / 1000); } } } From b3a8c70c562ca1595736b79bff91a38159494cce Mon Sep 17 00:00:00 2001 From: Jake Roggenbuck Date: Wed, 25 May 2022 21:09:26 -0700 Subject: [PATCH 2/4] Add new image --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d6c7bfd6..0e20fdba 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ A utility to check stats about your CPU, and auto regulate clock speeds to help This proram is designed for Linux and Intel laptops, although it should theoretically work on AMD systems and sometimes desktops as well. If you encounter any issues or bugs, please refer to the [wiki](https://github.com/JakeRoggenbuck/auto-clock-speed/wiki) to see if there is a solution -![image](https://user-images.githubusercontent.com/35516367/151893537-1ed4241d-9e3c-4e02-a620-568820ce13d0.png) +![image](https://user-images.githubusercontent.com/35516367/170414026-2466ee6b-fd6c-48f0-bec8-127237116baf.png) ## Goals - First and foremost, this is a project to learn about Rust and Linux From 96ffa96ce6299d9f37bc4d72e4f3e4a89957814f Mon Sep 17 00:00:00 2001 From: Jake Roggenbuck Date: Wed, 25 May 2022 21:10:44 -0700 Subject: [PATCH 3/4] Fix image --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0e20fdba..05af6eef 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ A utility to check stats about your CPU, and auto regulate clock speeds to help This proram is designed for Linux and Intel laptops, although it should theoretically work on AMD systems and sometimes desktops as well. If you encounter any issues or bugs, please refer to the [wiki](https://github.com/JakeRoggenbuck/auto-clock-speed/wiki) to see if there is a solution -![image](https://user-images.githubusercontent.com/35516367/170414026-2466ee6b-fd6c-48f0-bec8-127237116baf.png) +![image](https://user-images.githubusercontent.com/35516367/170412105-08d9fdfd-b3fe-4a8b-b92b-b6af5580c319.png) ## Goals - First and foremost, this is a project to learn about Rust and Linux @@ -43,7 +43,7 @@ cargo install autoclockspeed [![image](https://user-images.githubusercontent.com/35516367/151716685-a3ed3c53-07f4-459f-a3ae-e1de1ba16429.png)](https://www.youtube.com/watch?v=T9nN_rQOYsg) ## New Interactive Mode -![image](https://user-images.githubusercontent.com/35516367/170412105-08d9fdfd-b3fe-4a8b-b92b-b6af5580c319.png) +![image](https://user-images.githubusercontent.com/35516367/170414026-2466ee6b-fd6c-48f0-bec8-127237116baf.png) ## Systemd In order to have auto-clock-speed start when you restart your computer you must follow these instructions From 4ee3af61f5e6f92d4f32dc44868f499eadd0a72f Mon Sep 17 00:00:00 2001 From: Jake Roggenbuck Date: Wed, 25 May 2022 21:12:00 -0700 Subject: [PATCH 4/4] Fix image again --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 05af6eef..a900b520 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ A utility to check stats about your CPU, and auto regulate clock speeds to help This proram is designed for Linux and Intel laptops, although it should theoretically work on AMD systems and sometimes desktops as well. If you encounter any issues or bugs, please refer to the [wiki](https://github.com/JakeRoggenbuck/auto-clock-speed/wiki) to see if there is a solution -![image](https://user-images.githubusercontent.com/35516367/170412105-08d9fdfd-b3fe-4a8b-b92b-b6af5580c319.png) +![image](https://user-images.githubusercontent.com/35516367/151893537-1ed4241d-9e3c-4e02-a620-568820ce13d0.png) ## Goals - First and foremost, this is a project to learn about Rust and Linux