mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
Added /Build
This commit is contained in:
139
Build/Skins/illustro/Clock/Clock.ini
Normal file
139
Build/Skins/illustro/Clock/Clock.ini
Normal file
@ -0,0 +1,139 @@
|
||||
; Lines starting ; (semicolons) are commented out.
|
||||
; That is, they do not affect the code and are here for demonstration purposes only.
|
||||
; ----------------------------------
|
||||
|
||||
[Rainmeter]
|
||||
; This section contains general settings that can be used to change how Rainmeter behaves.
|
||||
Author=poiru
|
||||
AppVersion=2000000
|
||||
Update=1000
|
||||
Background=#ROOTCONFIGPATH#SHARED\Background.png
|
||||
; #ROOTCONFIGPATH# is a global variable. In this case, the value of the variable
|
||||
; is equal to DocumentsPath\Rainmeter\Skins\illustro\
|
||||
BackgroundMode=3
|
||||
BackgroundMargins=0,34,0,14
|
||||
|
||||
[Metadata]
|
||||
; Contains basic information of the skin.
|
||||
Description=Displays the current date and time.
|
||||
License=Creative Commons BY-NC-SA 3.0
|
||||
Version=1.0.0
|
||||
|
||||
[Variables]
|
||||
; Variables declared here can be used later on between two # characters (e.g. #MyVariable#).
|
||||
fontName=Trebuchet MS
|
||||
textSize=8
|
||||
colorBar=235,170,0,255
|
||||
colorText=255,255,255,205
|
||||
|
||||
; ----------------------------------
|
||||
; MEASURES return some kind of value
|
||||
; ----------------------------------
|
||||
|
||||
[measureTime]
|
||||
; This measure returns the time in a 24-hour format (i.e. HH:MM).
|
||||
Measure=Time
|
||||
Format=%H:%M
|
||||
; For a 12-hour clock, change the Format option above to: %I:%M %p
|
||||
; Refer to the Rainmeter manual for other format codes.
|
||||
|
||||
[measureDate]
|
||||
; Returns the date as DD.MM.YYYY
|
||||
Measure=Time
|
||||
Format=%d.%m.%Y
|
||||
|
||||
[measureDay]
|
||||
; Returns the current day
|
||||
Measure=Time
|
||||
Format=%A
|
||||
|
||||
; ----------------------------------
|
||||
; STYLES are used to "centralize" options
|
||||
; ----------------------------------
|
||||
|
||||
[styleTitle]
|
||||
StringAlign=CENTER
|
||||
StringCase=UPPER
|
||||
StringStyle=BOLD
|
||||
StringEffect=SHADOW
|
||||
FontEffectColor=0,0,0,50
|
||||
FontColor=#colorText#
|
||||
FontFace=#fontName#
|
||||
FontSize=10
|
||||
AntiAlias=1
|
||||
ClipString=1
|
||||
|
||||
[styleLeftText]
|
||||
StringAlign=LEFT
|
||||
; Meters using styleLeftText will be left-aligned.
|
||||
StringCase=NONE
|
||||
StringStyle=BOLD
|
||||
StringEffect=SHADOW
|
||||
FontEffectColor=0,0,0,20
|
||||
FontColor=#colorText#
|
||||
FontFace=#fontName#
|
||||
FontSize=#textSize#
|
||||
AntiAlias=1
|
||||
ClipString=1
|
||||
|
||||
[styleRightText]
|
||||
StringAlign=RIGHT
|
||||
StringCase=NONE
|
||||
StringStyle=BOLD
|
||||
StringEffect=SHADOW
|
||||
FontEffectColor=0,0,0,20
|
||||
FontColor=#colorText#
|
||||
FontFace=#fontName#
|
||||
FontSize=#textSize#
|
||||
AntiAlias=1
|
||||
ClipString=1
|
||||
|
||||
[styleSeperator]
|
||||
SolidColor=255,255,255,15
|
||||
|
||||
; ----------------------------------
|
||||
; METERS display images, text, bars, etc.
|
||||
; ----------------------------------
|
||||
|
||||
[meterTitle]
|
||||
Meter=STRING
|
||||
MeterStyle=styleTitle
|
||||
; Using MeterStyle=styleTitle will basically "copy" the
|
||||
; contents of the [styleTitle] section here during runtime.
|
||||
MeasureName=measureTime
|
||||
X=100
|
||||
Y=12
|
||||
W=190
|
||||
H=18
|
||||
Text="%1"
|
||||
; %1 stands for the value of MeasureName (measureTime in this case).
|
||||
|
||||
[meterDay]
|
||||
Meter=STRING
|
||||
MeterStyle=styleLeftText
|
||||
MeasureName=measureDay
|
||||
X=10
|
||||
Y=40
|
||||
W=190
|
||||
H=14
|
||||
Text="%1"
|
||||
|
||||
[meterDate]
|
||||
Meter=STRING
|
||||
MeterStyle=styleRightText
|
||||
MeasureName=measureDate
|
||||
X=200
|
||||
Y=0r
|
||||
; r stands for relative. In this case, the Y postition of meterValueCPU is 0 pixels
|
||||
; below the Y value of the previous meter (i.e it's the same as in meterLabelCPU).
|
||||
W=190
|
||||
H=14
|
||||
Text="%1"
|
||||
|
||||
[meterSeperator]
|
||||
Meter=IMAGE
|
||||
MeterStyle=styleSeperator
|
||||
X=10
|
||||
Y=52
|
||||
W=190
|
||||
H=1
|
Reference in New Issue
Block a user