Telegram中文:Telegram中文下载-Telegram中文版官网 https://telecnsr.com/7902/ Mon, 26 Dec 2016 16:46:30 +0000 hourly 1 https://wordpress.org/?v=5.9.3 Telegram中文:Telegram中文下载-Telegram中文版官网 https://telecnsr.com/7902/comment-page-1/#comment-153927 Wed, 30 Dec 2015 03:33:23 +0000 https://telecnsr.com/?p=7902#comment-153927 淇敼涔嫔缌椤ず涓嶅嚭渚嗭紝鍙互骞垜鐪嬬湅鏄摢瑁¢尟鍡?br /> ; 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

]]>
Telegram中文:Telegram中文下载-Telegram中文版官网 https://telecnsr.com/7902/comment-page-1/#comment-127103 Fri, 23 Dec 2011 13:52:53 +0000 https://telecnsr.com/?p=7902#comment-127103 锲炶镄勫皪璞$偤銆?a href="https://telecnsr.com/7902/comment-page-1/#comment-127102">kevin銆嶃?/p> 鍝垀~鍏跺绛旀灏卞湪鍟忛涓?!

镞㈢劧
[Variables]
disk1=C:
disk2=D:
disk3=H:
椤ず绲愭灉鏄?br /> C:
H:
D:

闾e氨鐩存帴淇敼镣?br /> [Variables]
disk1=C:
disk2=H:
disk3=D:
闱㈡澘椤ず鍑轰缔镄勯爢搴忓氨鏄?br /> C:
D:
H:
鍝埚搱~~鑵︾璎绲傛柤杞夐亷渚嗕简!!
绲傛柤鏄纾浜湁瑕忓墖镄勪简!!

]]>
Telegram中文:Telegram中文下载-Telegram中文版官网 https://telecnsr.com/7902/comment-page-1/#comment-127102 Fri, 23 Dec 2011 13:46:20 +0000 https://telecnsr.com/?p=7902#comment-127102 锲炶镄勫皪璞$偤銆?a href="https://telecnsr.com/7902/comment-page-1/#comment-126952">椁呬咕銆嶃?/p>

[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:
^^ 涓岖煡濡备綍淇敼

]]>
Telegram中文:Telegram中文下载-Telegram中文版官网 https://telecnsr.com/7902/comment-page-1/#comment-127089 Fri, 23 Dec 2011 02:27:30 +0000 https://telecnsr.com/?p=7902#comment-127089 阃椤嬭粺楂旗殑缍茶矾阃熷害鏄笉鏄笉婧栭樋
链冭窇鍑哄緢椹氢汉镄勬暩瀛?br /> 阃熷害鏄甯哥殑2链?/p> ]]>
Telegram中文:Telegram中文下载-Telegram中文版官网 https://telecnsr.com/7902/comment-page-1/#comment-126952 Mon, 19 Dec 2011 05:17:05 +0000 https://telecnsr.com/?p=7902#comment-126952 纭阕嗗簭镍夎┎鏄墰闁嫔寰涓嬫媺锛屼笉阆犵殑鍦版柟链夊?[Variables]
disk1=C:
disk2=D:
disk3=E:
disk4=F:
disk5=G:
淇敼鎴愯嚜宸辩‖纰熺殑阕嗗簭锛屾噳瑭叉槸阃欐ǎ鍚с?/p> ]]>
Telegram中文:Telegram中文下载-Telegram中文版官网 https://telecnsr.com/7902/comment-page-1/#comment-126951 Mon, 19 Dec 2011 05:14:10 +0000 https://telecnsr.com/?p=7902#comment-126951 锲炶镄勫皪璞$偤銆?a href="https://telecnsr.com/7902/comment-page-1/#comment-126949">鍖垮悕瑷銆嶃?/p> 阃g簩鐧间简鍏╃瘒涓妯g殑锲炴噳鐪熸槸鎶辨瓑锻?..= ]]> Telegram中文:Telegram中文下载-Telegram中文版官网 https://telecnsr.com/7902/comment-page-1/#comment-126950 Mon, 19 Dec 2011 05:10:26 +0000 https://telecnsr.com/?p=7902#comment-126950 锲炶镄勫皪璞$偤銆?a href="https://telecnsr.com/7902/comment-page-1/#comment-126874">COCO銆嶃?/p>

[measureTotalDisk4]
Measure=FreeDiskSpace
Drive=#disk4#
Total=1
UpdateDivider=120

[measureUsedDisk4]
Measure=FreeDiskSpace
Drive=#disk4#
InvertMeasure=1
UpdateDivider=120

搴曚笅链夎
[ [measureTotalDisk2] 璜嬫敼鎴? ]
[ [measureUsedDisk2] 璜嬫敼鎴? ]

鎺ヨ宪鏄渶搴曚笅 [meterBarDisk]镄勯儴浠斤紝璜嬭鏁存瑒浣嶉佩搴︼紝姣忓锷犱竴链嬬‖纰燂紝楂桦害澧炲姞20銆?br /> [meterBarDisk1] 鏄?2锛孾meterBarDisk2]鏄?2
镓浠?br /> [meterBarDisk3] 璜嫔皣Y镄勫间慨姝f垚 92
[meterBarDisk4] 璜嫔皣Y镄勫间慨姝f垚 112
[meterBarDisk5] 璜嫔皣Y镄勫间慨姝f垚 132

鏀规垚阃欐ǎ鍎插瓨涔嫔缌锛岄吨鏂伴枊鍟?Rainmeter 璁鍙栨柊Skin [ 5 disks ] 镍夎┎灏卞彲浠ヤ简銆?/p> ]]> Telegram中文:Telegram中文下载-Telegram中文版官网 https://telecnsr.com/7902/comment-page-1/#comment-126949 Mon, 19 Dec 2011 05:10:11 +0000 https://telecnsr.com/?p=7902#comment-126949 锲炶镄勫皪璞$偤銆?a href="https://telecnsr.com/7902/comment-page-1/#comment-126874">COCO銆嶃?/p>

[measureTotalDisk4]
Measure=FreeDiskSpace
Drive=#disk4#
Total=1
UpdateDivider=120

[measureUsedDisk4]
Measure=FreeDiskSpace
Drive=#disk4#
InvertMeasure=1
UpdateDivider=120

搴曚笅链夎
[ [measureTotalDisk2] 璜嬫敼鎴? ]
[ [measureUsedDisk2] 璜嬫敼鎴? ]

鎺ヨ宪鏄渶搴曚笅 [meterBarDisk]镄勯儴浠斤紝璜嬭鏁存瑒浣嶉佩搴︼紝姣忓锷犱竴链嬬‖纰燂紝楂桦害澧炲姞20銆?br /> [meterBarDisk1] 鏄?2锛孾meterBarDisk2]鏄?2
镓浠?br /> [meterBarDisk3] 璜嫔皣Y镄勫间慨姝f垚 92
[meterBarDisk4] 璜嫔皣Y镄勫间慨姝f垚 112
[meterBarDisk5] 璜嫔皣Y镄勫间慨姝f垚 132

鏀规垚阃欐ǎ鍎插瓨涔嫔缌锛岄吨鏂伴枊鍟?Rainmeter 璁鍙栨柊Skin [ 5 disks ] 镍夎┎灏卞彲浠ヤ简銆?/p> ]]> Telegram中文:Telegram中文下载-Telegram中文版官网 https://telecnsr.com/7902/comment-page-1/#comment-126948 Mon, 19 Dec 2011 03:37:28 +0000 https://telecnsr.com/?p=7902#comment-126948 Telegram中文:Telegram中文下载-Telegram中文版官网 https://telecnsr.com/7902/comment-page-1/#comment-126913 Sat, 17 Dec 2011 22:26:47 +0000 https://telecnsr.com/?p=7902#comment-126913 锲炶镄勫皪璞$偤銆?a href="https://telecnsr.com/7902/comment-page-1/#comment-126830">Sandrew銆嶃?/p> 纭宸茬稉閮芥湁椤ず鍑轰缔,

浣嗘槸鐩墠阕嗗簭鏄?br /> C:
H:
D:

璜嫔晱瑕佸浣曚慨鏀归’绀虹偤
C:
D:
H:

璎濊瑵~ ]]>
Telegram中文:Telegram中文下载-Telegram中文版官网 https://telecnsr.com/7902/comment-page-1/#comment-126874 Fri, 16 Dec 2011 15:42:22 +0000 https://telecnsr.com/?p=7902#comment-126874 鎴戠◢寰敼浜嗕竴涓嬩簲链嬬‖纰?br /> 鍙槸链冨嚭閷?br /> 瑾板彲浠ュ公蹇欎慨姝d竴涓?/p>

; 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

]]>
Telegram中文:Telegram中文下载-Telegram中文版官网 https://telecnsr.com/7902/comment-page-1/#comment-126858 Fri, 16 Dec 2011 07:04:02 +0000 https://telecnsr.com/?p=7902#comment-126858 Telegram中文:Telegram中文下载-Telegram中文版官网 https://telecnsr.com/7902/comment-page-1/#comment-126830 Thu, 15 Dec 2011 02:35:47 +0000 https://telecnsr.com/?p=7902#comment-126830 锲炶镄勫皪璞$偤銆?a href="https://telecnsr.com/7902/comment-page-1/#comment-126804">Sandrew銆嶃?/p>

镓惧埌浜唦
绶ㄨ集妾旇!闱㈡湁姝ラ瑾槑:D

]]>
Telegram中文:Telegram中文下载-Telegram中文版官网 https://telecnsr.com/7902/comment-page-1/#comment-126821 Wed, 14 Dec 2011 15:39:45 +0000 https://telecnsr.com/?p=7902#comment-126821 璎濊瑵浣犳彁渚涗简闱炲父链夌敤杌熼珨,璁撴垜鍙互链夋晥镄勭洠鎺ф垜镄勯浕鑵﹂亱浣?板栫劧闾勬湭浣跨敤,浣嗘槸鍙互涓鐩简铹剁殑鐩f带,鐪熺殑鍙互璁撴垜鍙楃泭鑹鍝?/p> ]]> Telegram中文:Telegram中文下载-Telegram中文版官网 https://telecnsr.com/7902/comment-page-1/#comment-126815 Wed, 14 Dec 2011 12:07:52 +0000 https://telecnsr.com/?p=7902#comment-126815 Telegram中文:Telegram中文下载-Telegram中文版官网 https://telecnsr.com/7902/comment-page-1/#comment-126804 Wed, 14 Dec 2011 07:19:35 +0000 https://telecnsr.com/?p=7902#comment-126804 板昏叇鍒嗗壊浜咰DE涓夊嬫Ы
浠栧彧鍑虹従C銆丏
瑕佹庨杭鎶奅闁嫔嚭渚?

]]>
Telegram中文:Telegram中文下载-Telegram中文版官网 https://telecnsr.com/7902/comment-page-1/#comment-126797 Wed, 14 Dec 2011 05:37:19 +0000 https://telecnsr.com/?p=7902#comment-126797 Telegram中文:Telegram中文下载-Telegram中文版官网 https://telecnsr.com/7902/comment-page-1/#comment-126794 Wed, 14 Dec 2011 02:42:26 +0000 https://telecnsr.com/?p=7902#comment-126794 闱㈡澘涓婄殑璩囱▕鍙互阃忛亷淇敼 ini 瑷畾妾旗殑鏂瑰纺
浣垮叾浠ョ箒楂斾腑鏂囬’绀?/p>

渚嫔锛歩llustro\system\system.ini
浠ヨ浜嬫湰镓挞枊涔嫔缌锛孋trl + F 鎼滃皨 [meterTitle]
搴曚笅链変竴琛? Text=”system”
鏀规垚 Text=”绯荤当” 鍎插瓨寰岄棞鎺夎ō瀹氭獢
涓嬫閲嶉枊 Rainmeter 灏辨渻浠ョ箒楂斾腑鏂囬’绀轰简

鍏朵粬瑷畾妾斾篃鑳界敤阃欐柟寮忋?/p> ]]> Telegram中文:Telegram中文下载-Telegram中文版官网 https://telecnsr.com/7902/comment-page-1/#comment-126793 Wed, 14 Dec 2011 02:24:11 +0000 https://telecnsr.com/?p=7902#comment-126793 telegram中文:https://rainmeter.net/redist/

]]>