It is currently March 28th, 2024, 8:39 am

ForceX System Monitor v3.0.6(Feb-20-2013)

A package of skins with a "theme" or by a single author
User avatar
ForceX
Posts: 100
Joined: January 16th, 2010, 10:32 pm

Re: ForceX System Monitor 1.21 (Jan-23-2010)

Post by ForceX »

LOL glad you got it working WhoIsClu :))


The system monitor is now on deviantart @ http://forcex34.deviantart.com/art/ForceX-System-Monitor-V1-21-158723660
User avatar
maminscris
Posts: 509
Joined: April 24th, 2009, 3:17 pm
Location: Bucharest, Romania Lat 44,43° Lon 26,1°
Contact:

Re: ForceX System Monitor 1.21 (Jan-23-2010)

Post by maminscris »

ForceX wrote:LOL glad you got it working WhoIsClu :))


The system monitor is now on deviantart @ http://forcex34.deviantart.com/art/ForceX-System-Monitor-V1-21-158723660
thanks, now one question, do I have the approval to submit your skin for SOTM
User avatar
ForceX
Posts: 100
Joined: January 16th, 2010, 10:32 pm

Re: ForceX System Monitor 1.21 (Jan-23-2010)

Post by ForceX »

maminscris wrote: thanks, now one question, do I have the approval to submit your skin for SOTM

Absolutely.. And I thank you so much for your support! :)
deanlewandowski
Posts: 1
Joined: March 31st, 2010, 5:33 pm

Re: ForceX System Monitor 1.21 (Jan-23-2010)

Post by deanlewandowski »

Love this!
Would it be possible to also monitor the temps of the CPU as well?

Im not sure if rainmeter can do this as I am a complete noob...
Not sure if you would need additional program installed etc, but any info would help!
I was thinking to put it just below the CPU usage bars.

Thanks for any info I can get!
User avatar
maminscris
Posts: 509
Joined: April 24th, 2009, 3:17 pm
Location: Bucharest, Romania Lat 44,43° Lon 26,1°
Contact:

Re: ForceX System Monitor 1.21 (Jan-23-2010)

Post by maminscris »

deanlewandowski wrote:Love this!
Would it be possible to also monitor the temps of the CPU as well?

Im not sure if rainmeter can do this as I am a complete noob...
Not sure if you would need additional program installed etc, but any info would help!
I was thinking to put it just below the CPU usage bars.

Thanks for any info I can get!
here no program of course this is beta, but on my machine is working
http://forum.rainmeter.net/viewtopic.php?f=18&t=871&start=40#p21392 read from this page to the last
User avatar
ForceX
Posts: 100
Joined: January 16th, 2010, 10:32 pm

Re: ForceX System Monitor 1.21 (Jan-23-2010)

Post by ForceX »

This is something i can look into if rainmeter supports this. You'll probably need another software running for rainmeter to pull the temp values from.
Dark_Wizard
Posts: 38
Joined: August 29th, 2009, 11:38 am
Location: Denver, NC

Re: ForceX System Monitor 1.21 (Jan-23-2010)

Post by Dark_Wizard »

x2 on the cpu temp maybe using speedfan? Can you have it so we can display this horizontally as well? Lastly, a transparent skin would also rock.

Edit: Last thing I promise...how about the drive space changing colors if the used space is let's say above 90%. I can help with that if you want.

Great job and loving this very much!
User avatar
ForceX
Posts: 100
Joined: January 16th, 2010, 10:32 pm

Re: ForceX System Monitor 1.21 (Jan-23-2010)

Post by ForceX »

Dark_Wizard wrote:x2 on the cpu temp maybe using speedfan? Can you have it so we can display this horizontally as well? Lastly, a transparent skin would also rock.

Edit: Last thing I promise...how about the drive space changing colors if the used space is let's say above 90%. I can help with that if you want.

Great job and loving this very much!
1. Transparent Skin:
This is something that can actual be done quite easily. Open up the settings.inc file and edit the color values.

Current color settings are:

;White
color1=255, 255, 255, 255

;Dark Grey
color2=20, 20, 20, 255

;Black
color3=0, 0, 0, 255

;Blue
color4=0, 100, 175, 255

;Blue Dark
Color5=0, 50, 100, 100

;Green
color6=0, 200, 0, 200

;Green Dark
color7=0, 200, 0, 100

;Title Bar Fill
color8=0, 5, 12, 255

;Title Bar Outline
color9=50, 50, 50, 255

;Message Body
color10=0, 0, 0, 255

;Font 1
font1=255, 255, 255, 200


So what is this telling you? It's broken up into 4 sections.

red, green, blue, alpha or 255, 255, 255, 255

the values range from
0 - 255. where 0 = %0 and 255 = %100

The last set of numbers is your alpha or your transparency. setting this to 0 will make the skin completely transparent. While 255 will make the skin completely solid.

To make the main body transparent you only need to find and edit the following:

;Title Bar Fill
color8=0, 5, 12, 255

;Title Bar Outline
color9=50, 50, 50, 255

;Message Body
color10=0, 0, 0, 255

and change the last numbers to something closer to 0. If you want it to be completely transparent then change all numbers to 0.



2. Drive Space changing colors.
This is a great idea. Is there some code in rainmeter that can change the color value based on a cretin condition being met?




3. CPU Temps.
I'm looking at the plugin that maminscris posted a link to in this thread. It should be able to be graphed out just like every thing else i think.
Dark_Wizard
Posts: 38
Joined: August 29th, 2009, 11:38 am
Location: Denver, NC

Re: ForceX System Monitor 1.21 (Jan-23-2010)

Post by Dark_Wizard »

ForceX wrote: 2. Drive Space changing colors.
This is a great idea. Is there some code in rainmeter that can change the color value based on a cretin condition being met?

3. CPU Temps.
I'm looking at the plugin that maminscris posted a link to in this thread. It should be able to be graphed out just like every thing else i think.
I think since you are using perfmon to grab drive stats you should be able to get a percentage of used space versus overall disk space and change the color if the used space is above let's say 90%. I did find someone who did a battery one that does change colors based on percentage of charge and you can see it here.

BTW, I did know about the transparent background but did have issues and didn't realize why it wasn't working until I looked closer at the colors to find this:

color10=color8=0, 0, 0, 255

should be this:
color10=0, 0, 0, 255

also, your numbers need to be spaced more in the swap file section so I changed the following in the System_Monitor.ini I am using to:

Prefix="Used: "
Prefix="Free: "
Prefix="Total: "

I added the space after the :

lastly, I found the WinRing0X64...... check your other post requesting it. ;)
User avatar
ForceX
Posts: 100
Joined: January 16th, 2010, 10:32 pm

Re: ForceX System Monitor 1.21 (Jan-23-2010)

Post by ForceX »

Dark_Wizard

color10=color8=0, 0, 0, 255 OOPS

Thanks for finding this. It should just read: color10=0,0,0,255

I'll release a fix once i get the bar color included.

I'll also be looking into your other suggestions. Thanks so much for your input i relay appreciate it. :)
Post Reply