Created
October 15, 2016 13:10
-
-
Save narongdejsrn/f2ed1cf179cd3a240379585d788de0ac to your computer and use it in GitHub Desktop.
Rainmeter CoreTemp ini with illustro theme
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Rainmeter] | |
Update=1000 | |
Background=#@#Background.png | |
; #@# is equal to Rainmeter\Skins\illustro\@Resources | |
BackgroundMode=3 | |
BackgroundMargins=0,34,0,14 | |
[Variables] | |
; Variables declared here can be used later on between two # characters (e.g. #MyVariable#). | |
fontName=Trebuchet MS | |
textSize=8 | |
colorBar=235,170,0,255 | |
colorText=255,255,255,205 | |
maxDownload=10485760 | |
MaxUpload=10485760 | |
; Set maxDownload and maxUpload to your maximum download and upload speed in bits. | |
; To convert kilobits, megabits, kilobytes, and megabytes into bits, go to www.google.com | |
; and search for something like "10 megabytes in bits". | |
[MeasureMaxTemp] | |
Measure=Plugin | |
Plugin=CoreTemp | |
CoreTempType=MaxTemperature | |
[MeasureCore1Temp] | |
Measure=Plugin | |
Plugin=CoreTemp | |
CoreTempType=Temperature | |
CoreTempIndex=0 | |
[MeasureCpuSpeed] | |
Measure=Plugin | |
Plugin=CoreTemp | |
CoreTempType=CpuSpeed | |
; ---------------------------------- | |
; STYLES are used to "centralize" options | |
; ---------------------------------- | |
[styleTitle] | |
StringAlign=Center | |
StringCase=Upper | |
StringStyle=Bold | |
StringEffect=Shadow | |
FontEffectColor=0,0,0,50 | |
FontColor=#colorText# | |
FontFace=#fontName# | |
FontSize=10 | |
AntiAlias=1 | |
ClipString=1 | |
[styleLeftText] | |
StringAlign=Left | |
; Meters using styleLeftText will be left-aligned. | |
StringCase=None | |
StringStyle=Bold | |
StringEffect=Shadow | |
FontEffectColor=0,0,0,20 | |
FontColor=#colorText# | |
FontFace=#fontName# | |
FontSize=#textSize# | |
AntiAlias=1 | |
ClipString=1 | |
[styleRightText] | |
StringAlign=Right | |
StringCase=None | |
StringStyle=Bold | |
StringEffect=Shadow | |
FontEffectColor=0,0,0,20 | |
FontColor=#colorText# | |
FontFace=#fontName# | |
FontSize=#textSize# | |
AntiAlias=1 | |
ClipString=1 | |
[styleBar] | |
BarColor=#colorBar# | |
BarOrientation=HORIZONTAL | |
SolidColor=255,255,255,15 | |
[styleSeperator] | |
SolidColor=255,255,255,15 | |
; ---------------------------------- | |
; METERS display images, text, bars, etc. | |
; ---------------------------------- | |
[meterTitle] | |
Meter=String | |
MeterStyle=styleTitle | |
; Using MeterStyle=styleTitle will basically "copy" the | |
; contents of the [styleTitle] section here during runtime. | |
X=100 | |
Y=12 | |
W=190 | |
H=18 | |
Text=CoreTemp | |
[MeterMaxTempLabel] | |
Meter=String | |
MeterStyle=styleLeftText | |
X=10 | |
Y=40 | |
W=190 | |
H=14 | |
Text=Max Temp | |
[MeterMaxTempValue] | |
Meter=String | |
MeterStyle=styleRightText | |
MeasureName=MeasureMaxTemp | |
X=200 | |
Y=0r | |
; r stands for relative. In this case, the Y postition of meterValueCPU is 0 pixels | |
; below the Y value of the previous meter (i.e it's the same as in meterLabelCPU). | |
W=190 | |
H=14 | |
Text="%1C" | |
[meterSeperator] | |
Meter=Image | |
MeterStyle=styleSeperator | |
X=10 | |
Y=52 | |
W=190 | |
H=1 | |
[MeterCpuLabel] | |
Meter=String | |
MeterStyle=styleLeftText | |
X=10 | |
Y=60 | |
W=190 | |
H=14 | |
Text=Frequency | |
[MeterCpuSpeed] | |
Meter=String | |
MeterStyle=styleRightText | |
MeasureName=MeasureCpuSpeed | |
X=200 | |
Y=0r | |
W=190 | |
H=14 | |
Text="%1 MHz" | |
Select all |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment