CPU Temperature Indicator 1.0
UUID: temperature@fevimuScore: 21
Download

This applet displays the temperature of the CPU.
This applet is based of the gnome-shell extension: http://motorscript.com/gnome-shell-exte ... mperature/
Note: it's necessary install "lm-sensors"
I hope feedback.

Fevimu you already have my feedback but thought I would post here also. Works great. 5 stars form me. You can also edit the file so it shows fahrenheit just like you can with the gnome-shell extension.
does not work here, it says my cpu temperature is +7.5C, which is obviously wrong. this is an amd fx 8150 with an asus sabertooth 990fx motherboard. lm-sensors is installed
Type "sensors" in ther terminal. which is the result?
sensors it8721-isa-0290 Adapter: ISA adapter in0: +2.82 V (min = +2.26 V, max = +2.74 V) ALARM in1: +2.77 V (min = +1.80 V, max = +0.73 V) ALARM in2: +1.33 V (min = +2.51 V, max = +2.53 V) ALARM +3.3V: +3.29 V (min = +5.50 V, max = +2.23 V) ALARM in4: +0.13 V (min = +2.80 V, max = +0.18 V) ALARM in5: +2.50 V (min = +1.04 V, max = +2.64 V) in6: +2.14 V (min = +0.07 V, max = +2.62 V) 3VSB: +4.54 V (min = +2.26 V, max = +3.36 V) ALARM Vbat: +3.36 V fan1: 588 RPM (min = 12 RPM) fan2: 593 RPM (min = 10 RPM) fan3: 0 RPM (min = 99 RPM) ALARM temp1: +28.0°C (low = -33.0°C, high = +71.0°C) sensor = thermistor <<<<<<<<<<<<<<< this is the cpu temp temp2: +25.0°C (low = +123.0°C, high = -82.0°C) ALARM sensor = thermistor temp3: -128.0°C (low = -33.0°C, high = -8.0°C) sensor = disabled intrusion0: OK k10temp-pci-00c3 Adapter: PCI adapter temp1: +7.9°C (high = +70.0°C) (crit = +90.0°C, hyst = +87.0°C) fam15h_power-pci-00c4 Adapter: PCI adapter power1: 14.27 W (crit = 124.77 W)
oah that was a bit unreadable. ive put it here http://paste.ubuntu.com/1425067/ line 16 is the cpu temp
Why are you sure that line 16 is the temperature of the CPU? Have you seen it in another application? This application uses the output of "sensors", if it is not good, the applet is not good either.
i know its line 16 cos it matches bios and also if i run a torture test, for example 'stress' thats the temp that rises
Hello, I'm not sure that your temperature is correct, but I'm not an expert in "lm-sensors" and its configuration. Anyway, I have made ??a modification of the applet to your specific case. You can download the modification in the following link and replace the existing file on your computer. http://dl.dropbox.com/u/1280898/applet.js I hope you serve.
Works very nicely. On my Dell Latitude D820 lm_sensors reports: i8k-virtual-0 Adapter: Virtual device Right Fan: 73380 RPM I have played with it, but have not been able to add my fan speed. Is this something you can do? Thanks! StanW
Works on my mint 14 on Sony Vaio VPCEB1C5E with intel i5-m430. Good!
It would be nice if the popup disappear as you click everywhere in the screen. It's a little boring to click right in the applet to make the popup disappear.
Thanks a lot, this was really missing from the out-of-the-box install. But I got the same problem than billynick, and solved it by tweaking the code in a similar way. I think that the applet could be simplified a lot by letting the user specify which adapter/sensor should be used (using 2 variable at the very beginning of the code) rather than by trying to auto-detect the CPU temperature. Also, +1 for koopa's comment: would be nice if the popup would disappear like for all the other applets.
My PC has a GEForce GT 610 running with the nouveau drivers instead of Nvidia software. In the output from "sensors", it shows up as a PCI adapter with the label "nouveau-pci-0100". Its temperature can be included in this applet's display by editing the applet source, adding one further condition to the line (in _findTemperatureFromSensorsOutput) which checks for the PCI Adapter label being "k10tem" or "k8temp" : || senses_lines[i-1].substr(0,7)=='nouveau' I don't know how general this pattern is, but it might cover other cases where a nouveau driver is handling the graphics card.
I'm attempting to use this applet, but show an error status. I'm not sure why, as I do have a temp output for each of my cores. Any ideas? http://pastebin.com/1GdaAn5t
Does what it says ;) thanks!
Very Good ! Work well and simply !
Great applet! Thanks for adding the line to use F instead of C worked like a charm!
Thanks for the great applet. I extended it to show the hdd temperatures using hddtemp, too. Are you interested?
I can't see the applet in my Cinnamon 1.8 bar.
I just installed this applet and ended up doing some research because I thought the temperature readings reported weren't correct. It seems the applet takes two different temperature readings (in my case, "PCI Adapter" and "ACPI Adapter") and reports their average as the CPU temperature. So I decided to see if "sensors" was actually giving contradictory info (sensors output availaible here: http://pastebin.com/HYcGUTxJ ). So there seems to be two CPU temperature readings: +23.8°C by PCI Adapter and +38.0°C by ACPI Interface. I'm inclined to believe the +38.0 is actually correct, because it's a pretty warm day (23°C in shade). So I google "k10temp-pci-00c3" to see what this weird reading is all about, and come across this: http://yeupou.wordpress.com/2012/02/18/getting-accurate-temperature-reading-for-the-cpu/ Based on that blog post, the ACPI reading is correct and the one reported by k10temp is meant to be used by cooling systems or something. Quoting the k10temp kernel module document (https://www.kernel.org/doc/Documentation/hwmon/k10temp, also linked in the blog post): "...a non-physical temperature on an arbitrary scale measured in degrees. It does _not_ represent an actual physical temperature". So there you go. At least on AMD CPUs the ACPI reading is correct and k10temp should be ignored.