cpu usage/temp?
#1
Hi all, not really a big problem but curious.
Is it possible to show the cpu temp and or usage in the top right of the screen (using a raspberry pi and openelec)?

Kinda like this.

Many thanks for the help !!
Reply
#2
Hi pengocha.

You can add this yourself to the xml files.

Open includes_StatusBar.xml

Insert this code after line 149 (after <include condition="!Skin.HasSetting(HideTopBarDate)">DateNotification</include>):

Code:
<control type="label" id="5570">
                <width min="25" max="200">auto</width>
                <height>42</height>
                <font>BreadCrumbFont</font>
                <textcolor>BreadCrumbColor</textcolor>
                <label> [UPPERCASE]$LOCALIZE[140] $INFO[System.CpuUsage]  &#x2022;  $INFO[System.CPUTemperature]$INFO[System.TemperatureUnits][/UPPERCASE] </label>
                <aligny>center</aligny>
            </control>
            <control type="image">
                <top>3</top>
                <width>3</width>
                <height>39</height>
                <texture border="0,12,0,13">gui/status-bar-separator.png</texture>        
            </control>

Or wherever you find suitable in the status bar.
Reply
#3
thx man !
Reply

Logout Mark Read Team Forum Stats Members Help
cpu usage/temp?0