Teleclast

Stuff

Feb 5th, 2016
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.58 KB | None | 0 0
  1. [Rainmeter]
  2. Update=250
  3. MouseOverAction=[!ShowMeterGroup Hover][!ShowMeterGroup #stowAwayName#][!UpdateMeter *][!Redraw]
  4. MouseLeaveAction=[!HideMeterGroup Hover][!HideMeterGroup #stowAwayName#][!UpdateMeter *][!Redraw]
  5. Author=Redsaph
  6.  
  7. [Metadata]
  8. Name=Cleartext
  9. Author=Redsaph
  10. Description=Displays track information from various media players.
  11. Version=2.6
  12. License=Creative Commons BY-NC-SA 3.0
  13.  
  14. [Variables]
  15. @include=#@#variables.inc
  16. @include2=#@#color.inc
  17.  
  18. ; #####################
  19. ; # SHIT I ADDED # requires Group=Music on stuff you want to hide
  20. ; #####################
  21.  
  22. [IsPlaying]
  23. Measure=Plugin
  24. Plugin=SpotifyPlugin.dll
  25. Type=Playing
  26. IfEqualValue=0
  27. IfEqualAction=[!HideMeterGroup "Music"]
  28. IfAboveValue=0
  29. IfAboveAction=[!ShowMeterGroup "Music"]
  30.  
  31. [MeasureProcess]
  32. Measure=Plugin
  33. Plugin=Process
  34. ProcessName=Spotify.exe
  35. IfEqualValue=-1
  36. IfEqualAction=[!HideMeterGroup "Music"]
  37.  
  38. ; ##### COLOR EXTRACT #####
  39.  
  40. [ChameleonDesktop]
  41. Measure=Plugin
  42. Plugin=Chameleon
  43. Type=Desktop
  44.  
  45. [DesktopFG1]
  46. Measure=Plugin
  47. Plugin=Chameleon
  48. Parent=ChameleonDesktop
  49. Color=Foreground1
  50.  
  51. [DesktopFG2]
  52. Measure=Plugin
  53. Plugin=Chameleon
  54. Parent=ChameleonDesktop
  55. Color=Foreground2
  56.  
  57. [DesktopBG1]
  58. Measure=Plugin
  59. Plugin=Chameleon
  60. Parent=ChameleonDesktop
  61. Color=Background1
  62.  
  63. [DesktopBG2]
  64. Measure=Plugin
  65. Plugin=Chameleon
  66. Parent=ChameleonDesktop
  67. Color=Background2
  68.  
  69. ; # END OF MY SHIT
  70.  
  71. [M-Player]
  72. Measure=Plugin
  73. Plugin=NowPlaying.dll
  74. PlayerName=Spotify
  75. PlayerType=TITLE
  76.  
  77. [M-Title]
  78. Measure=Plugin
  79. Plugin=SpotifyPlugin.dll
  80. Type=TrackName
  81. Substitute="":""
  82.  
  83. [M-Artist]
  84. Measure=Plugin
  85. Plugin=SpotifyPlugin.dll
  86. Type=ArtistName
  87. Substitute="":" "
  88.  
  89. [M-Album]
  90. Measure=Plugin
  91. Plugin=SpotifyPlugin.dll
  92. Type=AlbumName
  93. Substitute="":" "
  94.  
  95. [M-Position]
  96. Measure=Plugin
  97. Plugin=SpotifyPlugin.dll
  98. Type=Position
  99.  
  100. [M-Progress]
  101. Measure=Plugin
  102. Plugin=SpotifyPlugin.dll
  103. Type=Progress
  104. Decimals=0
  105.  
  106. [M-Length]
  107. Measure=Plugin
  108. Plugin=SpotifyPlugin.dll
  109. Type=Length
  110.  
  111. [M-StateButton]
  112. Measure=Plugin
  113. Plugin=SpotifyPlugin.dll
  114. Type=Playing
  115. Substitute="0":"play","1":"pause","2":"play"
  116.  
  117. [M-StateFade]
  118. Measure=Plugin
  119. Plugin=Process
  120. ProcessName=Spotify.exe
  121. IfBelowValue=1
  122. IfBelowAction=[!HideFade]
  123. IfAboveValue=0
  124. IfAboveAction=[!ShowFade]
  125. Disabled=#fadeDisabled#
  126.  
  127. [M-Position]
  128. Measure=Plugin
  129. Plugin=SpotifyPlugin.dll
  130. Type=Position
  131.  
  132. [LuaTopText]
  133. Measure=Script
  134. ScriptFile=#@#Marquee.lua
  135. Text=[#topText#]
  136. Variable=Text
  137. Width=21
  138.  
  139. [LuaBottomText]
  140. Measure=Script
  141. ScriptFile=#@#Marquee.lua
  142. Text=[#bottomText#]
  143. Variable=Text
  144. Width=19
  145.  
  146.  
  147. ; STYLES ==========================================
  148. [styleTextControls]
  149. FontFace=Gibson
  150. FontSize=(#Size#*0.027)
  151. AntiAlias=1
  152. FontColor=#translucent#
  153. StringAlign=Right
  154. DynamicVariables=1
  155. Group=Hover
  156. MouseActionCursor=1
  157.  
  158. [styleTextMini]
  159. FontFace=Gibson
  160. FontSize=(#Size#*0.0175)
  161. AntiAlias=1
  162. FontColor=[DesktopFG2]
  163. StringAlign=Right
  164. DynamicVariables=1
  165. Group=Hover
  166.  
  167. [styleTextMajor]
  168. W=(#Size#*0.75)
  169. H=(#Size#*0.085)
  170. FontSize=(#Size#*0.0625)
  171. FontColor=[DesktopFG1]
  172. DynamicVariables=1
  173. AntiAlias=1
  174. StringAlign=Left
  175.  
  176. ; =================================================
  177. ; Meters
  178.  
  179. [Background]
  180. Meter=Image
  181. X=0
  182. Y=0
  183. W=#Size#+(#Size#*0.09)
  184. H=(#Size#*0.25)
  185. SolidColor=[DesktopBG1]2A
  186. DynamicVariables=1
  187. UpdateDivider=-1
  188.  
  189.  
  190. [Now]
  191. Meter=String
  192. Text=Now
  193. StringCase=Upper
  194. StringAlign=Right
  195. FontSize=(#Size#*0.03)
  196. FontColor=[DesktopFG2]
  197. DynamicVariables=1
  198. X=(#Size#*0.19)
  199. Y=(#Size#*0.09)
  200. AntiAlias=1
  201. FontFace=Gibson
  202. UpdateDivider=-1
  203. Hidden=#stowAway#
  204. Group=Stow | Music
  205.  
  206. [Playing]
  207. Meter=String
  208. Text=Playing
  209. StringCase=Upper
  210. StringAlign=Right
  211. FontSize=(#Size#*0.03)
  212. FontColor=[DesktopFG2]
  213. DynamicVariables=1
  214. X=r
  215. Y=(#Size#*0.125)
  216. AntiAlias=1
  217. FontFace=Gibson
  218. UpdateDivider=-1
  219. Hidden=#stowAway#
  220. Group=Stow | Music
  221.  
  222. [Hairline]
  223. Meter=Bar
  224. MeasureName=M-Progress
  225. X=(#Size#*0.2075)
  226. W=(#Size#*0.005)
  227. H=(#Size#*0.25)
  228. BarColor=[DesktopFG2]
  229. SolidColor=[DesktopBG2]
  230. DynamicVariables=1
  231. BarOrientation=Vertical
  232. ToolTipText="Progress Bar"
  233. UpdateDivider=4
  234. Hidden=#stowAway#
  235. Group=Stow
  236.  
  237. [TopText]
  238. Meter=String
  239. MeterStyle=styleTextMajor
  240. MeasureName=LuaTopText
  241. X=(#Size#*0.225)
  242. Y=(#Size#*0.0425)
  243. FontFace=Gibson Light
  244. Group=Music
  245.  
  246. [BottomText]
  247. Meter=String
  248. MeterStyle=styleTextMajor
  249. MeasureName=LuaBottomText
  250. X=r
  251. Y=R
  252. FontFace=Gibson
  253. Text="%1"
  254. Group=Music
  255.  
  256. [Time]
  257. Meter=STRING
  258. MeterStyle=styleTextMini
  259. MeasureName=M-Position
  260. MeasureName2=M-Length
  261. X=(#Size#*0.19)
  262. Y=(#Size#*0.02)
  263. Text="%1/%2"
  264. UpdateDivider=4
  265.  
  266. [Progress]
  267. Meter=String
  268. MeterStyle=styleTextMini
  269. MeasureName=M-Progress
  270. X=r
  271. Y=R
  272. Text="%1%"
  273.  
  274. [Play]
  275. MeterStyle=styleTextControls
  276. Meter=String
  277. MeasureName=M-StateButton
  278. X=(#Size#*0.11)
  279. Y=(#Size#*0.1925)
  280. Text="%1"
  281. LeftMouseUpAction=!CommandMeasure "M-Player" "PlayPause"
  282. UpdateDivider=4
  283. SolidColor=0,0,0,1
  284. FontColor=[DesktopFG2]
  285. DynamicVariables=1
  286.  
  287. [Previous]
  288. MeterStyle=styleTextControls
  289. Meter=String
  290. X=(#Size#*0.19)
  291. Y=(#Size#*0.1625)
  292. Text="previous"
  293. LeftMouseUpAction=!CommandMeasure "M-Player" "Previous"
  294. UpdateDivider=-1
  295. SolidColor=0,0,0,1
  296. FontColor=[DesktopFG2]
  297. DynamicVariables=1
  298.  
  299. [Next]
  300. MeterStyle=styleTextControls
  301. Meter=String
  302. X=(#Size#*0.19)
  303. Y=(#Size#*0.1925)
  304. Text="next"
  305. LeftMouseUpAction=!CommandMeasure "M-Player" "Next"
  306. UpdateDivider=-1
  307. SolidColor=0,0,0,1
  308. FontColor=[DesktopFG2]
  309. DynamicVariables=1
  310.  
  311. [Settings]
  312. Meter=String
  313. MeterStyle=styleTextMini
  314. MeasureName=M-Progress
  315. FontColor=[DesktopBG1]A2
  316. DynamicVariables=1
  317. X=(#Size#*0.125)
  318. Y=(#Size#*0.0465)
  319. Text="settings"
  320. MouseActionCursor=1
  321. LeftMouseUpAction=!ActivateConfig "Cleartext\Settings"
  322. UpdateDivider=-1
Advertisement
Add Comment
Please, Sign In to add comment