It is currently April 27th, 2024, 2:00 am

Hex clock as desktop background

Get help with creating, editing & fixing problems with skins
barmijo4433
Posts: 1
Joined: June 21st, 2014, 10:40 pm

Hex clock as desktop background

Post by barmijo4433 »

What's the simplest way to turn a desktop into this: http://www.jacopocolo.com/hexclock/#

I tried FontColor=%I,%M,%S,255 and a few other variations but it doesn't seem to work.

I've never worked with rainmeter before.
FlyingHyrax
Posts: 232
Joined: July 1st, 2011, 1:32 am
Location: US

Re: Hex clock as desktop background

Post by FlyingHyrax »

You can do a simple version with Section Variables; demo:

Code: Select all

[Rainmeter]

[Metadata]

[Variables]

[msrHour]
Measure=TIME
Format=%H

[msrMinute]
Measure=TIME
Format=%M

[msrSecond]
Measure=TIME
Format=%S

[mtrClock]
Meter=String
DynamicVariables=1
Text="#[msrHour][msrMinute][msrSecond]"
FontFace=Segoe UI Light
FontSize=20
FontColor=255,255,255
AntiAlias=1
X=0
Y=0
SolidColor=[msrHour][msrMinute][msrSecond]
For getting the formatting just right, check the source of the webpage. All the font styles and stuff are right there, as is the Javascript code in case you're curious.

This version has a little more variety. It's written in flash, so you can't check the source, but it's clearly not just appending the time to create a hex value... something like that in Rainmeter would need to be in Lua.
Flying Hyrax on DeviantArt