Advertisement
Guest User

Untitled

a guest
Aug 28th, 2016
833
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.69 KB | None | 0 0
  1. [Rainmeter]
  2. Group=SongInfo
  3. Update=10
  4. DynamicWindowSize=1
  5.  
  6. ; = IMPORTANT =
  7. ; = For configuring the rainmeter skin, right-click the visualizer and click on "Open variables".
  8. ; = You can also open the variables.ini file located in:
  9. ; = "My Documents\Rainmeter\Skins\Monstercat Visualizer\@Resources"
  10.  
  11. ; Small context menu when you right-click the skin
  12. ContextTitle=" Open settings"
  13. ContextAction=["#@#variables.ini"]
  14. ContextTitle2=" Toggle background"
  15. ContextAction2=[!ToggleConfig "Monstercat Visualizer\Background" "Background.ini"]
  16. ContextTitle3=" Disable Spotify support"
  17. ContextAction3=[!ActivateConfig "Monstercat Visualizer\Song Information" "Normal.ini"]
  18.  
  19. [Metadata]
  20. Name=Monstercat Visualizer for Rainmeter
  21. Author=marcopixel
  22. Version=1.3
  23. License=CC BY-NC-SA 4.0
  24.  
  25. [Variables]
  26. ; Includes the variables/styles used for the skin.
  27. @include=#@#variables.ini
  28. ; Include MeasureGenre for genre-based colors
  29. @include2=#@#include\MeasureGenre.inc
  30.  
  31. ; Measure SpotifyPlugin - gets track data like title, artist, etc...
  32. [MeasureTrack]
  33. Measure=Plugin
  34. Plugin=SpotifyPlugin
  35. Type=TrackName
  36. Substitute="":"#NoTrackNameText#"
  37. Group=info
  38. [MeasureArtist]
  39. Measure=Plugin
  40. Plugin=SpotifyPlugin
  41. Type=ArtistName
  42. Substitute="":"#NoArtistNameText#"
  43. Group=info
  44. [MeasureCover]
  45. Measure=Plugin
  46. Plugin=SpotifyPlugin
  47. Type=AlbumArt
  48. Res=640
  49. DefaultPath=#@#images\nocover.png
  50. CoverPath=#@#images\cover.png
  51. Group=info
  52. [MeasurePosition]
  53. Measure=Plugin
  54. Plugin=SpotifyPlugin
  55. Type=Position
  56. Group=info
  57. [MeasureDuration]
  58. Measure=Plugin
  59. Plugin=SpotifyPlugin
  60. Type=Length
  61. Group=info
  62.  
  63. ; Meter - cover with progress/duration
  64. [MeterCoverBG]
  65. Meter=IMAGE
  66. SolidColor=#Color#
  67. X=(7*#Scale#)
  68. Y=0
  69. W=(200*#Scale#)
  70. H=(200*#Scale#)
  71. SolidColor=#Color#
  72. MouseOverAction=[!ShowMeterGroup "MediaControls"]
  73. MouseLeaveAction=[!HideMeterGroup "MediaControls"]
  74. Group=info
  75. [MeterMonstercatCover]
  76. Meter=IMAGE
  77. ImageName=#@#images\nocover.png
  78. X=(7*#Scale#)
  79. Y=0
  80. W=(200*#Scale#)
  81. H=(200*#Scale#)
  82. MouseOverAction=[!ShowMeterGroup "MediaControls"]
  83. MouseLeaveAction=[!HideMeterGroup "MediaControls"]
  84. Group=info
  85. [MeterCover]
  86. Meter=IMAGE
  87. MeasureName=MeasureCover
  88. X=(7*#Scale#)
  89. Y=0
  90. W=(200*#Scale#)
  91. H=(200*#Scale#)
  92. MouseOverAction=[!ShowMeterGroup "MediaControls"]
  93. MouseLeaveAction=[!HideMeterGroup "MediaControls"]
  94. Hidden=#ShowMonstercatCover#
  95. Group=info
  96. [MeterPlayerOverlay]
  97. Meter=IMAGE
  98. X=0r
  99. Y=0r
  100. W=(200*#Scale#)
  101. H=(200*#Scale#)
  102. SolidColor=0,0,0,200
  103. Hidden=1
  104. Group=MediaControls
  105. Group=firstgroup | info
  106. [MeterPosition]
  107. Meter=STRING
  108. MeasureName=MeasurePosition
  109. X=(20*#Scale#)
  110. Y=(90*#Scale#)r
  111. FontFace=#Font2#
  112. FontSize=(16*#Scale#)
  113. FontColor=#TextColor#
  114. AntiAlias=1
  115. ClipString=1
  116. Text="%1"
  117. Hidden=1
  118. Group=MediaControls
  119. Group=firstgroup | info
  120. [MeterDividier]
  121. Meter=STRING
  122. MeterStyle=MeterPosition
  123. X=(90*#Scale#)
  124. Y=0r
  125. Text="-"
  126. Hidden=1
  127. Group=MediaControls
  128. Group=firstgroup | info
  129. [MeterDuration]
  130. Meter=STRING
  131. MeterStyle=MeterPosition
  132. MeasureName=MeasureDuration
  133. X=(10*#Scale#)R
  134. Y=0r
  135. Text="%1"
  136. Hidden=1
  137. Group=MediaControls
  138. Group=firstgroup | info
  139.  
  140. ; Meter - artist and track
  141. [MeterArtist]
  142. Meter=STRING
  143. MeasureName=MeasureArtist
  144. X=(225*#Scale#)
  145. Y=(15*#Scale#)
  146. H=(100*#Scale#)
  147. FontFace=#Font1#
  148. FontSize=(#FontSize1#*#Scale#)
  149. FontColor=#TextColor#
  150. AntiAlias=1
  151. ClipString=2
  152. StringCase=UPPER
  153. Text="%1"
  154. Group=info
  155. [MeterTrack]
  156. Meter=STRING
  157. MeasureName=MeasureTrack
  158. X=8r
  159. Y=0R
  160. H=(100*#Scale#)
  161. FontFace=#Font2#
  162. FontSize=(#FontSize2#*#Scale#)
  163. FontColor=#TextColor#
  164. AntiAlias=1
  165. ClipString=1
  166. StringCase=UPPER
  167. Text="%1"
  168. Group=info
  169.  
  170. [run_check]
  171. MeasureName=Plugin
  172. Plugin=Process
  173. ProcessName=Spotify.exe
  174. IfCondition=run_check = -1
  175. IfTrueAction=[!HideMeterGroup info]
  176. IfFalseAction=[!ShowMeterGroup info]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement