6

These two geeklets will allow you to display sunrise and sunset times from Yahoo Weather.

Once installed you will need to change the url within the script to point to the yahoo weather page for you location.

These and more geeklets can be found on  http://www.8bitscraps.co.uk/tag/geektools

Screenshot

Geeklet files to download

Comments

User Avatar
wweber 598 days ago
How can I change the time display to 24h format?
User Avatar
mercury52 310 days ago
24 hour clock, with seconds: `date '+%H:%M:%S'`

24 hour clock, without seconds: `date '+%H:%M'`
User Avatar
Bouffski 281 days ago
Same question as wweber;

@mercury52: Don't see any "date" reference in this sunny glets...

curl --silent http://weather.yahoo.com/netherlands/south-holland/the-hague-726874/ | perl -pe 's/n//g' | perl -pe 's/.*Sunrise:/Sunrise: /m' | perl -pe 's/.*//m'



Cheers

Log in to comment or register here.