From 2b1da7988cc0f25b6a8d01d5e9b5bffd0daab209 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Sun, 2 Jan 2022 21:45:02 -0300 Subject: [PATCH] Update cpu_temp.sh --- blocks.def/cpu_temp.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/blocks.def/cpu_temp.sh b/blocks.def/cpu_temp.sh index ac692c5..38b0288 100755 --- a/blocks.def/cpu_temp.sh +++ b/blocks.def/cpu_temp.sh @@ -11,7 +11,8 @@ TEMP_LOW=30 # https://askubuntu.com/questions/1262643/terminal-command-to-show-a-summary-of-memory-used-temperature-and-gpu-use-in-a # https://gist.github.com/Ropid/077816cec9e5a826ad417fc6ce5ac41a -TEMP_CPU=`sensors | awk '{if (NR == 32) {print $4}}' | sed 's/+//' | sed 's/..°C//'` +#TEMP_CPU=$(sensors -A | awk 'NR == v+1 {print $4}' v="$(sensors -A | awk '{ if ($1 == "coretemp-isa-0000") {print NR}}')" | sed 's/+//' | sed 's/..°C//') +TEMP_CPU=$(sensors -A | awk '/Package/ {print $4}' | sed 's/+//' | sed 's/..°C//') TEMP_GPU=`nvidia-smi | awk '{if (NR == 10) {print $3}}' | sed 's/C//'` #ICON="💻"