Samurize Scripts

Tidied the whole thing up and added a few thing, still looking good :)

Desktop1.jpg
 
New screenie cause I've revamped the network info so show data up/down speeds with progress bars to match the rest.

Config file if anyone wants it is here.

screen06.jpg


Edit: Pic updated because I think monkeytronixs theme goes so well with it - thanks mate! :D (Maybe one day I'll change my icons!)


Andy.
 
Last edited:
where are people getting all these pretty clock / hdd / ram icons etc, and in such high res too, as the icons that are obviously XP icons are only like 50x50
 
Andy C - Nice theme and Samurize setup m8 :)

But your weather is wrong :(
Has anyone actually managed to get the forecast to work correctly ??

weather.jpg


I'm confused as to which .vbs file I should be linking to on each Active Script, is it the WeatherPlus.vbs or the RefreshWeatherPlus.vbs ??

Also, how do you link the ExtendedWeather.vbs to the other settings - i.e. how does it know which town & country you're in ?
 
Last edited:
Right,

The 2 temperatures that are shown are the High/Low forecast ie so you can expect the temperature to be somewhere in between.

To change this you need to edit the WeatherPlus.vbs

Code:
Private Function getFCTemp (aNodeId)
  Dim tSign
  If (USE_CELSIUS= True) Then
    tSign= "°C"
  Else
    tSign= "°F"
  End If

  getFCTemp= fNodes.item(aNodeId).childNodes.item(1).text & "/" & fNodes.item(aNodeId).childNodes.item(2).text & tSign
End Function

Change this to

Code:
Dim tSign
  If (USE_CELSIUS= True) Then
    tSign= "°C"
  Else
    tSign= "°F"
  End If

  getFCTemp= fNodes.item(aNodeId).childNodes.item(1).text & tsign
nd Function

This will only display the High forecast, change childNodes.item to (2) and it will show the low forecast.

You should be linking to the WeatherPlus.vbs with your active scripts.

With the ExtendedWeather.vbs, open it up and you can change your location within the vbs file.

Code:
City    = "cambridge, uk" ' Set this to your city, dont forget the format "city, country".
Celcius = true ' If you want the degrees in celcius or farenheit.
MPH     = true ' If you want the wind speed in miles or kilometer per hour.
 
Back
Top Bottom