Hi Guys
I'm using rainmeter and have a network meter that is measuring transfer in kB/s however I would like to change this to kbps. I know its just as easy as x8 but would like it to display in kbps and/or Mbps and decimal places.
Any advice much appreciated
This is what I have at present
Code:
[Variables]
skin.Style=Horizontal
@Include=#ROOTCONFIGPATH#SETTINGS\Variables.inc
skin.Width=#width.Network#
; MEASURES ====================================
[mIP]
Measure=Plugin
Plugin=WebParser.dll
URL=http://checkip.dyndns.org
RegExp="(?siU)<body>.*Address: (.*)</body>"
StringIndex=1
UpdateRate=14400
[mDownload]
Measure=NetIn
MinValue=0
MaxValue=#network.MaxDown#
[mUpload]
Measure=NetOut
MinValue=0
MaxValue=#network.MaxUp#
[mTotalDownload]
Measure=NetIn
Cumulative=1
[mTotalUpload]
Measure=NetOut
Cumulative=1
; STYLES ======================================
@Include2=#ROOTCONFIGPATH#SETTINGS\Style#skin.Style#.inc
[sPopup]
Hidden=0
[sTextL]
Hidden=0
[sTextR]
NumOfDecimals=0
AutoScale=1
Text="%1B"
Hidden=0
[sSeperator]
Hidden=0
; METERS ======================================
[Line]
Meter=IMAGE
MeterStyle=sLine
[Icon]
Meter=IMAGE
MeterStyle=sIcon
ImageName=Network.png
LeftMouseUpAction=!Execute [control.exe ncpa.cpl]
RightMouseUpAction=!Execute [!RainmeterResetStats]
ToolTipText="Open Network Connections (right-click to reset)"
MouseActionCursor=1
[Title]
Meter=STRING
MeterStyle=sTitle
Text=Network
[Subtitle]
Meter=STRING
MeterStyle=sSubtitle
MeasureName=mIP
[Popup]
Meter=IMAGE
MeterStyle=sPopup
H=((#h.Other#*4)+25)
[Item1Label]
Meter=STRING
MeterStyle=sTextL
Y=#h.Item#
Text="Upload"
[Item1Value]
Meter=STRING
MeterStyle=sTextR
MeasureName=mUpload
[Item1Bar]
Meter=BAR
MeterStyle=sSeperator
MeasureName=mUpload
[Item2Label]
Meter=STRING
MeterStyle=sTextL
Y=5r
Text="Download"
[Item2Value]
Meter=STRING
MeterStyle=sTextR
MeasureName=mDownload
[Item2Bar]
Meter=BAR
MeterStyle=sSeperator
MeasureName=mDownload
[Item3Label]
Meter=STRING
MeterStyle=sTextL
Y=5r
Text="Total Upload"
[Item3Value]
Meter=STRING
MeterStyle=sTextR
MeasureName=mTotalUpload
[Item3Bar]
Meter=IMAGE
MeterStyle=sSeperator
[Item4Label]
Meter=STRING
MeterStyle=sTextL
Y=5r
Text="Total Download"
[Item4Value]
Meter=STRING
MeterStyle=sTextR
MeasureName=mTotalDownload
[Item4Bar]
Meter=IMAGE
MeterStyle=sSeperator
[Gap]
Meter=IMAGE
MeterStyle=sGap
Danny