level 12
Fand聴聴
楼主
[Rainmeter]
Update=1000
DynamicWindowSize=1
AccurateText=1
ContextTitle="Change to [mContextMenuUnit] units"
ContextAction=[!WriteKeyValue Variables units [mNextUnitVar]][!Refresh][Metadata]
Name=Elementary Weather
Author=Flying Hyrax | flyinghyrax.deviantart.com
Version=3.0
License=CC BY-NC-SA 4.0 | http://creativecommons.org/licenses/by-nc-sa/4.0/Information=Displays current weather conditions for your given location. Click the word "currently" to switch to forecast view. | - Set your weather.com location code in the skin file | - Can switch between Fahrenheit/English and Celsius/Metric using the skin context menu; _ _ _ __ __
; ___ ___| |_| |_(_)_ __ __ _ ___ \ \ \ \
; / __|/ _ \ __| __| | '_ \ / _` / __| \ \ \ \
; \__ \ __/ |_| |_| | | | | (_| \__ \ / / / /
; |___/\___|\__|\__|_|_| |_|\__, |___/ /_/ /_/
; |___/[Variables]
; Weather.com location code
location=CHXX0016
; 'f' for English/Imperial, 'm' for Metric
units=m; __ __ _ _ _
; / / / / ___ ___| |_| |_(_)_ __ __ _ ___
; / / / / / __|/ _ \ __| __| | '_ \ / _` / __|
; \ \ \ \ \__ \ __/ |_| |_| | | | | (_| \__ \
; \_\ \_\ |___/\___|\__|\__|_|_| |_|\__, |___/
; |___/; not settings:
forecastDayName=(?siU)t="(.*)"
forecastHigh=(.*)<\/hi>
forecastLow=(.*)<\/low>
forecastConditionCode=(?siU).*(.*)<\/icon>
forecastCondition=(?siU).*(.*)<\/t>
forecastPrecip=(?siU).*(.*)<\/ppcp>@IncludeGlobal="#@#shared.inc"
@IncludeLang="#@#Languages\
#language#
.txt"; __ __
; | \/ | ___ __ _ ___ _ _ _ __ ___ ___
; | |\/| |/ _ \/ _` / __| | | | '__/ _ \/ __|
; | | | | __/ (_| \__ \ |_| | | | __/\__ \
; |_| |_|\___|\__,_|___/\__,_|_| \___||___/
;[mNextUnitVar]
Measure=String
String=
#units#
Substitute="f":"0","m":"1","0":"m","1":"f"
Disabled=1[mContextMenuUnit]
Measure=String
String=
#units#
Substitute="m":"english","f":"metric"
Disabled=1; Parent we
bp
arser measure that breaks the feed into four main subtrees
[mWeatherRoot]
Measure=Plugin
Plugin=WebParser
URL="http://wxdata.weather.com/wxdata/weather/local/#location#?unit=#units#&dayf=3&locale=#language#&cc=*"
RegExp=(?siU)(.*)<\/head>.*(.*)<\/loc>.*(.*)<\/cc>.*(.*)<\/dayf>
ForceReload=1
Debug=0
UpdateRate=1200
FinishAction=[!EnableMeasureGroup weather][!UpdateMeter *][!Redraw]; Measures that parse unit strings from the header tree
[mUnitTemperature]
Measure=Plugin
Plugin=WebParser
URL=[mWeatherRoot]
RegExp=(.*)<\/ut>
StringIndex=1
StringIndex2=1
Disabled=1
Group=weather[mUnitDistance]
Measure=Plugin
Plugin=WebParser
URL=[mWeatherRoot]
RegExp=(.*)<\/ud>
StringIndex=1
StringIndex2=1
Disabled=1
Group=weather[mUnitSpeed]
Measure=Plugin
Plugin=WebParser
URL=[mWeatherRoot]
RegExp=(.*)<\/us>
StringIndex=1
StringIndex2=1
Disabled=1
Group=weather[mUnitPressure]
Measure=Plugin
Plugin=WebParser
URL=[mWeatherRoot]
RegExp=(.*)<\/up>
StringIndex=1
StringIndex2=1
Disabled=1
Group=weather[mUnitPrecipitation]
Measure=Plugin
Plugin=WebParser
URL=[mWeatherRoot]
RegExp=(.*)<\/ur>
StringIndex=1
StringIndex2=1
Disabled=1
Group=weather; Measures that parse location information from the location tree
[mLocationName]
Measure=Plugin
Plugin=WebParser
URL=[mWeatherRoot]
RegExp=(.*)<\/dnam>
StringIndex=2
StringIndex2=1
Disabled=1
Group=weather; _______ _
; |__ __| | |
; | | ___ __| | __ _ _ _
; | |/ _ \ / _` |/ _` | | | |
; | | (_) | (_| | (_| | |_| |
; |_|\___/ \__,_|\__,_|\__, |
; __/ |
; |___/
;
; Measures that parse current conditions from the "cc" tree[mObservationStation]
Measure=Plugin
Plugin=WebParser
URL=[mWeatherRoot]
RegExp=(.*)<\/obst>
StringIndex=3
StringIndex2=1
Disabled=1
Group=weather[mObservationTime]
Measure=Plugin
Plugin=WebParser
URL=[mWeatherRoot]
RegExp=(.*)<\/lsup>
StringIndex=3
StringIndex2=1
Disabled=1
Group=weather[mCurrentTemp]
Measure=Plugin
Plugin=WebParser
URL=[mWeatherRoot]
RegExp=(.*)<\/tmp>
StringIndex=3
StringIndex2=1
Disabled=1
Group=weather[mCurrentFeelsLike]
Measure=Plugin
Plugin=WebParser
URL=[mWeatherRoot]
RegExp=(.*)<\/flik>
StringIndex=3
StringIndex2=1
Disabled=1
Group=weather[mCurrentConditionText]
Measure=Plugin
Plugin=WebParser
URL=[mWeatherRoot]
RegExp=(.*)<\/t>
StringIndex=3
StringIndex2=1
Disabled=1
Group=weather[mCurrentVisibleDistance]
Measure=Plugin
Plugin=WebParser
URL=[mWeatherRoot]
RegExp=(.*)<\/vis>
StringIndex=3
StringIndex2=1
Disabled=1
Group=weather[mCurrentHumidity]
Measure=Plugin
Plugin=WebParser
URL=[mWeatherRoot]
RegExp=(.*)<\/hmid>
StringIndex=3
StringIndex2=1
Disabled=1
Group=weather[mCurrentWindSpeed]
Measure=Plugin
Plugin=WebParser
URL=[mWeatherRoot]
RegExp=(?siU).*(.*)<\/s>.*<\/wind>
StringIndex=3
StringIndex2=1
Disabled=1
Group=weather[mCurrentWindHeading]
Measure=Plugin
Plugin=WebParser
URL=[mWeatherRoot]
RegExp=(?siU).*(.*)<\/t>.*<\/wind>
StringIndex=3
StringIndex2=1
Disabled=1
Group=weather; ______ _
; | ____| | |
; | |__ ___ _ __ ___ ___ __ _ ___| |_
; | __/ _ \| '__/ _ \/ __/ _` / __| __|
; | | | (_) | | | __/ (_| (_| \__ \ |_
; |_| \___/|_| \___|\___\__,_|___/\__|
;
; Measures that parse forecast data from the "dayf" tree[mLastForecastUpdate]
Measure=Plugin
Plugin=WebParser
URL=[mWeatherRoot]
RegExp=(.*)<\/lsup>
StringIndex=4
StringIndex2=1
Disabled=1
Group=weather[mForecastParent]
Measure=Plugin
Plugin=WebParser
URL=[mWeatherRoot]
RegExp=(?sU).*.*
StringIndex=4
Disabled=1
Group=weather; ___
; / _ \
; | | | |
; | |_| |
; \___/
;[mWeekday0]
Measure=Plugin
Plugin=WebParser
URL=[mForecastParent]
RegExp=
#forecastDayName#
StringIndex=1
StringIndex2=1
Disabled=1
Group=weather
Substitute="Sunday":"
#Sunday#
","Monday":"
#Monday#
","Tuesday":"
#Tuesday#
","Wednesday":"
#Wednesday#
","Thursday":"
#Thursday#
","Friday":"
#Friday#
","Saturday":"
#Saturday#
"[mHigh0]
Measure=Plugin
Plugin=WebParser
URL=[mForecastParent]
RegExp=
#forecastHigh#
StringIndex=1
StringIndex2=1
Disabled=1
Group=weather[mLow0]
Measure=Plugin
Plugin=WebParser
URL=[mForecastParent]
RegExp=
#forecastLow#
StringIndex=1
StringIndex2=1
Disabled=1
Group=weather[mDaytimeConditionText0]
Measure=Plugin
Plugin=WebParser
URL=[mForecastParent]
RegExp=#forecastCondition#
StringIndex=1
StringIndex2=1
Disabled=1
Group=weather[mDaytimeChancePrecip0]
Measure=Plugin
Plugin=WebParser
URL=[mForecastParent]
RegExp=#forecastPrecip#
StringIndex=1
StringIndex2=1
Disabled=1
Group=weather; _
; / |
; | |
; | |
; |_|
;[mWeekday1]
Measure=Plugin
Plugin=WebParser
URL=[mForecastParent]
RegExp=
#forecastDayName#
StringIndex=2
StringIndex2=1
Disabled=1
Group=weather
Substitute="Sunday":"
#Sunday#
","Monday":"
#Monday#
","Tuesday":"
#Tuesday#
","Wednesday":"
#Wednesday#
","Thursday":"
#Thursday#
","Friday":"
#Friday#
","Saturday":"
#Saturday#
"[mHigh1]
Measure=Plugin
Plugin=WebParser
URL=[mForecastParent]
RegExp=
#forecastHigh#
StringIndex=2
StringIndex2=1
Disabled=1
Group=weather[mLow1]
Measure=Plugin
Plugin=WebParser
URL=[mForecastParent]
RegExp=
#forecastLow#
StringIndex=2
StringIndex2=1
Disabled=1
Group=weather[mDaytimeConditionText1]
Measure=Plugin
Plugin=WebParser
URL=[mForecastParent]
RegExp=#forecastCondition#
StringIndex=2
StringIndex2=1
Disabled=1
Group=weather[mDaytimeChancePrecip1]
Measure=Plugin
Plugin=WebParser
URL=[mForecastParent]
RegExp=#forecastPrecip#
StringIndex=2
StringIndex2=1
Disabled=1
Group=weather; ____
; |___ \
; __) |
; / __/
; |_____|
;[mWeekday2]
Measure=Plugin
Plugin=WebParser
URL=[mForecastParent]
RegExp=
#forecastDayName#
StringIndex=3
StringIndex2=1
Disabled=1
Group=weather
Substitute="Sunday":"
#Sunday#
","Monday":"
#Monday#
","Tuesday":"
#Tuesday#
","Wednesday":"
#Wednesday#
","Thursday":"
#Thursday#
","Friday":"
#Friday#
","Saturday":"
#Saturday#
"[mHigh2]
Measure=Plugin
Plugin=WebParser
URL=[mForecastParent]
RegExp=
#forecastHigh#
StringIndex=3
StringIndex2=1
Disabled=1
Group=weather[mLow2]
Measure=Plugin
Plugin=WebParser
URL=[mForecastParent]
RegExp=
#forecastLow#
StringIndex=3
StringIndex2=1
Disabled=1
Group=weather[mDaytimeConditionText2]
Measure=Plugin
Plugin=WebParser
URL=[mForecastParent]
RegExp=#forecastCondition#
StringIndex=3
StringIndex2=1
Disabled=1
Group=weather[mDaytimeChancePrecip2]
Measure=Plugin
Plugin=WebParser
URL=[mForecastParent]
RegExp=#forecastPrecip#
StringIndex=3
StringIndex2=1
Disabled=1
Group=weather; __ __ _
; | \/ | ___| |_ ___ _ __ ___
; | |\/| |/ _ \ __/ _ \ '__/ __|
; | | | | __/ || __/ | \__ \
; |_| |_|\___|\__\___|_| |___/
;[currentBackground]
Meter=Image
DynamicVariables=1
Group=cc
SolidColor=0,0,0,1
X=0
Y=0
W=#CURRENTCONFIGWIDTH#
H=#CURRENTCONFIGHEIGHT#
LeftMouseUpAction=[!HideMeterGroup "cc"][!ShowMeterGroup "fc"][!UpdateMeterGroup "fc"][!Redraw][currentlyText]
Meter=STRING
MeasureName=mObservationStation
MeasureName2=mObservationTime
MeterStyle=allString
FontSize=((45*#phi#)*#phi#)
Group=cc
StringAlign=RIGHT
Text="#Currently#"
ToolTipText=%2
ToolTipTitle=%1
X=150
Y=35[currentTempurature]
Meter=STRING
MeasureName=mCurrentTemp
MeasureName2=mCurrentFeelsLike
MeterStyle=allString
FontColor=#highlight#
FontSize=45
Group=cc
StringAlign=LEFT
Text=%1°
ToolTipText="~ %2°"
X=8r
Y=0[currentCondition]
Meter=STRING
MeasureName=mCurrentConditionText
MeasureName2=mCurrentVisibleDistance
MeasureName3=mUnitDistance
MeasureName4=mCurrentHumidity
MeasureName5=mCurrentWindSpeed
MeasureName6=mCurrentWindHeading
MeasureName7=mUnitSpeed
MeterStyle=allString
FontSize=(45*#phi#)
Group=cc
Padding=0,0,5,0
StringAlign=LEFT
Text="%1"
ToolTipText="#Humidity#: %4%#CRLF##Visibility#: %2%3#CRLF##Wind#: %5%7 @%6°"
X=-45r
Y=-12R[forecastStringStyle]
FontSize=12
StringAlign=LEFT
Padding=3,0,3,0
Group=fc
Hidden=1
Text="%1, %2° / %3° (%4%)"
X=20r
Y=-1R
LeftMouseUpAction=[!HideMeterGroup "fc"][!ShowMeterGroup "cc"][!UpdateMeterGroup "cc" ][!Redraw][forecastBackground]
Meter=Image
DynamicVariables=1
Group=fc
Hidden=1
SolidColor=0,0,0,1
X=0
Y=0
W=#CURRENTCONFIGWIDTH#
H=#CURRENTCONFIGHEIGHT#[forecastLabel0]
Meter=String
MeasureName=mWeekday0
MeterStyle=allString | forecastStringStyle
FontColor=#highlight#
FontSize=14
Text=%1
X=10
Y=10[forecastInfo0]
Meter=String
MeterStyle=allString | forecastStringStyle
MeasureName=mDaytimeConditionText0
MeasureName2=mLow0
MeasureName3=mHigh0
MeasureName4=mDaytimeChancePrecip0[forecastLabel1]
Meter=String
MeasureName=mWeekday1
MeterStyle=allString | forecastStringStyle
FontColor=#highlight#
FontSize=14
Text=%1
X=10
Y=3R[forecastInfo1]
Meter=String
MeterStyle=allString | forecastStringStyle
MeasureName=mDaytimeConditionText1
MeasureName2=mLow1
MeasureName3=mHigh1
MeasureName4=mDaytimeChancePrecip1[forecastLabel2]
Meter=String
MeasureName=mWeekday2
MeterStyle=allString | forecastStringStyle
FontColor=#highlight#
FontSize=14
Text=%1
X=10
Y=3R[forecastInfo2]
Meter=String
MeterStyle=allString | forecastStringStyle
MeasureName=mDaytimeConditionText2
MeasureName2=mLow2
MeasureName3=mHigh2
MeasureName4=mDaytimeChancePrecip2
2018年10月08日 01点10分
1
Update=1000
DynamicWindowSize=1
AccurateText=1
ContextTitle="Change to [mContextMenuUnit] units"
ContextAction=[!WriteKeyValue Variables units [mNextUnitVar]][!Refresh][Metadata]
Name=Elementary Weather
Author=Flying Hyrax | flyinghyrax.deviantart.com
Version=3.0
License=CC BY-NC-SA 4.0 | http://creativecommons.org/licenses/by-nc-sa/4.0/Information=Displays current weather conditions for your given location. Click the word "currently" to switch to forecast view. | - Set your weather.com location code in the skin file | - Can switch between Fahrenheit/English and Celsius/Metric using the skin context menu; _ _ _ __ __
; ___ ___| |_| |_(_)_ __ __ _ ___ \ \ \ \
; / __|/ _ \ __| __| | '_ \ / _` / __| \ \ \ \
; \__ \ __/ |_| |_| | | | | (_| \__ \ / / / /
; |___/\___|\__|\__|_|_| |_|\__, |___/ /_/ /_/
; |___/[Variables]
; Weather.com location code
location=CHXX0016
; 'f' for English/Imperial, 'm' for Metric
units=m; __ __ _ _ _
; / / / / ___ ___| |_| |_(_)_ __ __ _ ___
; / / / / / __|/ _ \ __| __| | '_ \ / _` / __|
; \ \ \ \ \__ \ __/ |_| |_| | | | | (_| \__ \
; \_\ \_\ |___/\___|\__|\__|_|_| |_|\__, |___/
; |___/; not settings:
forecastDayName=(?siU)t="(.*)"
forecastHigh=(.*)<\/hi>
forecastLow=(.*)<\/low>
forecastConditionCode=(?siU).*(.*)<\/icon>
forecastCondition=(?siU).*(.*)<\/t>
forecastPrecip=(?siU).*(.*)<\/ppcp>@IncludeGlobal="#@#shared.inc"
@IncludeLang="#@#Languages\
#language#
.txt"; __ __
; | \/ | ___ __ _ ___ _ _ _ __ ___ ___
; | |\/| |/ _ \/ _` / __| | | | '__/ _ \/ __|
; | | | | __/ (_| \__ \ |_| | | | __/\__ \
; |_| |_|\___|\__,_|___/\__,_|_| \___||___/
;[mNextUnitVar]
Measure=String
String=
#units#
Substitute="f":"0","m":"1","0":"m","1":"f"
Disabled=1[mContextMenuUnit]
Measure=String
String=
#units#
Substitute="m":"english","f":"metric"
Disabled=1; Parent we
bp
arser measure that breaks the feed into four main subtrees
[mWeatherRoot]
Measure=Plugin
Plugin=WebParser
URL="http://wxdata.weather.com/wxdata/weather/local/#location#?unit=#units#&dayf=3&locale=#language#&cc=*"
RegExp=(?siU)(.*)<\/head>.*(.*)<\/loc>.*(.*)<\/cc>.*(.*)<\/dayf>
ForceReload=1
Debug=0
UpdateRate=1200
FinishAction=[!EnableMeasureGroup weather][!UpdateMeter *][!Redraw]; Measures that parse unit strings from the header tree
[mUnitTemperature]
Measure=Plugin
Plugin=WebParser
URL=[mWeatherRoot]
RegExp=(.*)<\/ut>
StringIndex=1
StringIndex2=1
Disabled=1
Group=weather[mUnitDistance]
Measure=Plugin
Plugin=WebParser
URL=[mWeatherRoot]
RegExp=(.*)<\/ud>
StringIndex=1
StringIndex2=1
Disabled=1
Group=weather[mUnitSpeed]
Measure=Plugin
Plugin=WebParser
URL=[mWeatherRoot]
RegExp=(.*)<\/us>
StringIndex=1
StringIndex2=1
Disabled=1
Group=weather[mUnitPressure]
Measure=Plugin
Plugin=WebParser
URL=[mWeatherRoot]
RegExp=(.*)<\/up>
StringIndex=1
StringIndex2=1
Disabled=1
Group=weather[mUnitPrecipitation]
Measure=Plugin
Plugin=WebParser
URL=[mWeatherRoot]
RegExp=(.*)<\/ur>
StringIndex=1
StringIndex2=1
Disabled=1
Group=weather; Measures that parse location information from the location tree
[mLocationName]
Measure=Plugin
Plugin=WebParser
URL=[mWeatherRoot]
RegExp=(.*)<\/dnam>
StringIndex=2
StringIndex2=1
Disabled=1
Group=weather; _______ _
; |__ __| | |
; | | ___ __| | __ _ _ _
; | |/ _ \ / _` |/ _` | | | |
; | | (_) | (_| | (_| | |_| |
; |_|\___/ \__,_|\__,_|\__, |
; __/ |
; |___/
;
; Measures that parse current conditions from the "cc" tree[mObservationStation]
Measure=Plugin
Plugin=WebParser
URL=[mWeatherRoot]
RegExp=(.*)<\/obst>
StringIndex=3
StringIndex2=1
Disabled=1
Group=weather[mObservationTime]
Measure=Plugin
Plugin=WebParser
URL=[mWeatherRoot]
RegExp=(.*)<\/lsup>
StringIndex=3
StringIndex2=1
Disabled=1
Group=weather[mCurrentTemp]
Measure=Plugin
Plugin=WebParser
URL=[mWeatherRoot]
RegExp=(.*)<\/tmp>
StringIndex=3
StringIndex2=1
Disabled=1
Group=weather[mCurrentFeelsLike]
Measure=Plugin
Plugin=WebParser
URL=[mWeatherRoot]
RegExp=(.*)<\/flik>
StringIndex=3
StringIndex2=1
Disabled=1
Group=weather[mCurrentConditionText]
Measure=Plugin
Plugin=WebParser
URL=[mWeatherRoot]
RegExp=(.*)<\/t>
StringIndex=3
StringIndex2=1
Disabled=1
Group=weather[mCurrentVisibleDistance]
Measure=Plugin
Plugin=WebParser
URL=[mWeatherRoot]
RegExp=(.*)<\/vis>
StringIndex=3
StringIndex2=1
Disabled=1
Group=weather[mCurrentHumidity]
Measure=Plugin
Plugin=WebParser
URL=[mWeatherRoot]
RegExp=(.*)<\/hmid>
StringIndex=3
StringIndex2=1
Disabled=1
Group=weather[mCurrentWindSpeed]
Measure=Plugin
Plugin=WebParser
URL=[mWeatherRoot]
RegExp=(?siU).*(.*)<\/s>.*<\/wind>
StringIndex=3
StringIndex2=1
Disabled=1
Group=weather[mCurrentWindHeading]
Measure=Plugin
Plugin=WebParser
URL=[mWeatherRoot]
RegExp=(?siU).*(.*)<\/t>.*<\/wind>
StringIndex=3
StringIndex2=1
Disabled=1
Group=weather; ______ _
; | ____| | |
; | |__ ___ _ __ ___ ___ __ _ ___| |_
; | __/ _ \| '__/ _ \/ __/ _` / __| __|
; | | | (_) | | | __/ (_| (_| \__ \ |_
; |_| \___/|_| \___|\___\__,_|___/\__|
;
; Measures that parse forecast data from the "dayf" tree[mLastForecastUpdate]
Measure=Plugin
Plugin=WebParser
URL=[mWeatherRoot]
RegExp=(.*)<\/lsup>
StringIndex=4
StringIndex2=1
Disabled=1
Group=weather[mForecastParent]
Measure=Plugin
Plugin=WebParser
URL=[mWeatherRoot]
RegExp=(?sU).*.*
StringIndex=4
Disabled=1
Group=weather; ___
; / _ \
; | | | |
; | |_| |
; \___/
;[mWeekday0]
Measure=Plugin
Plugin=WebParser
URL=[mForecastParent]
RegExp=
#forecastDayName#
StringIndex=1
StringIndex2=1
Disabled=1
Group=weather
Substitute="Sunday":"
#Sunday#
","Monday":"
#Monday#
","Tuesday":"
#Tuesday#
","Wednesday":"
#Wednesday#
","Thursday":"
#Thursday#
","Friday":"
#Friday#
","Saturday":"
#Saturday#
"[mHigh0]
Measure=Plugin
Plugin=WebParser
URL=[mForecastParent]
RegExp=
#forecastHigh#
StringIndex=1
StringIndex2=1
Disabled=1
Group=weather[mLow0]
Measure=Plugin
Plugin=WebParser
URL=[mForecastParent]
RegExp=
#forecastLow#
StringIndex=1
StringIndex2=1
Disabled=1
Group=weather[mDaytimeConditionText0]
Measure=Plugin
Plugin=WebParser
URL=[mForecastParent]
RegExp=#forecastCondition#
StringIndex=1
StringIndex2=1
Disabled=1
Group=weather[mDaytimeChancePrecip0]
Measure=Plugin
Plugin=WebParser
URL=[mForecastParent]
RegExp=#forecastPrecip#
StringIndex=1
StringIndex2=1
Disabled=1
Group=weather; _
; / |
; | |
; | |
; |_|
;[mWeekday1]
Measure=Plugin
Plugin=WebParser
URL=[mForecastParent]
RegExp=
#forecastDayName#
StringIndex=2
StringIndex2=1
Disabled=1
Group=weather
Substitute="Sunday":"
#Sunday#
","Monday":"
#Monday#
","Tuesday":"
#Tuesday#
","Wednesday":"
#Wednesday#
","Thursday":"
#Thursday#
","Friday":"
#Friday#
","Saturday":"
#Saturday#
"[mHigh1]
Measure=Plugin
Plugin=WebParser
URL=[mForecastParent]
RegExp=
#forecastHigh#
StringIndex=2
StringIndex2=1
Disabled=1
Group=weather[mLow1]
Measure=Plugin
Plugin=WebParser
URL=[mForecastParent]
RegExp=
#forecastLow#
StringIndex=2
StringIndex2=1
Disabled=1
Group=weather[mDaytimeConditionText1]
Measure=Plugin
Plugin=WebParser
URL=[mForecastParent]
RegExp=#forecastCondition#
StringIndex=2
StringIndex2=1
Disabled=1
Group=weather[mDaytimeChancePrecip1]
Measure=Plugin
Plugin=WebParser
URL=[mForecastParent]
RegExp=#forecastPrecip#
StringIndex=2
StringIndex2=1
Disabled=1
Group=weather; ____
; |___ \
; __) |
; / __/
; |_____|
;[mWeekday2]
Measure=Plugin
Plugin=WebParser
URL=[mForecastParent]
RegExp=
#forecastDayName#
StringIndex=3
StringIndex2=1
Disabled=1
Group=weather
Substitute="Sunday":"
#Sunday#
","Monday":"
#Monday#
","Tuesday":"
#Tuesday#
","Wednesday":"
#Wednesday#
","Thursday":"
#Thursday#
","Friday":"
#Friday#
","Saturday":"
#Saturday#
"[mHigh2]
Measure=Plugin
Plugin=WebParser
URL=[mForecastParent]
RegExp=
#forecastHigh#
StringIndex=3
StringIndex2=1
Disabled=1
Group=weather[mLow2]
Measure=Plugin
Plugin=WebParser
URL=[mForecastParent]
RegExp=
#forecastLow#
StringIndex=3
StringIndex2=1
Disabled=1
Group=weather[mDaytimeConditionText2]
Measure=Plugin
Plugin=WebParser
URL=[mForecastParent]
RegExp=#forecastCondition#
StringIndex=3
StringIndex2=1
Disabled=1
Group=weather[mDaytimeChancePrecip2]
Measure=Plugin
Plugin=WebParser
URL=[mForecastParent]
RegExp=#forecastPrecip#
StringIndex=3
StringIndex2=1
Disabled=1
Group=weather; __ __ _
; | \/ | ___| |_ ___ _ __ ___
; | |\/| |/ _ \ __/ _ \ '__/ __|
; | | | | __/ || __/ | \__ \
; |_| |_|\___|\__\___|_| |___/
;[currentBackground]
Meter=Image
DynamicVariables=1
Group=cc
SolidColor=0,0,0,1
X=0
Y=0
W=#CURRENTCONFIGWIDTH#
H=#CURRENTCONFIGHEIGHT#
LeftMouseUpAction=[!HideMeterGroup "cc"][!ShowMeterGroup "fc"][!UpdateMeterGroup "fc"][!Redraw][currentlyText]
Meter=STRING
MeasureName=mObservationStation
MeasureName2=mObservationTime
MeterStyle=allString
FontSize=((45*#phi#)*#phi#)
Group=cc
StringAlign=RIGHT
Text="#Currently#"
ToolTipText=%2
ToolTipTitle=%1
X=150
Y=35[currentTempurature]
Meter=STRING
MeasureName=mCurrentTemp
MeasureName2=mCurrentFeelsLike
MeterStyle=allString
FontColor=#highlight#
FontSize=45
Group=cc
StringAlign=LEFT
Text=%1°
ToolTipText="~ %2°"
X=8r
Y=0[currentCondition]
Meter=STRING
MeasureName=mCurrentConditionText
MeasureName2=mCurrentVisibleDistance
MeasureName3=mUnitDistance
MeasureName4=mCurrentHumidity
MeasureName5=mCurrentWindSpeed
MeasureName6=mCurrentWindHeading
MeasureName7=mUnitSpeed
MeterStyle=allString
FontSize=(45*#phi#)
Group=cc
Padding=0,0,5,0
StringAlign=LEFT
Text="%1"
ToolTipText="#Humidity#: %4%#CRLF##Visibility#: %2%3#CRLF##Wind#: %5%7 @%6°"
X=-45r
Y=-12R[forecastStringStyle]
FontSize=12
StringAlign=LEFT
Padding=3,0,3,0
Group=fc
Hidden=1
Text="%1, %2° / %3° (%4%)"
X=20r
Y=-1R
LeftMouseUpAction=[!HideMeterGroup "fc"][!ShowMeterGroup "cc"][!UpdateMeterGroup "cc" ][!Redraw][forecastBackground]
Meter=Image
DynamicVariables=1
Group=fc
Hidden=1
SolidColor=0,0,0,1
X=0
Y=0
W=#CURRENTCONFIGWIDTH#
H=#CURRENTCONFIGHEIGHT#[forecastLabel0]
Meter=String
MeasureName=mWeekday0
MeterStyle=allString | forecastStringStyle
FontColor=#highlight#
FontSize=14
Text=%1
X=10
Y=10[forecastInfo0]
Meter=String
MeterStyle=allString | forecastStringStyle
MeasureName=mDaytimeConditionText0
MeasureName2=mLow0
MeasureName3=mHigh0
MeasureName4=mDaytimeChancePrecip0[forecastLabel1]
Meter=String
MeasureName=mWeekday1
MeterStyle=allString | forecastStringStyle
FontColor=#highlight#
FontSize=14
Text=%1
X=10
Y=3R[forecastInfo1]
Meter=String
MeterStyle=allString | forecastStringStyle
MeasureName=mDaytimeConditionText1
MeasureName2=mLow1
MeasureName3=mHigh1
MeasureName4=mDaytimeChancePrecip1[forecastLabel2]
Meter=String
MeasureName=mWeekday2
MeterStyle=allString | forecastStringStyle
FontColor=#highlight#
FontSize=14
Text=%1
X=10
Y=3R[forecastInfo2]
Meter=String
MeterStyle=allString | forecastStringStyle
MeasureName=mDaytimeConditionText2
MeasureName2=mLow2
MeasureName3=mHigh2
MeasureName4=mDaytimeChancePrecip2