diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2018-11-27 15:20:13 +0100 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2018-11-27 15:20:13 +0100 |
commit | 1f88241691ca74d2bdca59e91f539bc1701e208d (patch) | |
tree | 1470afa64b3c16329b6965180489bca71ed7e622 | |
parent | 42c2a6710f55686dd965d2e3ffe1761994fce752 (diff) |
xmobar update for intel chipset
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
-rwxr-xr-x | configs/xmobar_cputemp.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/configs/xmobar_cputemp.sh b/configs/xmobar_cputemp.sh index 05f9f19..4452f10 100755 --- a/configs/xmobar_cputemp.sh +++ b/configs/xmobar_cputemp.sh @@ -1,18 +1,18 @@ #!/bin/sh if [ "x$1" = "xCPU" ]; then - OUT=$(sensors | sed -n 's/^CPU Temperature:\s*+\(.*\)\..*°C\s*(\(.*\)/\1/p') + OUT=$(sensors | sed -n 's/^\(Physical\|Package\) id 0:\s*+\(.*\)\..*°C\s*(\(.*\)/\2/p') elif [ "x$1" = "xMB" ]; then - OUT=$(sensors | sed -n 's/^MB Temperature:\s*+\(.*\)\..*°C\s*(\(.*\)/\1/p') + OUT=$(sensors | sed -n 's/^temp1:\s*+\(.*\)\..*°C\s*(\(.*\)/\1/p') else exit 1 fi -if [ $OUT -le 60 ]; then +if [ $OUT -le 50 ]; then echo "$OUT°C" -elif [ $OUT -le 75 ]; then +elif [ $OUT -le 65 ]; then echo "<fc=#00FF00>$OUT</fc>°C" -elif [ $OUT -le 85 ]; then +elif [ $OUT -le 75 ]; then echo "<fc=#FFFF00>$OUT</fc>°C" else echo "<fc=#FF0000>$OUT</fc>°C" |