Skip to content

Commit

Permalink
Merge pull request #280 from JakeRoggenbuck/fix-cpus-output
Browse files Browse the repository at this point in the history
Fix cpus output
  • Loading branch information
JakeRoggenbuck authored May 26, 2022
2 parents ac4980a + 4ee3af6 commit b41ae48
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/display.rs
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ pub fn print_cpus(cpus: Vec<CPU>, 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);
}
}
}
Expand Down

0 comments on commit b41ae48

Please sign in to comment.