- UID
- 1198
- 主题
- 注册时间
- 2010-6-7
- 在线时间
- 小时
- 最后登录
- 1970-1-1
该用户从未签到
|
楼主 |
发表于 2010-6-16 21:19:13
|
显示全部楼层
=======================================================
这段程式是要在显示文字前写上
这样文字才有显示范围
若没用 文字是不会显示的
如果字多 字长
可以设长一点 大一点
不然字显示超出框框范围
会被截掉喔
Rainmeter皮肤制作教程(3)
以下为显示程式解说
========================================================
[CPUTxt]
Meter=STRING
X=50r
Y=10r
Prefix="CPU"
FontColor=#FColor#
FontSize=7
StringAlign=RIGHT
StringStyle=BOLD
Hidden=1
此为显示文字字段
[CPUTxt] 名称 自由改变
Meter=STRING 恩....应该是显示什么的 STRING 是显示字体
X=0r Y=0r 座标 有加 r 和没加 r 变化很大
没加 r 会从最初座标 开始算 有加 r 会从上个字段的座标开始算
Prefix="??" 要显示什么西
FontColor=#FColor# 字体颜色
#FColor#这是在宣告区所写的 若宣告区没写 就改写成FontColor="0,0,0"
FontSize=7 字体大小
如果在宣告区 有宣告 就改成FontSize=#名称#
StringAlign=RIGHT 字体靠右靠左还是靠中
StringStyle=BOLD 字型 BOLD 此为粗体
Hidden=1 隐藏 就是不显示
这就是一段
要再一段就要再複制一段
名称要不一样喔
================================
分支1
在这段中加段
MeasureName=CPU
(CPU 就是在抓取区的抓取CPU指令名称 若是要显示记忆体 就改成抓取Mem指令的名称)
就会变成显示CPU使用率
ex.
[ComeCPU]
MeasureName=CPU
Meter=STRING
X=28r
Y=0r
Postfix="%"
FontColor=#FColor#
FontSize=7
StringAlign=RIGHT
StringStyle=BOLD
================================
分支2
若是要用在显示有单位的 像..记忆体 上传下载速度 硬碟空间
则加
AutoScale=1
NumOfDecimals=0
这是计算单位的 不加的话
会出现一堆数字
ex.
[ComeMem]
MeasureName=Memory
Meter=STRING
X=90r
Y=-13r
Postfix="B"
FontColor=#FColor#
FontSize=7
StringAlign=RIGHT
StringStyle=BOLD
AutoScale=1
NumOfDecimals=0
========================================================
要记得複制贴上是你最好的朋友
这是显示字体的字段
每一段第一段都要有[名称]
Rainmeter皮肤制作教程(4)
以下为显示程式解说
========================================================
[Rainmeter]
BackgroundMode=1
(打就是了)
;=========================
[Variables]
FColor="0,0,0"
BColor="30,50,74"
(这是宣告FColor是"0,0,0" BColor是"30,50,74" )
;==========================
[MeasureIP]
Measure=Plugin
Plugin=Plugins\SysInfo.dll
SysInfoType=IP_ADDRESS
SysInfoData=1
[MeasureOS]
Measure="Plugin"
Plugin="Plugins\SysInfo.dll"
SysInfoType="OS_VERSION"
SysInfoData=
[MeasureCPU]
Measure=CPU
[MeasureMemory]
Measure=PhysicalMemory
[MeasureSwapMemory]
Measure=SwapMemory
[MeasureNetIn]
Measure=NetIn
[MeasureNetOut]
Measure=NetOut
[MeasureTime]
Measure=Time
Format=%H:%M:%S
[MeasureDate]
Measure=Time
Format="%#m/%#d*"
substitute="/":"月","*":"日"
[MeasureWeek]
Measure=Time
Format=%A
substitute="Sunday":"星期日","Monday":"星期一","Tuesday":"星期二","Wednesday":"星期三","Thursday":"星期四","Friday":"星期五","Saturday":"星期六"
[MeasureFDS_C]
Measure=FreeDiskSpace
Drive=C:
[MeasureFDS_D]
Measure=FreeDiskSpace
Drive=D:
(抓取资讯)
;======================================
[Back]
Meter=IMAGE
X=0
Y=0
W=100
H=250
SolidColor=#BColor#,20
(这是背景框框 SolidColor=#BColor#,20 后面加个,20 是透明度)
;======================================
[IPTxt]
Meter=STRING
X=0r
Y=0r
Prefix="IP:"
FontColor=#FColor#
FontSize=10
StringAlign=LEFT
StringStyle=BOLD
[IPT]
MeasureName=MeasureIP
Meter=STRING
X=20r
Y=2r
FontColor=#FColor#
FontSize=8
StringAlign=LEFT
StringStyle=BOLD
(显示 IP:******x)
;=============================
[OSTxt]
Meter=STRING
X=-20r
Y=15r
Prefix="OS:"
FontColor=#FColor#
FontSize=10
StringAlign=LEFT
StringStyle=BOLD
[OS]
MeasureName=MeasureOS
Meter=STRING
X=18r
Y=15r
FontColor=#FColor#
FontSize=8
StringAlign=LEFT
StringStyle=BOLD
(显示 OS:******X)
;=============================
[CPUTxt]
Meter=STRING
X=0r
Y=20r
Prefix="CPU:"
FontColor=#FColor#
FontSize=10
StringAlign=LEFT
StringStyle=BOLD
[Cpu]
MeasureName=MeasureCPU
Meter=STRING
X=45r
Y=0r
Postfix="%"
FontColor=#FColor#
FontSize=10
StringAlign=LEFT
StringStyle=BOLD
(显示 CPU:***%)
;=============================
[MemTxt]
Meter=STRING
X=-50r
Y=20r
Prefix="Mem:"
FontColor=#FColor#
FontSize=10
StringAlign=LEFT
StringStyle=BOLD
[Mem]
MeasureName=MeasureMemory
Meter=STRING
X=40r
Y=0r
Postfix="B"
FontColor=#FColor#
FontSize=10
StringAlign=LEFT
StringStyle=BOLD
AutoScale=1
NumOfDecimals=0
(显示 Mem:***KB)
;===============================
[SWAPTxt]
Meter=STRING
X=-40r
Y=20r
Prefix="Swap:"
FontColor=#FColor#
FontSize=10
StringAlign=LEFT
StringStyle=BOLD
[SWAP]
MeasureName=MeasureSwapMemory
Meter=STRING
X=40r
Y=0r
Postfix="B"
FontColor=#FColor#
FontSize=10
StringAlign=LEFT
StringStyle=BOLD
AutoScale=1
NumOfDecimals=0
(显示 Swap:***KB)
;================================
[DLTxt]
Meter=STRING
X=-40r
Y=20r
Prefix="DL:"
FontColor=#FColor#
FontSize=10
StringAlign=LEFT
StringStyle=BOLD
[DL]
MeasureName=MeasureNetOut
Meter=STRING
X=40r
Y=0r
Postfix="b"
FontColor=#FColor#
FontSize=10
StringAlign=LEFT
StringStyle=BOLD
AutoScale=1
NumOfDecimals=0
(显示 DL:***KB)
;=================================
[ULTxt]
Meter=STRING
X=-40r
Y=20r
Prefix="UL:"
FontColor=#FColor#
FontSize=10
StringAlign=LEFT
StringStyle=BOLD
[UL]
MeasureName=MeasureNetIn
Meter=STRING
X=40r
Y=0r
Postfix="b"
FontColor=#FColor#
FontSize=10
StringAlign=LEFT
StringStyle=BOLD
AutoScale=1
NumOfDecimals=0
(显示 DL:***KB)
;===========================
[time]
MeasureName=MeasureTime
Meter=STRING
X=-30r
Y=20r
FontColor=#FColor#
FontSize=10
StringAlign=LEFT
StringStyle=BOLD
(显示 时间 18:20:45)
;============================
[DAY]
MeasureName=MeasureDate
Meter=STRING
X=0r
Y=20r
FontColor=#FColor#
FontSize=10
StringAlign=LEFT
StringStyle=BOLD
(显示 日期 7月7日)
;============================
[Week]
MeasureName=MeasureWeek
Meter=STRING
X=0r
Y=20r
FontColor=#FColor#
FontSize=10
StringAlign=LEFT
StringStyle=BOLD
(显示 周几 星期五)
;=========================
[CTxt]
Meter=STRING
X=0r
Y=20r
Prefix="C:"
FontColor=#FColor#
FontSize=10
StringAlign=LEFT
StringStyle=BOLD
[CD]
MeasureName=MeasureFDS_C
Meter=STRING
X=20r
Y=0r
Postfix="B"
FontColor=#FColor#
FontSize=10
StringAlign=LEFT
StringStyle=BOLD
AutoScale=1
NumOfDecimals=0
(显示 C硬碟剩多少)
;===========================
[DTxt]
Meter=STRING
X=-20r
Y=20r
Prefix="D:"
FontColor=#FColor#
FontSize=10
StringAlign=LEFT
StringStyle=BOLD
[DD]
MeasureName=MeasureFDS_D
Meter=STRING
X=20r
Y=0r
Postfix="B"
FontColor=#FColor#
FontSize=10
StringAlign=LEFT
StringStyle=BOLD
AutoScale=1
NumOfDecimals=0
(显示 C硬碟剩多少)
==========================END=================================
一些小地方要注意
; (在任何一段打上 ; 之后一字段就不会执行)
Prefix和Postfix不同之处在於
Prefix是文字直接显示
Postfix是文字会显示在数据后面 |
|