poorercputemp - another tray temp monitor
Moderator: Forum moderators
-
- Posts: 80
- Joined: Wed Aug 05, 2020 3:34 am
- Has thanked: 1 time
- Been thanked: 8 times
poorercputemp - another tray temp monitor
in old Forum there is a good tool for showin the temperature of the cpu in the tray - poorercputemp
(http://www.murga-linux.com/puppy/viewto ... 828057872')
because my lovely old lappy often kick away the pmcputemp, I had want an alternative to that
and found the poorercputemp, started it and no startproblems
BUT it also seems to have a bug:
my lappy, has a Cpu 'Intel(R) Celeron(R) CPU 900 @ 2.20GHz'
and now, in summer, and heavily using it, the celeron sometimes
reaches his maximum temperature: TCASE 105°C
at the Point, where the Cpu-Temperature rises from 99 to 100°C, the poorercputemp
also stopped showing the temperature. It didn't come back when the temperature
falls back under 100.
It seems, the problem is the three-digit-value 100, these both cputemp-tools can only show
2-digit-values
Now I Hope someone (01micko ?) can change that, and also hope, that will be
before my cpu goes to 106++°C without an Info to me
Maybe its also possible, to write the svg-source for the showing Icon in a file for changing layout.
Would be a great feature to that very good tool
Thanks for your regards
- 01micko
- Posts: 135
- Joined: Mon Jul 13, 2020 4:08 am
- Location: Qld
- Has thanked: 5 times
- Been thanked: 66 times
- Contact:
Re: poorercputemp - another tray temp monitor
I do not quite understand this sentence. What layout do you want to change? The svg icons are generated in the C language source code, and are hard coded to a pseudo font of my design.Eastler_Dart wrote: ↑Sat Aug 15, 2020 5:22 am Maybe its also possible, to write the svg-source for the showing Icon in a file for changing layout.
As for going over 99 degrees.. I can fix that and make the cut off point 110 degrees. However, making the font look good and supporting 3 digits, in the unlikely event that happens in most cases, is not worth my time but I can produce a 'fire' icon when CPU gets hotter than 99. The program can quit at 110.
Perhaps also, your cpu fan needs cleaning? Or maybe the vents?
I'll post a new topic soon with updated packages with the revisions I have mentioned.
- mikewalsh
- Moderator
- Posts: 6115
- Joined: Tue Dec 03, 2019 1:40 pm
- Location: King's Lynn, UK
- Has thanked: 779 times
- Been thanked: 1952 times
Re: poorercputemp - another tray temp monitor
Your laptop should never be reaching those sorts of temps anyway. That's danger territory, despite that Intel CPUs, like others, have overheat protection stuff built-in.
My ancient Dell lappie runs one of the CPUs historically known as running incredibly hot.....a Pentium 4. Even on a boiling hot summer's day, it never gets much above 65°C (and if it's up in that kind of area I start getting concerned!)
I would seriously recommend a complete strip-down. Dismantle the CPU heat-sink (and GPU heat-sink if it has one). Unplug & dismount your fan. Thoroughly clean everything; pay particular attention to case-vents, and the heatsink "radiator" that usually sits behind the main vent. These have a habit of getting packed solid with dust-bunnies if in a dusty environment, and can form a solid mat if left long enough. Not good for getting rid of heat..!
Once you're good & clean, re-assemble and re-fit the fan, and the CPU/GPU heatsinks. Take note that you'll need to re-apply fresh thermal compound BEFORE re-fitting the heatsinks.
Here's a couple of guides, if you've never done this sort of thing before:-
https://www.maketecheasier.com/properly ... te-to-cpu/
(Full-screen works for Firefox. If you're running Chrome, Chromium, or one of the clones, you'll need to hit the YouTube button and watch it on the main site.)
Not everything is "fixable" with software, y'know! Sometimes, there's no option BUT to dive-in and get your hands dirty.....in your case, you're asking for a workaround for a situation that most people would never allow to develop in the first place.
Mike.
-
- Posts: 80
- Joined: Wed Aug 05, 2020 3:34 am
- Has thanked: 1 time
- Been thanked: 8 times
Re: poorercputemp - another tray temp monitor
I'll take your tips tonight maybe a quarter of year is past, since last cleanup
so I'll do a cleaningnight, lol.
The "Heat" of the lappy, messuring with my fingers while type keys, is from
first day until now since 5 or more years in this temperature, and it runs already.
Thatswhy I think, its not the CPU, its the sensor, who make the problems,
shows more as it really is.
About the layout, it looks nice, it is your design, let it like it is. My thought was,
the programm takes a font from the installed, and it's only to define the
fontname exacter.
It is no really problem, that temperature is shown with other font, than the rest in the tasklist.
again, thanks for your tipps
- norgo
- Posts: 282
- Joined: Mon Jul 13, 2020 6:39 pm
- Location: Germany
- Has thanked: 6 times
- Been thanked: 111 times
- Contact:
Re: poorercputemp - another tray temp monitor
thank you for this nice monitoring tool.
Unfortunately there is a permission problem of /tmp/poorercputemp folder generated by application.
Application launch as regular user on a multiuser system or user spot leads to following error message:
Couldn't open /tmp/poorercputemp/temp.svg for writing
I checked this and have to say the permissions are very strange indeed.
After following modification, application I working without problems for me.
Code: Select all
--- old/poorercputemp.c 2020-06-21 07:36:05.000000000 +0200
+++ new/poorercputemp.c 2020-08-22 19:51:14.405453821 +0200
@@ -237,7 +237,7 @@
int access_ok = access(TEMP, W_OK);
if (access_ok != 0) {
- if (mkdir(TEMP, 4755) != 0 ) {
+ if (mkdir(TEMP, 0755) != 0 ) {
fprintf(stderr, "Couldn't create %s for writing\n", TEMP);
exit(1);
}
Nice tool
thank you once again.
- Attachments
-
- permission of automatically generated temp folder
- permissions.png (31.4 KiB) Viewed 2130 times
- norgo
- Posts: 282
- Joined: Mon Jul 13, 2020 6:39 pm
- Location: Germany
- Has thanked: 6 times
- Been thanked: 111 times
- Contact:
Re: poorercputemp - another tray temp monitor
@Eastler_DartEastler_Dart wrote: ↑Sat Aug 15, 2020 3:05 pm ... About the layout, it looks nice, it is your design, let it like it is. My thought was,
the programm takes a font from the installed, and it's only to define the
fontname exacter.
It is no really problem, that temperature is shown with other font, than the rest in the tasklist.
I modified the layout slightly, it's suited for dark themes only.
See screenshot, if you like it let me know.
- Attachments
-
- layout slightly modified
- poorercputemp.gif (7.17 KiB) Viewed 2113 times
-
- Posts: 80
- Joined: Wed Aug 05, 2020 3:34 am
- Has thanked: 1 time
- Been thanked: 8 times
Re: poorercputemp - another tray temp monitor
had found some time to diagnost my CelsiusMysterium again )
have written a diagnostic tool, which wachtes the sensor-values
( Access-point given from /root/.config/poorercputemp/poorercputemprc )
and remembers the highes found value.
There is also a Value called temp2_max , that says 105° is Maximum for my CPU
and a temp2_crit, which also say 105°
started my tool, then make a maximum use of the cpu until
my fingers cry "tooo hot here", klick on my toolicon in Taskbar,
the Info is 102000, which stands for 102°.
So all seems in given rules - hm
Start PuppySysInfo -> mainboard -> Bios == Release Date: 08/11/2009, Vendor: Phoenix Technologies LTD
so I say, the Lappy does this since 10 years
( Start PuppySysInfo -> mainboard -> CPU == Intel(R) Celeron(R) CPU 900 @ 2.20GHz )
If someone also wants to diagnost, here is my tool,
but remember, IT WORKS NOT FOR ALL, ONLY ON MY LAPPY
so study it, change it to your situation !!
the Look:
The Bashscript (the source of the Temperaturesensorvalues is fix build in,
change the first line to your sensors, you can get a hint from
file /root/.config/poorercputemp/poorercputemprc when 01micko's
poorercputemp is running ):
Code: Select all
#!/bin/sh
# aus dem Systemverzeichnis
# /sys/devices/platform/coretemp.0/hwmon/hwmon0/
# folgende Daten holen:
# ./name 'coretemp' Name der Temperaturmessung
# ./temp2_label 'Core 0' Name
# ./temp2_max '105000' MaxTemp
# ./temp2_input '46000' aktuelle Temperatur
# ./temp2_crit '105000' kritisch Temperatur
vzchns="/sys/devices/platform/coretemp.0/hwmon/hwmon0"
SvgQuelle="/mnt/sdb1/Quellen/upup-ef/Icons/mitInkscape/Temperatur/ColCels.svg"
SvgFile="ColCels.svg"
HighestT=0
export laufen=1
# the different colours of different temperatures in an Array
declare -a colours
colours+=('#018e4a')
colours+=('#018e4a')
colours+=('#b57b00')
colours+=('#8b0400')
colours+=('#f20000')
#echo "Colours-Array[\@]=${colours[@]} colours-Länge=${#colours[@]} colours[4]=[${colours[4]}]"
# the different show-heights for different temperatures in an Array
declare -a heights #Max height = -44 lowest +264 = in 5 steps of 44
heights+=('264')
heights+=('220')
heights+=('176')
heights+=('132')
heights+=('-88')
#Functions
function GetDatas() {
# GET DATAS
if [ -f "$vzchns/name" ]; then Name=$(cat "$vzchns/name"); fi
if [ -f "$vzchns/temp2_label" ]; then Label=$(cat "$vzchns/temp2_label"); fi
if [ -f "$vzchns/temp2_max" ]; then MaxT=$(cat "$vzchns/temp2_max"); echo -n "cat temp2_max="; cat "$vzchns/temp2_max"; fi
if [ -f "$vzchns/temp2_crit" ]; then CritT=$(cat "$vzchns/temp2_crit"); fi
if [ -f "$vzchns/temp2_input" ]; then AktT=$(cat "$vzchns/temp2_input"); fi
}
function Checks() {
# is actual Temperature ok?
if [ $AktT -ge 0 ] && [ $AktT -le 110000 ]; then echo "aktTemp scheint nutzbar zu sein"; else echo "aktuelle Temperatur $AktT ist Mist, breche ab"; exit; fi
# is maximal Temperature ok? if not, take 110
if [ $MaxT -ge 10000 ] && [ $MaxT -le 110000 ]; then echo "MaxTemp $MaxT scheint nutzbar zu sein"; else MaxT=110000; fi
# is the main-SVG-Source there? if not, exit
if [ ! -f $SvgQuelle ]; then echo "kann $SvgQuelle nicht finden, breche ab"; exit; fi
# cp main-SVG-Source to /tmp
cp -f $SvgQuelle /tmp
if [ ! -L /tmp/ColCels ] ; then ln -s $(which yad 2>/dev/null) /tmp/ColCels; fi
}
function Calculate() {
# Calculate, if actTemp is verylow, low, normal, high or dangerous
AktCelsiusPercent=$((100*$AktT/$MaxT))
echo "AktCelsiusPercent=\$((100*$AktT/$MaxT/1000))"
echo "AktCelsiusPercent=[$AktCelsiusPercent]% ( actual $AktT° Maximum $MaxT° " #42% at 46°
DangerClass=$((AktCelsiusPercent/25))
echo "DangerClass=[$DangerClass] height=[${heights[$DangerClass]} from ${heights[0]} to ${heights[4]} colour=[${colours[$DangerClass]}]" # 42%=1 testet with 110°=100%=DangerClass 4
# build the line with the changed Values #height=${heights[$DangerClass]} #colour=${colours[$DangerClass]}
NewLine=" d=\"M 172,${heights[$DangerClass]} L 171,300 C 114,323 83,360 83,421 C 83,501 149,566 229,566 C 309,566 374,501 374,421 C 374,357 340,318 279,297 L 279,${heights[$DangerClass]} L 172,${heights[$DangerClass]} L 172,${heights[$DangerClass]} z \" style=\"fill:${colours[$DangerClass]};fill-opacity:1;stroke:none\" "
echo "[$NewLine]" #rem this in reallife
}
function ChangeSvg() {
# change the Line with colour und GlassSize in /tmp/*.svg
# read it line by line, if it was the Line with colour/Size, write the new one, else write as read to a second file in /tmp
sikifs="$IFS"; IFS=$'\n'
tmptmp="/tmp/tmp.svg"
echo -n "" > $tmptmp
for line in $(cat /tmp/$SvgFile)
do
if [ "${line:0:13}" == ' d="M 172' ]
then echo "$NewLine" >> $tmptmp;
else echo "$line" >> $tmptmp
fi
done
# remove the /tmp/*.svg and move the new one to *.svg
rm "/tmp/$SvgFile"
mv "$tmptmp" "/tmp/$SvgFile"
}
function SetHighest() {
# check if the AktT is the highest recognized in this session
if [ -f /tmp/ColCels.dat ]; then HighestT=$(cat /tmp/ColCels.dat); fi
echo "if [ $AktT > $HighestT ]"
if [ $AktT -gt $HighestT ]; then echo -n $AktT > /tmp/ColCels.dat; echo "höher"; else echo "niedriger"; fi
}
function WriteInfoWinScript() {
echo "#!/bin/sh" > /tmp/ColCelsInfo
echo "MaxTmpFound=$(cat /tmp/ColCels.dat)" >> /tmp/ColCelsInfo
echo " export ColCelsInfo='<window title=\"ColCelsInfo\" name=\"Meldung\" window_position=\"2\" decorated=\"true\">
<vbox>
<text wrap=\"false\"><label>\" the highest Temperature was '\"\$MaxTmpFound\"' \"</label></text>
<button sensitive=\"true\" can-default=\"true\" has-default=\"true\" tooltip-text=\" close this Window \">
<label>Ok, thanks</label>
<variable>btnClosewindow</variable>
<action>closewindow:btnClosewindow</action>
</button>
<button tooltip-text=\" Finish watching temperature \">
<label>Quit</label>
<variable>QuitColCelWatch</variable>
<action>SetLaufen 0</action>
<action>closewindow:btnClosewindow</action>
</button>
</vbox>
</window>'
" >> /tmp/ColCelsInfo
echo "tmpAntwort=\$(gtkdialog4 --program=ColCelsInfo)" >> /tmp/ColCelsInfo
chmod 0757 /tmp/ColCelsInfo
}
# this commented func I use until all works,
# it calls the 'click on Temperature in Taskbar' via urxvt,
# and DONT't close the urxvt, I had to manually close it, so I can read error-messages before close
#function CallIt() {
# exec /tmp/ColCels --notification \
# --command="urxvt --geometry 120x5 -hold -e sh -c \" /tmp/ColCelsInfo \" " \
# --text "Klick for highest Temperature" --image="/tmp/$SvgFile" &
#}
# the real Action for 'Klick on Temperature in Taskbar'
function CallIt() {
exec /tmp/ColCels --notification \
--command="sh -c \" /tmp/ColCelsInfo \" " \
--text "Klick for highest Temperature" --image="/tmp/$SvgFile" &
}
function SetLaufen() {
echo "setze laufen auf $1"
laufen=$1
}
export -f SetLaufen
# check if ColCels is already running
if [ pidof /tmp/ColCels >/dev/nulll 2>&1 ] ; then exit; fi
#MAIN
GetDatas
Checks
Calculate
ChangeSvg
SetHighest
WriteInfoWinScript
CallIt
# loop every 10 seconds
while [ "$laufen" == 1 ]
do
GetDatas
Calculate
ChangeSvg
SetHighest
WriteInfoWinScript
# wait 10 seconds
sleep 10
done
IFS="$sikifs"
http://eastler.de/tmp/ColCelInfo.tar.gz
HINTS: the Button 'Quit' doesn't work
for quit simply typ Ctrl+C (Strg+C) in the starting urxvt-window
for a perfect programm, the opening Window should show more,
for example also the CPU-tyte, the Max-Teperature
expand the archive in a directory, open a shell there,
start the script with HolTemp in the shell
to stop it, type Ctrl+C - or simply close the shell-Window
ahhh, for 01micko: havn't include a FireIcon, but you are right,
it should be in
you can use it as you want, I share it here without any copyright-rule.
Hope it helps someone
-
- Posts: 80
- Joined: Wed Aug 05, 2020 3:34 am
- Has thanked: 1 time
- Been thanked: 8 times
Re: poorercputemp - another tray temp monitor
-
- Posts: 1551
- Joined: Sun Jul 12, 2020 2:38 am
- Location: S.E. Australia
- Has thanked: 238 times
- Been thanked: 711 times
Re: poorercputemp - another tray temp monitor
For some reason, newer pcputemp doesn't work on my Celeron N3350 laptop, so with Mick's permission & thanks to him making source available, I've made poorercputemp .pets which fixes /tmp permission & reduces font size & works on all my laptops - shows 2 digit temp only. Also puts .desktop file in /root/.config/autostart.
NOTE to davids45 - your module is in these .pets.
64bit tested OK in ScPup64, Slacko64-7.0 & Bionicpup64.
32bit tested OK in ScPup & Bionicpup32.
Use at own risk. Install by clicking on it in ROXFiler & restarting X.
- Attachments
-
- poorercputemp32-0.1d.pet
- (8.87 KiB) Downloaded 109 times
-
- poorercputemp64-0.1d.pet
- (7.73 KiB) Downloaded 143 times
- norgo
- Posts: 282
- Joined: Mon Jul 13, 2020 6:39 pm
- Location: Germany
- Has thanked: 6 times
- Been thanked: 111 times
- Contact:
Re: poorercputemp - another tray temp monitor
poorercputemp ARM 32
archive contains two binaries.
1. original theme - light-green background and black digits
2. self created theme suited for dark task-bar - transparent background and green, yellow, red digits and rim (depending on CPU temperature)
place the desired binary to /usr/bin
run the poorecputemp.sh script to create a config file
make poorercputemp (binary) autostarting
tested on RPi3 Archlinux32
- Attachments
-
- poorercputemp32_arm.tar
- (60 KiB) Downloaded 42 times
- Sofiya
- Posts: 2226
- Joined: Tue Dec 07, 2021 9:49 pm
- Has thanked: 1456 times
- Been thanked: 1490 times
Re: poorercputemp - another tray temp monitor
Yes, I like it, I want 64 bit
KL
PUPPY LINUX Simple fast free
- norgo
- Posts: 282
- Joined: Mon Jul 13, 2020 6:39 pm
- Location: Germany
- Has thanked: 6 times
- Been thanked: 111 times
- Contact:
Re: poorercputemp - another tray temp monitor
@Sofiya here the x86_64 version
- Attachments
-
- poorercputemp-0.1n-x86_64.pet
- this version is suited for dark theme only
- (11.25 KiB) Downloaded 69 times
- Sofiya
- Posts: 2226
- Joined: Tue Dec 07, 2021 9:49 pm
- Has thanked: 1456 times
- Been thanked: 1490 times
Re: poorercputemp - another tray temp monitor
Thanks a lot @Norgo, works great!
looks great with my theme
- Attachments
-
- снимок.png (22.83 KiB) Viewed 1263 times
-
- снимок.png (16.19 KiB) Viewed 1439 times
KL
PUPPY LINUX Simple fast free
-
- Posts: 2876
- Joined: Fri Jul 31, 2020 3:37 am
- Has thanked: 2193 times
- Been thanked: 871 times
Re: poorercputemp - another tray temp monitor
@Sofiya here the x86_64 version
Thanks! This is right on time, I have a very old Dell i5 laptop that I have to keep on a cooling pad and runs between 65 and 85 most of the time. gatotray shows the same bogus 27 degree temp and I have to use pupsysinfo to see what the actual temp is. I have the CPUs scaled to on-demand to help, but it still runs hot. I think it's just the design. I seem to remember some of the early multi-thread laptops had these kinds of issues.
also I use custom high contrast dark themes, so this fits right in!
I like the fact that hovering on the icon shows the cpu clock speeds, so no need to fire up HTOP or conky.
geo_c
Old School Hipster, and Such
- Sofiya
- Posts: 2226
- Joined: Tue Dec 07, 2021 9:49 pm
- Has thanked: 1456 times
- Been thanked: 1490 times
Re: poorercputemp - another tray temp monitor
for light themes
Temperature display script changed to /sys/devices/virtual/thermal/thermal_zone0/temp
for more accurate temperature display
- Attachments
-
- poorercputemp64-0.2Dpup.pet
- (13.47 KiB) Downloaded 61 times
-
- снимок.jpg (5.02 KiB) Viewed 1334 times
KL
PUPPY LINUX Simple fast free