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"
[[package]]
name = "midefos-temp"
name = "mtemp"
version = "0.1.0"
dependencies = [
"anyhow",

View File

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

View File

@ -1,4 +1,4 @@
# temp
# mtemp
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)
Display the current temperature in Celsius.
```
temp cpu
mtemp cpu
```
### GPU (Only NVIDIA)
Display the current temperature in Celsius.
```
temp gpu
mtemp gpu
```
## Note

View File

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