HOME | DD

ZakycooL — Dynamic Monitor Rainmeter by-nc-sa

Published: 2013-03-26 19:08:17 +0000 UTC; Views: 27705; Favourites: 48; Downloads: 4257
Redirect to original
Description Last update : 31/03/2013 version 1.1.5.31032013

This is Dynamic Monitor Rainmeter skin. Simple monitoring that shows information about system cpu, drives and network.

It will move on your desktop horizontally

You need Rainmeter 2.5 or newer to install this skin. Get it at rainmeter.net .
You can change the color appearance and also can resize it. Just open the config file and edit.
(Update: now there's Setting button to easily customize)


If you download it and find something wrong, please kindly comment here. Hope you like it !

Update 28/03/2013 :
The skin pause moving when mouse over it. If you click pause then it will stay there. Click start to move it again.
If you have suggestion, please comment.


Update 29/03/2013 :
Fix reported bug. Now the skin smoothly pause moving. Tested at 1366x768 screen.


Update 31/03/2013 :
Request done. Now there's Setting button to easily customize.


APPEARANCE : - VIDEO -


I'm just ordinary guy who want to share something - ZakycooL


-------------------------------------------------------------------------------------------------------
#GetWatchers:
You need more Exposure, Watchers and Views on your Art? Join us!
Click Here !
Related content
Comments: 39

Ahbaar [2017-02-09 13:48:35 +0000 UTC]

cool skin bro

👍: 0 ⏩: 0

BinaryByte [2015-06-08 17:49:28 +0000 UTC]

I went to download it,and my network security systems gave me a trojan alert: Pasta.AXY.Was a trojan planted into this file?

👍: 0 ⏩: 1

ZakycooL In reply to BinaryByte [2015-06-08 22:48:45 +0000 UTC]

NO.

👍: 0 ⏩: 0

BinaryByte [2015-06-08 17:48:13 +0000 UTC]

Makes a nice user tag.

👍: 0 ⏩: 0

m0rphiT [2014-05-04 15:50:49 +0000 UTC]

i got a ram_ now use it!

even though looks pretty cool_ thank you

👍: 0 ⏩: 0

VirtualGirls [2014-02-24 15:24:52 +0000 UTC]

consuming too much processor

👍: 0 ⏩: 1

ZakycooL In reply to VirtualGirls [2014-02-24 21:40:29 +0000 UTC]

yup, for some pc. I should update the code, but I'm too lazy to do it.

👍: 1 ⏩: 0

billyk1983 [2014-01-07 01:14:20 +0000 UTC]

This issue has been resolved. Thannks.

👍: 0 ⏩: 1

ZakycooL In reply to billyk1983 [2014-01-07 02:41:35 +0000 UTC]

Oh... I see. I just reply on your previous comment.

👍: 0 ⏩: 0

billyk1983 [2014-01-05 17:29:46 +0000 UTC]

Hey, Nice work. I am trying to code a skin in which a Blue square will move back and forth like this, but only by 50 pixels in each direction instead of the whole screen. I have written it and looking at it, it seems perfect but for some reason it is stuck in a loop. There aren't many people who design moving skins, and I was hoping you would take a look at the code to see if I am missing something. Thanks.

👍: 0 ⏩: 1

ZakycooL In reply to billyk1983 [2014-01-06 00:58:40 +0000 UTC]

...and where's the code?

👍: 0 ⏩: 1

billyk1983 In reply to ZakycooL [2014-01-06 20:37:13 +0000 UTC]

I was waiting for you to accept my plea for help before posting of course.


[Rainmeter]
Update=1
onrefreshaction=!Execute [!DisableMeasure MoveRight1][!DisableMeasure MoveRightAction1][!EnableMeasure MoveLeft1][!EnableMeasure MoveLeftAction01]

[Variables]
Hold=0

;=================================================================================================================================================

[MoveDown1]
Measure=Calc
Formula=0

;=================================================================================================================================================

[MoveRightCount1]
Measure=Calc
FormulaMoveRightCount1+(#Hold#?0:1))%(50+(#Hold#?0:1))
DynamicVariables=1
UpdateDivider=1

[MoveRight1]
Measure=Calc
Formula=1770 + [MoveRightCount1]
IfEqualValue=1820
IfEqualAction=!Execute [!DisableMeasure MoveRight1][!DisableMeasure MoveRightAction1][!EnableMeasure MoveLeft1][!EnableMeasure MoveLeftAction01]
DynamicVariables=1
UpdateDivider=1

[MoveRightAction1]
Measure=Calc
Formula=Counter % (#Hold#?0:2)
IfEqualValue=0
IfEqualAction=!RainmeterMove [MoveRight1] [MoveDown1]
DynamicVariables=1
UpdateDivider=1

;=================================================================================================================================================

[MoveLeftCount1]
Measure=Calc
FormulaMoveLeftCount1+(#Hold#?0:1))%(50+(#Hold#?0:1))
DynamicVariables=1
UpdateDivider=1

[MoveLeft1]
Measure=Calc
Formula=1820 - [MoveLeftCount1]
IfEqualValue=1770
IfEqualAction=!Execute [!DisableMeasure MoveLeft1][!DisableMeasure MoveLeftAction01][!EnableMeasure MoveRight1][!EnableMeasure MoveRightAction1]
DynamicVariables=1
UpdateDivider=1

[MoveLeftAction01]
Measure=Calc
Formula=Counter % (#Hold#?0:2)
IfEqualValue=0
IfEqualAction=!RainmeterMove [MoveLeft1] [MoveDown1]
DynamicVariables=1
UpdateDivider=1

;=================================================================================================================================================

[Square]
Meter=Image
SolidColor=0,0,255,255
W=100
H=100

[Text]
Meter=String
x=10r
y=10r
Text=Hello
FontColor=255,255,255,255

👍: 0 ⏩: 1

ZakycooL In reply to billyk1983 [2014-01-07 02:38:43 +0000 UTC]

Try this...

[Rainmeter]
Update=1
onrefreshaction=[!DisableMeasure MoveLeftCount1][!DisableMeasure MoveLeft1][!DisableMeasure MoveLeftAction01][!EnableMeasure MoveRightCount1][!EnableMeasure MoveRight1][!EnableMeasure MoveRightAction1]

[Variables]
Hold=0
Set1=1820
Set2=1770
;=================================================================================================================================================

[MoveDown1]
Measure=Calc
Formula=100

;=================================================================================================================================================

[MoveRightCount1]
Measure=Calc
FormulaMoveRightCount1+1)%((#Set1#-#Set2#)+1)
DynamicVariables=1
UpdateDivider=1

[MoveRight1]
Measure=Calc
Formula=#Set2# + [MoveRightCount1]
IfEqualValue=#Set1#
IfEqualAction=[!DisableMeasure MoveRightCount1][!DisableMeasure MoveRight1][!DisableMeasure MoveRightAction1][!EnableMeasure MoveLeftCount1][!EnableMeasure MoveLeft1][!EnableMeasure MoveLeftAction01]
DynamicVariables=1
UpdateDivider=1

[MoveRightAction1]
Measure=Calc
Formula=Counter%2
IfEqualValue=0
IfEqualAction=!RainmeterMove [MoveRight1] [MoveDown1]
DynamicVariables=1
UpdateDivider=1

;=================================================================================================================================================

[MoveLeftCount1]
Measure=Calc
FormulaMoveLeftCount1+1)%((#Set1#-#Set2#)+1)
DynamicVariables=1
UpdateDivider=1

[MoveLeft1]
Measure=Calc
Formula=#Set1# - [MoveLeftCount1]
IfEqualValue=#Set2#
IfEqualAction=[!DisableMeasure MoveLeftCount1][!DisableMeasure MoveLeft1][!DisableMeasure MoveLeftAction01][!EnableMeasure MoveRightCount1][!EnableMeasure MoveRight1][!EnableMeasure MoveRightAction1]
DynamicVariables=1
UpdateDivider=1

[MoveLeftAction01]
Measure=Calc
Formula=Counter%2
IfEqualValue=0
IfEqualAction=!RainmeterMove [MoveLeft1] [MoveDown1]
DynamicVariables=1
UpdateDivider=1

;=================================================================================================================================================

[Square]
Meter=Image
SolidColor=0,0,255,255
W=100
H=100

[Text]
Meter=String
x=10r
y=10r
Text=Hello There!
FontColor=255,255,255,255

👍: 0 ⏩: 0

DeepKum [2013-06-07 00:41:28 +0000 UTC]

Loving this Zakycool. Great work buddy, really liked the Skin part...However unable to change colours?? Can you suggest to do so!

👍: 0 ⏩: 1

ZakycooL In reply to DeepKum [2013-06-07 02:16:29 +0000 UTC]

Thanks Glad you like it.

If you hover mouse on the skin, the setting button will appear. There you can change the color. It's on RGB.
0,0,0 = black
255,255,255 = white

👍: 0 ⏩: 0

almang45 [2013-06-04 17:46:50 +0000 UTC]

it's great and simple i think, but how to make it stop moving? i mean forever

👍: 0 ⏩: 1

ZakycooL In reply to almang45 [2013-06-07 02:18:19 +0000 UTC]

You have to edit the skin. Delete meters and measures that make it moving.

👍: 0 ⏩: 1

TechNoirIncognito In reply to ZakycooL [2013-06-23 13:25:53 +0000 UTC]

Where?

👍: 0 ⏩: 0

mxyoulmf [2013-04-23 10:56:12 +0000 UTC]

Thank you ~ ~ I would like to ask the picture is there to change???

👍: 0 ⏩: 1

ZakycooL In reply to mxyoulmf [2013-04-23 19:23:04 +0000 UTC]

I don't get it. Change what picture?

👍: 0 ⏩: 0

tibinthomas22 [2013-03-31 06:35:31 +0000 UTC]

nice work bro, love the glowing look.

👍: 0 ⏩: 1

ZakycooL In reply to tibinthomas22 [2013-03-31 11:00:39 +0000 UTC]

Thank you, bro
You can change the color into anything you want, it's customizable.

👍: 0 ⏩: 1

aizeah555 In reply to ZakycooL [2013-04-10 11:13:56 +0000 UTC]

*ZakycooL Again HAHAAH

👍: 0 ⏩: 1

ZakycooL In reply to aizeah555 [2013-04-12 08:59:01 +0000 UTC]

Hello there

👍: 0 ⏩: 1

aizeah555 In reply to ZakycooL [2013-04-23 04:59:26 +0000 UTC]

AWWW I DON'T VISIT DEVIANT ART TOO MUCH

👍: 0 ⏩: 1

ZakycooL In reply to aizeah555 [2013-04-23 23:28:18 +0000 UTC]

So do I

👍: 0 ⏩: 1

aizeah555 In reply to ZakycooL [2013-04-24 07:47:13 +0000 UTC]

LLOL AHAHAHHA

👍: 0 ⏩: 0

ZakycooL [2013-03-27 09:00:23 +0000 UTC]

Update the rmskin file. Simpler coding and lighter for cpu.

👍: 0 ⏩: 1

aizeah555 In reply to ZakycooL [2013-04-10 11:16:33 +0000 UTC]

THANKS ZAKY

👍: 0 ⏩: 0

BigDog3141 [2013-03-26 22:26:44 +0000 UTC]

Nice, but... how can I make it stop moving? Other than that, it's a very nice skin.

👍: 0 ⏩: 2

ZakycooL In reply to BigDog3141 [2013-03-28 04:17:10 +0000 UTC]

Update.
It now can stop moving. Thanks for the idea!

👍: 0 ⏩: 0

ZakycooL In reply to BigDog3141 [2013-03-26 23:34:11 +0000 UTC]

Thanks
I think of something to make it stop moving, maybe when cursor mouse over it...
I will add it later.

👍: 0 ⏩: 1

ajelliottjr In reply to ZakycooL [2013-04-04 21:50:54 +0000 UTC]

Thank you so much. Another Idea is to check on the current verison of Rainmeter and display it, Look forward to your next projects...

👍: 0 ⏩: 1

ZakycooL In reply to ajelliottjr [2013-04-05 21:03:13 +0000 UTC]

Thanks

👍: 0 ⏩: 0

blackeye-beast [2013-03-26 21:51:36 +0000 UTC]

very very nice, I like it

👍: 0 ⏩: 1

ZakycooL In reply to blackeye-beast [2013-03-26 23:28:47 +0000 UTC]

Thanks Glad you like it

👍: 0 ⏩: 0

ajelliottjr [2013-03-26 21:37:55 +0000 UTC]

puts me in a trace, but nice, so can I park it. ;0

👍: 0 ⏩: 0

ionstorm01 [2013-03-26 21:03:26 +0000 UTC]

Well done dude! Def a FAV!!!

👍: 0 ⏩: 1

ZakycooL In reply to ionstorm01 [2013-03-26 23:28:01 +0000 UTC]

Thank you, bro

👍: 0 ⏩: 0