Advertisement
Guest User

Untitled

a guest
Mar 11th, 2014
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.27 KB | None | 0 0
  1. ;TopProcesses.ini
  2. ; Lines starting ; (semicolons) are commented out.
  3. ; That is, they do not affect the code and are here for demonstration purposes only.
  4. ; ----------------------------------
  5.  
  6. [Rainmeter]
  7. ; This section contains general settings that can be used to change how Rainmeter behaves.
  8. Author=Ahmed90
  9. AppVersion=1003000
  10. Update=1000
  11.  
  12.  
  13. [Variables]
  14. ; Variables declared here can be used later on between two # characters (e.g. #MyVariable#).
  15. fontName=Trebuchet MS
  16. textSize=8
  17. colorBar=235,170,0,255
  18. colorText=255,255,255,205
  19.  
  20. ; ----------------------------------
  21. ; MEASURES return some kind of value
  22. ; ----------------------------------
  23.  
  24. [MeasureTopCPU]
  25. Measure=Plugin
  26. Plugin=TopProcesses.dll
  27.  
  28. ; Indicates if this init entry should re-look at the process list
  29. ; 1 = Yes, 0 = No
  30. ; If you do more than one config entry, only ONE needs to do the ReQuery
  31. ReQuery=1
  32.  
  33. ; Pipe-delimited processess to exclude from the list (can handle wildcards, use the % or * character)
  34. ; GlobalIgnoredProcesses is MORE efficient than SpecificIgnoredProcesses as it filters globally (at the Perfmon query)
  35. ; If you use GlobalIgnoredProcesses to filter, processes will be excluded from all measures using the TopProcesses plugin
  36. ; GlobalIgnoredProcesses will only be applied to the measure with ReQuery=1
  37. GlobalIgnoredProcesses=Idle|%Total|rundll32|wscript|userinit
  38.  
  39. ; Pipe-delimited processess to exclude from the list (can handle wildcards, use the % or * character)
  40. ; SpecificIgnoredProcesses is LESS efficient than GlobalIgnoredProcesses as it filters per measure.
  41. ; The processes below will ONLY be filtered for MeasureTopCPU
  42. ; SpecificIgnoredProcesses can be used on any measure, regardless of ReQuery value
  43. SpecificIgnoredProcesses=Rainmeter|svchost*
  44.  
  45. ; Metric for which to determine top processes (CPU or Memory)
  46. MetricType=CPU
  47.  
  48. ; The top processes to find can be a single number (e.g. 0 = top one process) or a range (0-4 = top five processes)
  49. ProcNums=0-4
  50.  
  51. ; Format in which to return the results... any string including the following keys: %pName %pID %CPU %Memory
  52. ; You can also get a substring of a key; e.g. to trim the name to 8 chars use this format: s(%pName,0,7)
  53. Format="%CPU%: s(%pName,0,20)"
  54.  
  55. ; A multiple of update timespans to actually perform the update (see http://rainmeter.net/RainCMS/?q=TipsAndTricksUpdate).
  56. ; Setting UpdateDivider on the Measure with ReQuery=1 will also delay the update of other measures using the TopProcesses plugin
  57. UpdateDivider=5
  58.  
  59.  
  60. [MeasureTopMem]
  61. Measure=Plugin
  62. Plugin=TopProcesses.dll
  63. ReQuery=0
  64. SpecificIgnoredProcesses=
  65. MetricType=Memory
  66. ProcNums=0-4
  67. Format="%Memory: s(%pName,0,14)"
  68.  
  69.  
  70. ; ----------------------------------
  71. ; STYLES are used to "centralize" options
  72. ; ----------------------------------
  73.  
  74. [styleTitle]
  75. StringAlign=CENTER
  76. StringCase=UPPER
  77. StringEffect=SHADOW
  78. FontEffectColor=0,0,0,40
  79. FontColor=#colorText#
  80. FontFace=#fontName#
  81. FontSize=12
  82. AntiAlias=1
  83. ClipString=1
  84.  
  85. [styleLeftText]
  86. StringAlign=LEFT
  87. StringCase=NONE
  88. StringEffect=SHADOW
  89. FontEffectColor=0,0,0,40
  90. FontColor=#colorText#
  91. FontFace=#fontName#
  92. FontSize=#textSize#
  93. AntiAlias=1
  94. ClipString=0
  95.  
  96. [styleRightText]
  97. StringAlign=RIGHT
  98. StringCase=NONE
  99. StringEffect=SHADOW
  100. FontEffectColor=0,0,0,40
  101. FontColor=#colorText#
  102. FontFace=#fontName#
  103. FontSize=#textSize#
  104. AntiAlias=1
  105. ClipString=1
  106.  
  107. ; ----------------------------------
  108. ; METERS display images, text, bars, etc.
  109. ; ----------------------------------
  110.  
  111. [meterHeader]
  112. Meter=IMAGE
  113. ImageName=#SKINSPATH#\SystemInformation\img\Header.png
  114. X=0
  115. Y=0
  116. H=50
  117. W=180
  118.  
  119. [meterBody]
  120. Meter=IMAGE
  121. ImageName=#SKINSPATH#\SystemInformation\img\Body.png
  122. Tile=1
  123. X=0r
  124. Y=0R
  125. H=165
  126. W=180
  127.  
  128. ;[meterFooter]
  129. ;Meter=IMAGE
  130. ;ImageName=#SKINSPATH#\SystemInformation\img\Footer.png
  131. ;X=0
  132. ;Y=0R
  133. ;H=38
  134. ;W=180
  135.  
  136. [meterTitle]
  137. Meter=STRING
  138. MeterStyle=styleTitle
  139. X=90
  140. Y=15
  141. W=180
  142. H=20
  143. Text="Top Processes"
  144.  
  145. [MeterLabelByCPU]
  146. Meter=STRING
  147. MeterStyle=styleLeftText
  148. X=15
  149. Y=15R
  150. W=145
  151. H=14
  152. Text="By CPU Usage"
  153.  
  154.  
  155.  
  156. [TopCPUText]
  157. Meter=String
  158. MeterStyle=styleLeftText
  159. MeasureName=MeasureTopCPU
  160. X=15
  161. Y=0R
  162. W=200
  163.  
  164. [MeterLabelByRam]
  165. Meter=STRING
  166. MeterStyle=styleLeftText
  167. X=15
  168. Y=5R
  169. W=145
  170. H=14
  171. Text="By RAM Usage"
  172.  
  173.  
  174.  
  175. [TopMemText]
  176. Meter=String
  177. MeterStyle=styleLeftText
  178. MeasureName=MeasureTopMem
  179. X=15
  180. Y=0R
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement