Advertisement
Guest User

Feed.ini

a guest
Jul 18th, 2016
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.60 KB | None | 0 0
  1. ; Lines starting ; (semicolons) are commented out.
  2. ; That is, they do not affect the code and are here for demonstration purposes only.
  3. ; ----------------------------------
  4.  
  5. [Rainmeter]
  6. ; This section contains general settings that can be used to change how Rainmeter behaves.
  7. Author=FutureExabyte
  8. AppVersion=2000000
  9. Update=1000
  10. DynamicWindowSize=1
  11. BackgroundMode=2
  12. SolidColor=0,0,0,255
  13.  
  14. [Metadata]
  15. ; Contains basic information of the skin
  16. Description=Displays the latest entries of a RSS or Atom feed.
  17. License=Creative Commons BY-NC-SA 3.0
  18. Version=1.0.0
  19.  
  20. [Variables]
  21. ; Variables declared here can be used later on between two # characters (e.g. #MyVariable#).
  22. fontName=Trebuchet MS
  23. textSize=6
  24. colorBar=235,170,0,255
  25. colorText=255,255,255,205
  26. feedURL=http://content.warframe.com/dynamic/rss.php
  27. ItemGap=4r
  28. SeperatorGap=19r
  29. ItemHeight=18
  30. Item=(?(?=.*<Item>).*<item>.*<title>(.*)</title>)
  31. ; edit feedURL to change displayed feed
  32.  
  33. ; ----------------------------------
  34. ; MEASURES return some kind of value
  35. ; ----------------------------------
  36.  
  37. [measureFeed]
  38. ; WebParser measures are relatively complicated. If you're a beginner with
  39. ; Rainmeter, take a look at some of the other illustro skins before modifying this one.
  40. Measure=Plugin
  41. Plugin=WebParser.dll
  42. URL=#feedURL#
  43. RegExp=(?siU)<title>#Item##Item##Item##Item##Item##Item##Item##Item##Item##Item##Item#
  44. UpdateRate=300
  45. Substitute="":"N/A"
  46. Substitute="/Lotus/Language/Locations/":""
  47. ; Substitute works as follows: "A":"B" where A is a string to substitute and B is a string
  48. ; to substitute with. In this case, it substutes "" (i.e. empty) to N/A
  49.  
  50. ; The WebParser plugin requires a unique measure for every string index it returns that needs to be read.
  51. ; The RegExp parameter only needs to be specified once per URL.
  52.  
  53.  
  54. [measureItem1]
  55. Measure=Plugin
  56. Plugin=WebParser.dll
  57. Url=[measureFeed]
  58. StringIndex=1
  59. DecodeCharacterReference=1
  60. Substitute="/Lotus/Language/Locations/":""
  61.  
  62. [measureItem2]
  63. Measure=Plugin
  64. Plugin=WebParser.dll
  65. Url=[measureFeed]
  66. StringIndex=2
  67. DecodeCharacterReference=1
  68. Substitute="/Lotus/Language/Locations/":""
  69.  
  70. [measureItem3]
  71. Measure=Plugin
  72. Plugin=WebParser.dll
  73. Url=[measureFeed]
  74. StringIndex=3
  75. DecodeCharacterReference=1
  76. Substitute="/Lotus/Language/Locations/":""
  77.  
  78. [measureItem4]
  79. Measure=Plugin
  80. Plugin=WebParser.dll
  81. Url=[measureFeed]
  82. StringIndex=4
  83. DecodeCharacterReference=1
  84. Substitute="/Lotus/Language/Locations/":""
  85.  
  86. [measureItem5]
  87. Measure=Plugin
  88. Plugin=WebParser.dll
  89. Url=[measureFeed]
  90. StringIndex=5
  91. DecodeCharacterReference=1
  92. Substitute="/Lotus/Language/Locations/":""
  93.  
  94. [measureItem6]
  95. Measure=Plugin
  96. Plugin=WebParser.dll
  97. Url=[measureFeed]
  98. StringIndex=6
  99. DecodeCharacterReference=1
  100. Substitute="/Lotus/Language/Locations/":""
  101.  
  102. [measureItem7]
  103. Measure=Plugin
  104. Plugin=WebParser.dll
  105. Url=[measureFeed]
  106. StringIndex=7
  107. DecodeCharacterReference=1
  108. Substitute="/Lotus/Language/Locations/":""
  109.  
  110. [measureItem8]
  111. Measure=Plugin
  112. Plugin=WebParser.dll
  113. Url=[measureFeed]
  114. StringIndex=8
  115. DecodeCharacterReference=1
  116. Substitute="/Lotus/Language/Locations/":""
  117.  
  118. ; ----------------------------------
  119. ; STYLES are used to "centralize" options
  120. ; ----------------------------------
  121.  
  122. [styleTitle]
  123. StringAlign=CENTER
  124. StringCase=UPPER
  125. StringStyle=BOLD
  126. StringEffect=SHADOW
  127. FontEffectColor=0,0,0,50
  128. FontColor=#colorText#
  129. FontFace=#fontName#
  130. FontSize=10
  131. AntiAlias=1
  132. ClipString=1
  133.  
  134. [styleLeftText]
  135. StringAlign=LEFT
  136. ; Meters using styleLeftText will be left-aligned.
  137. StringCase=NONE
  138. StringStyle=BOLD
  139. StringEffect=SHADOW
  140. FontEffectColor=0,0,0,20
  141. FontColor=#colorText#
  142. FontFace=#fontName#
  143. FontSize=#textSize#
  144. AntiAlias=1
  145. ClipString=1
  146.  
  147. [styleCenter]
  148. StringAlign=Center
  149. ; Meters using styleLeftText will be left-aligned.
  150. StringCase=NONE
  151. StringStyle=BOLD
  152. StringEffect=SHADOW
  153. FontEffectColor=0,0,0,20
  154. FontColor=#colorText#
  155. FontFace=#fontName#
  156. FontSize=#textSize#
  157. AntiAlias=1
  158. ClipString=1
  159.  
  160.  
  161. [styleSeperator]
  162. SolidColor=255,255,255,15
  163.  
  164. ; ----------------------------------
  165. ; METERS display images, text, bars, etc.
  166. ; ----------------------------------
  167.  
  168. [meterBackground]
  169. Meter=IMAGE
  170. ImageName=#SKINSPATH#\illustro\SHARED\Background9Line.png
  171. X=0
  172. Y=0
  173.  
  174. [meterTitle]
  175. Meter=STRING
  176. MeterStyle=styleTitle
  177. ; Using MeterStyle=styleTitle will basically "copy" the contents
  178. ; of the [styleTitle] section here during runtime.
  179. X=100
  180. Y=12
  181. W=190
  182. H=18
  183. Text="Warframe Alerts"
  184.  
  185. [meterItem1]
  186. Meter=STRING
  187. MeterStyle=styleCenter
  188. MeasureName=measureItem1
  189. Clipstring=2
  190. X=100
  191. Y=40
  192. W=190
  193. H=#ItemHeight#
  194. ClipstringH=#ItemHeight#
  195. ClipstringW=190
  196. Text="%1"
  197.  
  198. [meterSeperator1]
  199. Meter=IMAGE
  200. MeterStyle=styleSeperator
  201. X=10
  202. Y=#SeperatorGap#
  203. W=190
  204. H=1
  205.  
  206. [meterItem2]
  207. Meter=STRING
  208. MeterStyle=styleCenter
  209. MeasureName=measureItem2
  210. Clipstring=2
  211. X=100
  212. Y=#ItemGap#
  213. W=190
  214. H=#ItemHeight#
  215. ClipstringH=#ItemHeight#
  216. ClipstringW=190
  217. Text="%1"
  218.  
  219. [meterSeperator2]
  220. Meter=IMAGE
  221. MeterStyle=styleSeperator
  222. X=10
  223. Y=#SeperatorGap#
  224. W=190
  225. H=1
  226.  
  227. [meterItem3]
  228. Meter=STRING
  229. MeterStyle=styleCenter
  230. MeasureName=measureItem3
  231. Clipstring=2
  232. X=100
  233. Y=#ItemGap#
  234. W=190
  235. H=#ItemHeight#
  236. ClipstringH=#ItemHeight#
  237. ClipstringW=190
  238. Text="%1"
  239.  
  240. [meterSeperator3]
  241. Meter=IMAGE
  242. MeterStyle=styleSeperator
  243. X=10
  244. Y=#SeperatorGap#
  245. W=190
  246. H=1
  247.  
  248. [meterItem4]
  249. Meter=STRING
  250. MeterStyle=styleCenter
  251. MeasureName=measureItem4
  252. Clipstring=2
  253. X=100
  254. Y=#ItemGap#
  255. W=190
  256. H=#ItemHeight#
  257. ClipstringH=#ItemHeight#
  258. ClipstringW=190
  259. Text="%1"
  260.  
  261. [meterSeperator4]
  262. Meter=IMAGE
  263. MeterStyle=styleSeperator
  264. X=10
  265. Y=#SeperatorGap#
  266. W=190
  267. H=1
  268.  
  269. [meterItem5]
  270. Meter=STRING
  271. MeterStyle=styleCenter
  272. MeasureName=measureItem5
  273. Clipstring=2
  274. X=100
  275. Y=#ItemGap#
  276. W=190
  277. H=#ItemHeight#
  278. ClipstringH=#ItemHeight#
  279. ClipstringW=190
  280. Text="%1"
  281.  
  282. [meterSeperator5]
  283. Meter=IMAGE
  284. MeterStyle=styleSeperator
  285. X=10
  286. Y=#SeperatorGap#
  287. W=190
  288. H=1
  289.  
  290. [meterItem6]
  291. Meter=STRING
  292. MeterStyle=styleCenter
  293. MeasureName=measureItem6
  294. Clipstring=2
  295. X=100
  296. Y=#ItemGap#
  297. W=190
  298. H=#ItemHeight#
  299. ClipstringH=#ItemHeight#
  300. ClipstringW=190
  301. Text="%1"
  302.  
  303. [meterSeperator6]
  304. Meter=IMAGE
  305. MeterStyle=styleSeperator
  306. X=10
  307. Y=#SeperatorGap#
  308. W=190
  309. H=1
  310.  
  311. [meterItem7]
  312. Meter=STRING
  313. MeterStyle=styleCenter
  314. MeasureName=measureItem7
  315. Clipstring=2
  316. X=100
  317. Y=#ItemGap#
  318. W=190
  319. H=#ItemHeight#
  320. ClipstringH=#ItemHeight#
  321. ClipstringW=190
  322. Text="%1"
  323.  
  324. [meterSeperator7]
  325. Meter=IMAGE
  326. MeterStyle=styleSeperator
  327. X=10
  328. Y=#SeperatorGap#
  329. W=190
  330. H=1
  331.  
  332. [meterItem8]
  333. Meter=STRING
  334. MeterStyle=styleCenter
  335. MeasureName=measureItem8
  336. Clipstring=2
  337. X=100
  338. Y=#ItemGap#
  339. W=190
  340. H=#ItemHeight#
  341. ClipstringH=#ItemHeight#
  342. ClipstringW=190
  343. Text="%1"
  344.  
  345. [meterSeperator8]
  346. Meter=IMAGE
  347. MeterStyle=styleSeperator
  348. X=10
  349. Y=#SeperatorGap#
  350. W=190
  351. H=1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement