correct name

This commit is contained in:
Jorge Bolois 2023-08-19 17:44:33 +02:00
parent ec7ef45f8f
commit b8386dfbbd
4 changed files with 6 additions and 6 deletions

2
Cargo.lock generated
View File

@ -86,7 +86,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3" checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3"
[[package]] [[package]]
name = "midefos-temp" name = "mtemp"
version = "0.1.0" version = "0.1.0"
dependencies = [ dependencies = [
"anyhow", "anyhow",

View File

@ -1,5 +1,5 @@
[package] [package]
name = "midefos-temp" name = "mtemp"
description = "Simple personal CLI tool for monitoring temperatures" description = "Simple personal CLI tool for monitoring temperatures"
license = "MIT" license = "MIT"
authors = ["Midefos <midefos@gmail.com>"] authors = ["Midefos <midefos@gmail.com>"]

View File

@ -1,4 +1,4 @@
# temp # mtemp
Simple personal CLI tool for monitoring temperatures. Simple personal CLI tool for monitoring temperatures.
@ -9,12 +9,12 @@ You need to have ```nvidia-smi``` and ```lm-sensors``` configured and installed.
### CPU (Only AMD) ### CPU (Only AMD)
Display the current temperature in Celsius. Display the current temperature in Celsius.
``` ```
temp cpu mtemp cpu
``` ```
### GPU (Only NVIDIA) ### GPU (Only NVIDIA)
Display the current temperature in Celsius. Display the current temperature in Celsius.
``` ```
temp gpu mtemp gpu
``` ```
## Note ## Note

View File

@ -2,7 +2,7 @@ use structopt::StructOpt;
#[derive(Debug, StructOpt)] #[derive(Debug, StructOpt)]
#[structopt( #[structopt(
name = "temp", name = "mtemp",
about = "Simple personal CLI tool for monitoring temperatures." about = "Simple personal CLI tool for monitoring temperatures."
)] )]
pub enum Arguments { pub enum Arguments {