Advertisement
Guest User

Untitled

a guest
Mar 11th, 2014
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.06 KB | None | 0 0
  1. ;Net.ini
  2.  
  3. ; Lines starting ; (semicolons) are commented out.
  4. ; That is, they do not affect the code and are here for demonstration purposes only.
  5. ; ----------------------------------
  6.  
  7. [Rainmeter]
  8. ; This section contains general settings that can be used to change how Rainmeter behaves.
  9. Author=Ahmed90
  10. AppVersion=1003000
  11. Update=1000
  12.  
  13.  
  14. [Variables]
  15. ; Variables declared here can be used later on between two # characters (e.g. #MyVariable#).
  16. fontName=Trebuchet MS
  17. textSize=8
  18. colorBar=235,170,0,255
  19. colorText=255,255,255,205
  20.  
  21.  
  22. ; Set maxDownload and maxUpload to your maximum download and upload speed in bits.
  23. ; To convert kilobits, megabits, kilobytes, and megabytes into bits, go to www.google.com
  24. ; and search for something like "10 megabytes in bits".
  25. maxDownload=20971520
  26. MaxUpload=1.049e+6
  27.  
  28.  
  29. colorBarUpload=141,198,63,255
  30. colorBarDownload=255,242,0,255
  31.  
  32. graphH=42
  33.  
  34. ; ----------------------------------
  35. ; MEASURES return some kind of value
  36. ; ----------------------------------
  37.  
  38. ;[measureIP]
  39. ; This measure returns your IP. WebParser measures are relatively complicated. If you're a beginner with
  40. ; Rainmeter, take a look at some of the other illustro skins before modifying this one.
  41. ;Measure=Plugin
  42. ;Plugin=WebParser.dll
  43. ;Url=http://checkip.dyndns.org
  44. ;UpdateRate=14400
  45. ;RegExp="(?siU)Address: (.*)</body>"
  46. ;StringIndex=1
  47. ;Substitute="":"N/A"
  48. ; Substitute works as follows: "A":"B" where A is a string to substitute and B is a string
  49. ; to substitute with. In this case, it substutes "" (i.e. empty) to N/A
  50.  
  51. [measureNetIn]
  52. Measure=NetIn
  53. NetInSpeed=#maxDownload#
  54. ; NetInSpeed must be set so your maximun download speed for the download bar to scale correctly
  55.  
  56. [measureNetOut]
  57. Measure=NetOut
  58. NetOutSpeed=#maxUpload#
  59.  
  60. ; ----------------------------------
  61. ; STYLES are used to "centralize" options
  62. ; ----------------------------------
  63.  
  64. [styleTitle]
  65. StringAlign=CENTER
  66. StringCase=UPPER
  67. StringEffect=SHADOW
  68. FontEffectColor=0,0,0,40
  69. FontColor=#colorText#
  70. FontFace=#fontName#
  71. FontSize=12
  72. AntiAlias=1
  73. ClipString=1
  74.  
  75. [styleLeftText]
  76. StringAlign=LEFT
  77. StringCase=NONE
  78. StringEffect=SHADOW
  79. FontEffectColor=0,0,0,40
  80. FontColor=#colorText#
  81. FontFace=#fontName#
  82. FontSize=#textSize#
  83. AntiAlias=1
  84. ClipString=1
  85.  
  86. [styleRightText]
  87. StringAlign=RIGHT
  88. StringCase=NONE
  89. StringEffect=SHADOW
  90. FontEffectColor=0,0,0,40
  91. FontColor=#colorText#
  92. FontFace=#fontName#
  93. FontSize=#textSize#
  94. AntiAlias=1
  95. ClipString=1
  96.  
  97. [styleBarUpload]
  98. BarColor=#colorBarUpload#
  99. BarOrientation=Vertical
  100. SolidColor=0,0,0,50
  101.  
  102.  
  103. [styleBarDownload]
  104. BarColor=#colorBarDownload#
  105. BarOrientation=Vertical
  106. SolidColor=0,0,0,50
  107.  
  108.  
  109. ; ----------------------------------
  110. ; METERS display images, text, bars, etc.
  111. ; ----------------------------------
  112.  
  113. [meterHeader]
  114. Meter=IMAGE
  115. ImageName=#SKINSPATH#\SystemInformation\img\Header.png
  116. X=0
  117. Y=0
  118. H=50
  119. W=180
  120.  
  121. [meterBody]
  122. Meter=IMAGE
  123. ImageName=#SKINSPATH#\SystemInformation\img\Body.png
  124. Tile=1
  125. X=0r
  126. Y=0R
  127. H=75
  128. W=180
  129.  
  130. ;[meterFooter]
  131. ;Meter=IMAGE
  132. ;ImageName=#SKINSPATH#\SystemInformation\img\Footer.png
  133. ;X=0
  134. ;Y=0R
  135. ;H=38
  136. ;W=180
  137.  
  138. [meterTitle]
  139. Meter=STRING
  140. MeterStyle=styleTitle
  141. X=90
  142. Y=15
  143. W=180
  144. H=30
  145. Text="Network"
  146.  
  147. [MeterLabelUpload]
  148. Meter=STRING
  149. MeterStyle=styleLeftText
  150. FontColor=#colorBarUpload#
  151. X=15
  152. Y=2R
  153. W=145
  154. H=14
  155. Text="Upload"
  156.  
  157. [MeterRamUpload]
  158. Meter=STRING
  159. MeterStyle=styleRightText
  160. MeasureName=measureNetOut
  161. X=140
  162. Y=0r
  163. W=145
  164. H=14
  165. Text="%1B |"
  166. Autoscale=1
  167. Numofdecimals=2
  168.  
  169. [MeterRamUploadPrec]
  170. Meter=STRING
  171. MeterStyle=styleRightText
  172. MeasureName=measureNetOut
  173. X=165
  174. Y=0r
  175. W=145
  176. H=14
  177. Text="%1%"
  178. Percentual=1
  179. Autoscale=1
  180.  
  181. [MeterLabelDownload]
  182. Meter=STRING
  183. MeterStyle=styleLeftText
  184. FontColor=#colorBarDownload#
  185. X=15
  186. Y=2R
  187. W=145
  188. H=14
  189. Text="Download"
  190.  
  191. [MeterDownload]
  192. Meter=STRING
  193. MeterStyle=styleRightText
  194. MeasureName=measureNetIn
  195. X=140
  196. Y=0r
  197. W=145
  198. H=14
  199. Text="%1B |"
  200. Autoscale=1
  201. Numofdecimals=2
  202.  
  203. [MeterDownloadPrec]
  204. Meter=STRING
  205. MeterStyle=styleRightText
  206. MeasureName=measureNetIn
  207. X=165
  208. Y=0r
  209. W=145
  210. H=14
  211. Text="%1%"
  212. Percentual=1
  213. Autoscale=1
  214.  
  215. [meterHLGraphBG]
  216. Meter=IMAGE
  217. ImageName=#SKINSPATH#\SystemInformation\img\Graphbg.png
  218. X=15
  219. Y=2R
  220. H=#graphH#
  221. W=125
  222.  
  223. [UploadGraphLine]
  224. Meter=Line
  225. MeasureName=measureNetOut
  226. LineColor=#colorBarUpload#
  227. MeterStyle=styleBarUpload
  228. X=1r
  229. Y=1r
  230. H=40
  231. W=123
  232. LineWidth=1
  233. LineCount=1
  234. AntiAlias=1
  235.  
  236. [DownloadGraphLine]
  237. Meter=Line
  238. MeasureName=measureNetIn
  239. LineColor=#colorBarDownload#
  240. MeterStyle=styleBarDownload
  241. X=1r
  242. Y=1r
  243. H=40
  244. W=123
  245. LineWidth=1
  246. LineCount=1
  247. AntiAlias=1
  248.  
  249. [meterHLBarCRam1BG]
  250. Meter=IMAGE
  251. ImageName=#SKINSPATH#\SystemInformation\img\CoreBG.png
  252. X=2R
  253. Y=-2r
  254. H=#graphH#
  255. W=12
  256.  
  257. [meterBarUpload]
  258. Meter=BAR
  259. MeterStyle=styleBarUpload
  260. MeasureName=measureNetOut
  261. X=0r
  262. Y=0r
  263. Barimage=#SKINSPATH#\SystemInformation\img\Core1f.png
  264. W=12
  265. H=#graphH#
  266.  
  267.  
  268. [meterHLBarCNet2BG]
  269. Meter=IMAGE
  270. ImageName=#SKINSPATH#\SystemInformation\img\CoreBG.png
  271. X=2R
  272. Y=0r
  273. H=#graphH#
  274. W=12
  275.  
  276. [meterBarDownload]
  277. Meter=BAR
  278. MeterStyle=styleBarDownload
  279. MeasureName=measureNetIn
  280. X=0r
  281. Y=0r
  282. Barimage=#SKINSPATH#\SystemInformation\img\Core2f.png
  283. W=12
  284. H=#graphH#
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement