It is currently May 1st, 2024, 3:04 pm

S Shaped Bar

Get help with creating, editing & fixing problems with skins
User avatar
Punisher386
Posts: 27
Joined: November 23rd, 2011, 4:18 pm
Location: Boaz, Al

S Shaped Bar

Post by Punisher386 »

I have seen it around but i have no idea where to start in creating this s shaped bar ( for cpu, mem, ram, hdds). If any one could help me get started i thank you so much.
User avatar
smurfier
Moderator
Posts: 1931
Joined: January 29th, 2010, 1:43 am
Location: Willmar, MN

Re: S Shaped Bar

Post by smurfier »

Code: Select all

[Calc]
Measure=Calc
Formula=Calc%100+5

[Calc1]
Measure=Calc
Formula=Calc
MaxValue=50

[Calc2]
Measure=Calc
Formula=Calc
MinValue=50
MaxValue=100

[Round1]
Meter=Roundline
MeasureName=Calc1
LineColor=255,255,255,255
StartAngle=-1.570796326795
RotationAngle=-3.14159265359
Solid=1
AntiAlias=1
LineLength=20
LineStart=15
H=40
W=40

[Round2]
Meter=Roundline
MeterStyle=Round1
MeasureName=Calc2
RotationAngle=3.14159265359
Y=-5R
GitHub | DeviantArt | Tumblr
This is the song that never ends. It just goes on and on my friends. Some people started singing it not knowing what it was, and they'll continue singing it forever just because . . .
User avatar
Punisher386
Posts: 27
Joined: November 23rd, 2011, 4:18 pm
Location: Boaz, Al

Re: S Shaped Bar

Post by Punisher386 »

Thank you sop so very much. ill have to post what i get done with it. thank you again.
User avatar
Punisher386
Posts: 27
Joined: November 23rd, 2011, 4:18 pm
Location: Boaz, Al

Re: S Shaped Bar

Post by Punisher386 »

Here is what i have now. It is working just has no background.

If anyone has ideas on how to improve it can you please let me know.

Code: Select all

[Rainmeter]
Update=500


[Style]
FontSize=10
StringStyle=Normal
StringAlign=right
FontFace=Segoe UI
FontColor=255,255,255
AntiAlias=1

[Style2]
FontSize=10
StringStyle=Normal
StringAlign=right

FontFace=Segoe UI
FontColor=255,205,0
AntiAlias=1

[MeasureRAM]
Measure=PhysicalMemory

[MeasureRAM2]
Measure=PhysicalMemory
InvertMeasure=1

 
[Calc]
Measure=Calc
Formula=Calc%100+5

[CPU]
Measure=CPU
Formula=Calc
MaxValue=50

[CPU2]
Measure=CPU
Formula=Calc
MinValue=50
MaxValue=100

[Round1]
Meter=Roundline
MeasureName=CPU
LineColor=255,255,255,255
StartAngle=-1.570796326795
RotationAngle=-3.14159265359
Solid=1
AntiAlias=1
LineLength=20
LineStart=15
H=40
W=40

[Round2]
Meter=Roundline
MeterStyle=Round1
MeasureName=CPU2
RotationAngle=3.14159265359
Y=-5R


[RAM]
Meter=string
MeterStyle=Style2
StringAlign=center
FontSize=10
X=30
Y=5
Text=RAM
LeftMouseDownAction=!Execute ["taskmgr.exe"]

[RAMtotalText]
MeasureName=MeasureRAM
Meter=STRING
MeterStyle=Style
FontSize=10
X=80
Y=17
Text="Used :%1"
AutoScale=1
User avatar
smurfier
Moderator
Posts: 1931
Joined: January 29th, 2010, 1:43 am
Location: Willmar, MN

Re: S Shaped Bar

Post by smurfier »

  • Are you aware that Update=500 is twice per second?
  • Measure=CPU does not utilize Formula.
  • You might as well get rid of the [Calc] measures.
GitHub | DeviantArt | Tumblr
This is the song that never ends. It just goes on and on my friends. Some people started singing it not knowing what it was, and they'll continue singing it forever just because . . .
User avatar
Punisher386
Posts: 27
Joined: November 23rd, 2011, 4:18 pm
Location: Boaz, Al

Re: S Shaped Bar

Post by Punisher386 »

Revised

Code: Select all

[Rainmeter]
Author=prelude386@yahoo.com
Update=1000

[Background]
Meter=IMAGE
X=0
Y=0
ImageName=bg.png


[Style]
FontSize=10
StringStyle=Normal
StringAlign=right
FontFace=Segoe UI
FontColor=255,255,255
AntiAlias=1

[Style2]
FontSize=10
StringStyle=Normal
StringAlign=right

FontFace=Segoe UI
FontColor=255,205,0
AntiAlias=1

[MeasureCPU]
Measure=CPU

[MeasureCPU2]
Measure=CPU
InvertMeasure=1

 
[CPU]
Measure=CPU
Formula=Calc
MaxValue=50

[CPU2]
Measure=CPU
Formula=Calc
MinValue=50
MaxValue=100

[Round1]
Meter=Roundline
MeasureName=CPU
LineColor=255,255,255,255
StartAngle=-1.570796326795
RotationAngle=-3.14159265359
Solid=1
AntiAlias=1
LineLength=20
LineStart=15
H=40
W=40

[Round2]
Meter=Roundline
MeterStyle=Round1
MeasureName=CPU2
RotationAngle=3.14159265359
Y=-5R


[MeterCPU]
Meter=string
MeterStyle=Style
StringAlign=center
FontSize=10
X=30
Y=6
Text="CPU"

[CPUtotalText]
MeasureName=MeasureCPU
Meter=STRING
MeterStyle=Style
FontSize=10
X=70
Y=20
Text="%1"
AutoScale=1