aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAditya <bluenerd@protonmail.com>2023-03-01 14:19:18 +0530
committerAditya <bluenerd@protonmail.com>2023-03-01 14:19:18 +0530
commitc8c269d1b105c7d045060da85f29cde089377bc5 (patch)
tree06d740e309bffcd9649b3b1a97f061dcd1e85ba0
parent68b1a561a14c9fcb33a43b88f804a66d445ef741 (diff)
fix cputemp
-rwxr-xr-xmodules/cputemp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/cputemp b/modules/cputemp
index e856248..73df5cf 100755
--- a/modules/cputemp
+++ b/modules/cputemp
@@ -13,7 +13,7 @@ get_cputemp()
# CPU_T=$(cat /sys/devices/platform/coretemp.0/hwmon/hwmon?/temp2_input)
# CPU_TEMP=$(expr $CPU_T / 1000)
- CPU_TEMP="$(sensors | grep temp1 | awk 'NR==1{gsub("+", " "); gsub("\\..", " "); print $2}')"
+ CPU_TEMP="$(sensors | grep Package | awk 'NR==1{gsub("+", " "); gsub("\\..", " "); print $4}')"
if [[ "$CPU_TEMP" -ge $WARNING_LEVEL ]]; then
PREFIX="$FIRE$PREFIX"