It is currently April 26th, 2024, 7:30 am

How to highlight only a day?

Get help with creating, editing & fixing problems with skins
User avatar
Rambytes
Posts: 27
Joined: August 30th, 2017, 10:36 pm

How to highlight only a day?

Post by Rambytes »

Hello, and first of all i'm verry sorry for my english, this is not my native language. So be cool with me!

Thanks alot :)

So i've search many hours and i didnt found anything for what I want. I have a simple clock and under the day of the week. But what I want to do is to have all the day in the same line, but darker (like the color 150,150,150) and only highlight the day of today (color 255,255,255)

Like this:

19:34
Monday Tuesday Wednesday Thursday Friday Saturday Sunday

All the day is darker, but (like today) the Wednesday is the only one in white. And tomorow Wednesday back to gray and Thursday is the only one in white.

Can this be possible? Hope you will understand, hard to explain in english :-(
User avatar
jsmorley
Developer
Posts: 22630
Joined: April 19th, 2009, 11:02 pm
Location: Fort Hunt, Virginia, USA

Re: How to highlight only a day?

Post by jsmorley »

Code: Select all

[Rainmeter]
Update=1000
DynamicWindowSize=1
AccurateText=1

[MeasureTime]
Measure=Time
Format=%H:%M

[MeasureDay]
Measure=Time
Format=%A

[MeterTime]
Meter=String
MeasureName=MeasureTime
FontSize=11
FontWeight=400
FontColor=255,255,255,255
SolidColor=0,0,0,1
AntiAlias=1

[MeterDate]
Meter=String
Y=R
FontSize=11
FontWeight=400
FontColor=150,150,150,255
SolidColor=0,0,0,1
AntiAlias=1
InlineSetting=Color | 255,255,255,255
InlinePattern=[MeasureDay]
DynamicVariables=1
Text=Monday Tuesday Wednesday Thursday Friday Saturday Sunday
1.png
https://docs.rainmeter.net/manual-beta/meters/string/inline/
https://docs.rainmeter.net/manual-beta/variables/section-variables/
You do not have the required permissions to view the files attached to this post.
User avatar
Rambytes
Posts: 27
Joined: August 30th, 2017, 10:36 pm

Re: How to highlight only a day?

Post by Rambytes »

WORKS GREAT! Thanks alot my friend :)