Advertisement
Guest User

Untitled

a guest
Sep 9th, 2012
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.33 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=poiru
  8. AppVersion=1003000
  9. Update=1000
  10. Background=#@#Background.png
  11. ; #@# is equal to Rainmeter\Skins\illustro\@Resources
  12. BackgroundMode=3
  13. BackgroundMargins=0,34,0,14
  14.  
  15. [Metadata]
  16. ; Contains basic information of the skin.
  17. Name=Welcome
  18. Description=The welcome skin for illustro.
  19. License=Creative Commons BY-NC-SA 3.0
  20. Version=1.0.0
  21.  
  22. [Variables]
  23. ; Variables declared here can be used later on between two # characters (e.g. #MyVariable#).
  24. fontName=Trebuchet MS
  25. textSize=8
  26. colorBar=235,170,0,255
  27. colorText=255,255,255,205
  28.  
  29. ; ----------------------------------
  30. ; STYLES are used to "centralize" options
  31. ; ----------------------------------
  32. [Variables]
  33. Note=#CURRENTPATH#Notes.txt
  34.  
  35. [styleTitle]
  36. StringAlign=CENTER
  37. StringCase=UPPER
  38. StringStyle=BOLD
  39. StringEffect=SHADOW
  40. FontEffectColor=0,0,0,50
  41. FontColor=#colorText#
  42. FontFace=#fontName#
  43. FontSize=10
  44. AntiAlias=1
  45. ClipString=1
  46.  
  47. [styleLeftText]
  48. StringAlign=LEFT
  49. ; Meters using styleLeftText will be left-aligned.
  50. StringCase=NONE
  51. StringStyle=BOLD
  52. StringEffect=SHADOW
  53. FontEffectColor=0,0,0,20
  54. FontColor=#colorText#
  55. FontFace=#fontName#
  56. FontSize=#textSize#
  57. AntiAlias=1
  58. ClipString=1
  59.  
  60. [styleSeperator]
  61. SolidColor=255,255,255,15
  62.  
  63. ; ----------------------------------
  64. ; METERS display images, text, bars, etc.
  65. ; ----------------------------------
  66.  
  67. [meterTitle]
  68. Meter=STRING
  69. MeterStyle=styleTitle
  70. ; Using MeterStyle=styleTitle will basically "copy" the
  71. ; contents of the [styleTitle] section here during runtime.
  72. X=100
  73. Y=12
  74. W=190
  75. H=18
  76. Text="NOTES"
  77.  
  78. [MeasureNotes1]
  79. Measure=Plugin
  80. Plugin=Plugins\QuotePlugin.dll
  81. PathName=note.txt
  82. Disabled=0
  83. Separator=¶
  84. #Subfolders=0
  85. #FileFilter=*.txt
  86.  
  87. [NotesText1]
  88. MeasureName=MeasureNotes1
  89. Meter=STRING
  90. X=5
  91. Y=50
  92. W=200
  93. H=150
  94. FontColor=#colorText#
  95. FontSize=9
  96. StringCase=NONE
  97. StringStyle=BOLD
  98. StringEffect=SHADOW
  99. FontEffectColor=0,0,0,20
  100. FontColor=#colorText#
  101. FontFace=#fontName#
  102. FontSize=#textSize#
  103. AntiAlias=1
  104. ClipString=1
  105. LeftMouseDownAction=!Execute ["#CurrentPath#\note.txt"][!RainmeterRedraw]
  106. UpdateDivider=3600
  107. Group=text1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement