It is currently April 26th, 2024, 8:05 am

HELP - How to get live CPU Speed in my skin?

Get help with creating, editing & fixing problems with skins
User avatar
balala
Rainmeter Sage
Posts: 16172
Joined: October 11th, 2010, 6:27 pm
Location: Gheorgheni, Romania

Re: HELP - How to get live CPU Speed in my skin?

Post by balala »

Hackkerszk wrote: June 25th, 2020, 5:26 am Where do i put this one Text=%1GHz??
There is no Text=
Only this looks like.
Yes, indeed, sorry. You have to add simply the Text option to the meter:

Code: Select all

[MeterCPU1Speed]
Meter=String
MeasureName=MeasureCPU1SpeedGHz
X=(#Skin-Width#/2)
Y=0r
FontColor=#Text-Color#
FontSize=#Type-Size#
NumOfDecimals=2
AntiAlias=1
StringAlign=Center
Text=%1GHz
Note that since you've asked for the speed to be shown with two decimals:
Hackkerszk wrote: June 24th, 2020, 3:29 pm I Just want a GHz values with one digit and two decimals.
I also added a NumOfDecimals=2 option.
Hackkerszk
Posts: 5
Joined: June 22nd, 2020, 3:30 pm

Re: HELP - How to get live CPU Speed in my skin?

Post by Hackkerszk »

balala wrote: June 25th, 2020, 7:27 am Yes, indeed, sorry. You have to add simply the Text option to the meter:

Code: Select all

[MeterCPU1Speed]
Meter=String
MeasureName=MeasureCPU1SpeedGHz
X=(#Skin-Width#/2)
Y=0r
FontColor=#Text-Color#
FontSize=#Type-Size#
NumOfDecimals=2
AntiAlias=1
StringAlign=Center
Text=%1GHz
Note that since you've asked for the speed to be shown with two decimals:

I also added a NumOfDecimals=2 option.
WOW!! You are the best. It works perfect now.
Thank you very much bro!
User avatar
balala
Rainmeter Sage
Posts: 16172
Joined: October 11th, 2010, 6:27 pm
Location: Gheorgheni, Romania

Re: HELP - How to get live CPU Speed in my skin?

Post by balala »

You're welcome.