Rainmeter v3.1 在桌面显示 CPU、记忆体、硬碟、网路使用状况
2016/12/25 更新系统:软体版本更新至 v3.1 最新版。
一般人应该都会在电脑桌面上放置很多档案、图示或资料夹,方便我们随时按两下、开来看。如果你的桌面很大、很空,而且平常一直很关心电脑的硬体、系统的运作状况的话,,
Rainmeter 可以在桌面上显示包括 CPU、记忆体、硬碟机、网路卡…等等装置的使用状况,让我们随时掌握目前是否有不正常的系统负载、记忆体不足或网路流量异常...等等问题,也可显示如时间日期、电脑对外的 IP 位址..等等资讯,还有个简易型的资源回收桶让我们直接按右键、清空垃圾。
如你通常会必须要使用到 Google 服务器游戏引擎的话,最后面 还有个很快服务器框,按一会儿就也可以很快查阅你还的资讯,算个满不便的小APP。继续阅读
▇ telegram中文 ▇???? telegram中文:(错误、版本的更新时间回报)
- 软体名称:Rainmeter
- 软体版本:3.1
- 软体语言:繁体中文、英文,内建多国语系
- 软体性质:免费软体(GNU GPL v2)
- 档案大小:1.31 MB
- 系统支援:Windows XP/Vista/Win7/Win 8/Win 10
- telegram中文官网:
- 软体telegram中文版下载:按这里
使用方法:
第1步? 安装好 rainmeter 程式、启动之後,桌面上就会出现如下图的桌面小telegram中文,每个方框都可以任意移动位置、设定为显示或隐藏。
第2步? 另外也可自行编辑面板、切换布景主题或调整位置、透明度...等各种设定。
,
修改之後显示不出来,可以帮我看看是哪里错吗
; Lines starting ; (semicolons) are commented out.
; That is, they do not affect the code and are here for demonstration purposes only.
; ———————————-
; HOWTO: Adding more disks
; ———————————-
; Adding more disks is a pretty straightforward process. Follow the following steps to turn
; this 2 disks skin into a 3 disks skin. You can then extend it even further as you wish.
;
; 1) Create a new variable called disk3=X: directly below disk2=D: in the [Variables] section
; 2) Create a copy of the [measureTotalDisk2] and [measureUsedDisk2] sections
; 3) Rename the copied sections to [measureTotalDisk3] and [measureUsedDisk3], respectively.
; Also change Drive=#disk2# to Drive=#disk3#
; 4) Create a copy of the [meterLabelDisk2], [meterValueDisk2], and [meterBarDisk2].
; Rename all Disk2’s in the copied sections to Disk3.
; 5) Now we need to change the Y= values to adjust height. Change Y= under [meterLabelDisk3]
; to Y=80 (calculated by adding 20 to the Y= value of previous meterLabel).
; Then change Y= under [meterBarDisk3] to Y=92 (calculated by adding 20 to the Y= value of previous meterBar).
; 6) Save the file as ‘3 Disks.ini’. Now right-click on the Rainmeter tray icon and select
; ‘Refresh All’. Now go activate the ‘3 Disks.ini’ skin and enjoy! :)
[Rainmeter]
; This section contains general settings that can be used to change how Rainmeter behaves.
Update=1000
Background=#@#Background.png
; #@# is equal to Rainmeter\Skins\illustro\@Resources
BackgroundMode=3
BackgroundMargins=0,34,0,14
[Metadata]
; Contains basic information of the skin.
Name=Disk
Author=poiru
Information=Displays disk usage.
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
disk1=C:
disk2=D:
disk2=E:
; ———————————-
; MEASURES return some kind of value
; ———————————-
[measureTotalDisk1]
; This measure returns the total disk space
Measure=FreeDiskSpace
Drive=#disk1#
Total=1
UpdateDivider=120
[measureUsedDisk1]
; Returns inverted value of free disk space (i.e. used disk space)
Measure=FreeDiskSpace
Drive=#disk1#
InvertMeasure=1
UpdateDivider=120
[measureTotalDisk2]
Measure=FreeDiskSpace
Drive=#disk2#
Total=1
UpdateDivider=120
[measureUsedDisk2]
Measure=FreeDiskSpace
Drive=#disk2#
InvertMeasure=1
UpdateDivider=120
[measureTotalDisk3]
Measure=FreeDiskSpace
Drive=#disk3#
Total=1
UpdateDivider=120
[measureUsedDisk3]
Measure=FreeDiskSpace
Drive=#disk3#
InvertMeasure=1
UpdateDivider=120
; ———————————-
; 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
[styleBar]
BarColor=#colorBar#
BarOrientation=HORIZONTAL
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.
X=100
Y=12
W=190
H=18
Text=Disks
; Even though the text is set to Disks, Rainmeter will display
; it as DISKS, because styleTitle contains StringCase=Upper.
[meterLabelDisk1]
Meter=String
MeterStyle=styleLeftText
X=10
Y=40
W=190
H=14
Text=#disk1#\
[meterValueDisk1]
Meter=String
MeterStyle=styleRightText
MeasureName=measureUsedDisk1
MeasureName2=measureTotalDisk1
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=%1B/%2B used
; %1 stands for the value of MeasureName (measureUsedDisk1 in this case).
; %2 stands for the value of MeasureName2.
NumOfDecimals=1
AutoScale=1
; Because disk measures return the free/used space in bytes, we must use AutoScale=1 to
; automatically scale the value into a more readable figure.
LeftMouseUpAction=[“#disk1#\”]
; Open #disk1# on click
[meterBarDisk1]
Meter=Bar
MeterStyle=styleBar
MeasureName=measureUsedDisk1
X=10
Y=52
W=190
H=1
[meterLabelDisk2]
Meter=String
MeterStyle=styleLeftText
X=10
Y=60
W=190
H=14
Text=#disk2#\
LeftMouseUpAction=[“#disk2#\”]
[meterValueDisk2]
Meter=String
MeterStyle=styleRightText
MeasureName=measureUsedDisk2
MeasureName2=measureTotalDisk2
X=200
Y=0r
W=190
H=14
Text=%1B/%2B used
NumOfDecimals=1
AutoScale=1
[meterBarDisk2]
Meter=Bar
MeterStyle=styleBar
MeasureName=measureUsedDisk2
X=10
Y=72
W=190
H=1
[meterLabelDisk3]
Meter=STRING
MeterStyle=styleLeftText
X=10
Y=80
W=190
H=14
Text=”#disk3#\”
LeftMouseUpAction=!Execute [“#disk3#\”]
[meterValueDisk3]
Meter=STRING
MeterStyle=styleRightText
MeasureName=measureUsedDisk3
MeasureName2=measureTotalDisk3
X=200
Y=0r
W=190
H=14
Text=”%1B/%2B used”
NumOfDecimals=1
AutoScale=1
[meterBarDisk3]
Meter=BAR
MeterStyle=styleBar
MeasureName=measureUsedDisk3
X=10
Y=92
W=190
H=1
这个软体的网路速度是不是不准阿
会跑出很惊人的数字
速度是正常的2倍
硬碟顺序应该是刚开始往下拉,不远的地方有个 [Variables]
disk1=C:
disk2=D:
disk3=E:
disk4=F:
disk5=G:
修改成自己硬碟的顺序,应该是这样吧。
[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
disk1=C:
disk2=D:
disk3=H:
C:
H:
D:
^^ 不知如何修改
既然
[Variables]
disk1=C:
disk2=D:
disk3=H:
显示结果是
C:
H:
D:
那就直接修改为
[Variables]
disk1=C:
disk2=H:
disk3=D:
面板显示出来的顺序就是
C:
D:
H:
哈哈~~脑筋终於转过来了!!
终於是漂亮有规则的了!!
我稍微改了一下五个硬碟
可是会出错
谁可以帮忙修正一下
; Lines starting ; (semicolons) are commented out.
; That is, they do not affect the code and are here for demonstration purposes only.
; ———————————-
; HOWTO: Adding more disks
; ———————————-
; Adding more disks is a pretty straightforward process. Follow the following steps to turn
; this 2 disks skin into a 3 disks skin. You can then extend it even further as you wish.
;
; 1) Create a new variable called disk3=X: directly below disk2=D: in the [Variables] section
; 2) Create a copy of the [measureTotalDisk2] and [measureUsedDisk2] sections
; 3) Rename the copied sections to [measureTotalDisk3] and [measureUsedDisk3], respectively.
; Also change Drive=#disk2# to Drive=#disk3#
; 4) Now find the [meterBackground] section and change 2Line.png to 3Line.png in ImageName
; 5) Create a copy of the [meterLabelDisk2], [meterValueDisk2], and [meterBarDisk2].
; Rename all Disk2’s in the copied sections to Disk3.
; 6) Now we need to change the Y= values to adjust height. Change Y= under [meterLabelDisk2]
; to Y=80 (calculated by adding 20 to the Y= value of previous meterLabel).
; Then change Y= under [meterBarDisk3] to Y=92 (calculated by adding 20 to the Y= value of previous meterBar).
; 7) Save the file as ‘3 Disks.ini’. Now right-click on the Rainmeter tray icon and select
; ‘Refresh All’. Now go activate the ‘3 Disks.ini’ skin and enjoy! :)
[Rainmeter]
; This section contains general settings that can be used to change how Rainmeter behaves.
Author=poiru
AppVersion=2000000
Update=1000
[Metadata]
; Contains basic information of the skin.
Description=Displays disk usage.
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
disk1=C:
disk2=D:
disk3=E:
disk4=F:
disk5=G:
; ———————————-
; MEASURES return some kind of value
; ———————————-
[measureTotalDisk1]
; This measure returns the total disk space
Measure=FreeDiskSpace
Drive=#disk1#
Total=1
UpdateDivider=120
[measureUsedDisk1]
; Returns inverted value of free disk space (i.e. used disk space)
Measure=FreeDiskSpace
Drive=#disk1#
InvertMeasure=1
UpdateDivider=120
[measureTotalDisk2]
Measure=FreeDiskSpace
Drive=#disk2#
Total=1
UpdateDivider=120
[measureUsedDisk2]
Measure=FreeDiskSpace
Drive=#disk2#
InvertMeasure=1
UpdateDivider=120
[measureTotalDisk3]
Measure=FreeDiskSpace
Drive=#disk3#
Total=1
UpdateDivider=120
[measureUsedDisk3]
Measure=FreeDiskSpace
Drive=#disk3#
InvertMeasure=1
UpdateDivider=120
[measureTotalDisk4]
Measure=FreeDiskSpace
Drive=#disk4#
Total=1
UpdateDivider=120
[measureUsedDisk4]
Measure=FreeDiskSpace
Drive=#disk4#
InvertMeasure=1
UpdateDivider=120
[measureTotalDisk2]
Measure=FreeDiskSpace
Drive=#disk5#
Total=1
UpdateDivider=120
[measureUsedDisk2]
Measure=FreeDiskSpace
Drive=#disk5#
InvertMeasure=1
UpdateDivider=120
; ———————————-
; 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
[styleBar]
BarColor=#colorBar#
BarOrientation=HORIZONTAL
SolidColor=255,255,255,15
; ———————————-
; METERS display images, text, bars, etc.
; ———————————-
[meterBackground]
Meter=IMAGE
ImageName=#SKINSPATH#\illustro\SHARED\Background5Line.png
; #SKINSPATH# is a global variable that stands for your skin path. It is
; usually Documents\Rainmeter\Skins.
X=0
Y=0
[meterTitle]
Meter=STRING
MeterStyle=styleTitle
; Using MeterStyle=styleTitle will basically “copy” the
; contents of the [styleTitle] section here during runtime.
X=100
Y=12
W=190
H=18
Text=”Disk”
; Even though the text is set to Disk, Rainmeter will display
; it as DISK, because styleTitle contains StringCase=UPPER.
[meterLabelDisk1]
Meter=STRING
MeterStyle=styleLeftText
X=10
Y=40
W=190
H=14
Text=”#disk1#\”
[meterValueDisk1]
Meter=STRING
MeterStyle=styleRightText
MeasureName=measureUsedDisk1
MeasureName2=measureTotalDisk1
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=”%1B/%2B used”
; %1 stands for the value of MeasureName (measureUsedDisk1 in this case).
; %2 stands for the value of MeasureName2.
NumOfDecimals=1
AutoScale=1
; Because disk measures return the free/used space in bytes, we must use AutoScale=1 to
; automatically scale the value into a more readable figure.
LeftMouseUpAction=!Execute [“#disk1#\”]
; Open #disk1# on click
[meterBarDisk1]
Meter=BAR
MeterStyle=styleBar
MeasureName=measureUsedDisk1
X=10
Y=52
W=190
H=1
[meterLabelDisk2]
Meter=STRING
MeterStyle=styleLeftText
X=10
Y=60
W=190
H=14
Text=”#disk2#\”
LeftMouseUpAction=!Execute [“#disk2#\”]
[meterValueDisk2]
Meter=STRING
MeterStyle=styleRightText
MeasureName=measureUsedDisk2
MeasureName2=measureTotalDisk2
X=200
Y=0r
W=190
H=14
Text=”%1B/%2B used”
NumOfDecimals=1
AutoScale=1
[meterBarDisk2]
Meter=BAR
MeterStyle=styleBar
MeasureName=measureUsedDisk2
X=10
Y=72
W=190
H=1
[meterLabelDisk3]
Meter=STRING
MeterStyle=styleLeftText
X=10
Y=80
W=190
H=14
Text=”#disk3#\”
LeftMouseUpAction=!Execute [“#disk3#\”]
[meterValueDisk3]
Meter=STRING
MeterStyle=styleRightText
MeasureName=measureUsedDisk3
MeasureName3=measureTotalDisk3
X=200
Y=0r
W=190
H=14
Text=”%1B/%2B used”
NumOfDecimals=1
AutoScale=1
[meterBarDisk3]
Meter=BAR
MeterStyle=styleBar
MeasureName=measureUsedDisk3
X=10
Y=72
W=190
H=1
[meterLabelDisk4]
Meter=STRING
MeterStyle=styleLeftText
X=10
Y=100
W=190
H=14
Text=”#disk4#\”
LeftMouseUpAction=!Execute [“#disk4#\”]
[meterValueDisk4]
Meter=STRING
MeterStyle=styleRightText
MeasureName=measureUsedDisk4
MeasureName4=measureTotalDisk4
X=200
Y=0r
W=190
H=14
Text=”%1B/%2B used”
NumOfDecimals=1
AutoScale=1
[meterBarDisk4]
Meter=BAR
MeterStyle=styleBar
MeasureName=measureUsedDisk4
X=10
Y=72
W=190
H=1
[meterLabelDisk5]
Meter=STRING
MeterStyle=styleLeftText
X=10
Y=120
W=190
H=14
Text=”#disk5#\”
LeftMouseUpAction=!Execute [“#disk5#\”]
[meterValueDisk5]
Meter=STRING
MeterStyle=styleRightText
MeasureName=measureUsedDisk5
MeasureName5=measureTotalDisk5
X=200
Y=0r
W=190
H=14
Text=”%1B/%2B used”
NumOfDecimals=1
AutoScale=1
[meterBarDisk5]
Meter=BAR
MeterStyle=styleBar
MeasureName=measureUsedDisk5
X=10
Y=72
W=190
H=1
[measureTotalDisk4]
Measure=FreeDiskSpace
Drive=#disk4#
Total=1
UpdateDivider=120
[measureUsedDisk4]
Measure=FreeDiskSpace
Drive=#disk4#
InvertMeasure=1
UpdateDivider=120
底下有误
[ [measureTotalDisk2] 请改成5 ]
[ [measureUsedDisk2] 请改成5 ]
接着是最底下 [meterBarDisk]的部份,请调整栏位高度,每增加一个硬碟,高度增加20。
换成这样储存之後,自己开启 Rainmeter 读取新Skin [ 5 disks ] 应该就也行了。[meterBarDisk1] 是52,[meterBarDisk2]是72
所以
[meterBarDisk3] 请将Y的值修正成 92
[meterBarDisk4] 请将Y的值修正成 112
[meterBarDisk5] 请将Y的值修正成 132
[measureTotalDisk4]
Measure=FreeDiskSpace
Drive=#disk4#
Total=1
UpdateDivider=120
[measureUsedDisk4]
Measure=FreeDiskSpace
Drive=#disk4#
InvertMeasure=1
UpdateDivider=120
底下有误
[ [measureTotalDisk2] 请改成5 ]
[ [measureUsedDisk2] 请改成5 ]
接着是最底下 [meterBarDisk]的部份,请调整栏位高度,每增加一个硬碟,高度增加20。
改为这样储存之後,重开启 Rainmeter 读取新Skin [ 5 disks ] 应该就是才行。[meterBarDisk1] 是52,[meterBarDisk2]是72
所以
[meterBarDisk3] 请将Y的值修正成 92
[meterBarDisk4] 请将Y的值修正成 112
[meterBarDisk5] 请将Y的值修正成 132
电脑分割了CDE三个槽
他只出现C、D
要怎麽把E开出来?
找到了~
编辑档里面有步骤说明:D
但是目前顺序是
C:
H:
D:
请问要如何修改显示为
谢谢~C:
D:
H:
面板上的资讯可以透过修改 ini 设定档的方式
使其以繁体中文显示
例如:illustro\system\system.ini
另一个设定档也是可以用这形式。以记事本打开之後,Ctrl + F 服务器 [meterTitle]
底下有一行 Text=”system”
改成 Text=”系统” 储存後关掉设定档
下次重开 Rainmeter 就会以繁体中文显示了