From b8386dfbbde59e83e8191114771959829e781379 Mon Sep 17 00:00:00 2001 From: Jorge Bolois Date: Sat, 19 Aug 2023 17:44:33 +0200 Subject: [PATCH] correct name --- Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 6 +++--- src/cli.rs | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b4a3737..b4af9d6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", diff --git a/Cargo.toml b/Cargo.toml index 0ae3743..2a20d36 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "midefos-temp" +name = "mtemp" description = "Simple personal CLI tool for monitoring temperatures" license = "MIT" authors = ["Midefos "] diff --git a/README.md b/README.md index 425c04a..78034cd 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/src/cli.rs b/src/cli.rs index 89c2b7f..c85925d 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -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 {