diff options
author | root <root@krebs> | 2011-08-06 01:36:29 +0200 |
---|---|---|
committer | root <root@krebs> | 2011-08-06 01:36:29 +0200 |
commit | 40103bc2e86d12428ee146a6785c8462afd0ea17 (patch) | |
tree | 0b2d39df0ccd6bf6d9bf762fe2841c6280a74616 | |
parent | be9d399dad2948c7f614e19b0ae145b15bb2c7a3 (diff) |
Edited the output so espeak can pronounce it
-rwxr-xr-x | kachelmann/conditions | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kachelmann/conditions b/kachelmann/conditions index 9880b397..1a798e42 100755 --- a/kachelmann/conditions +++ b/kachelmann/conditions @@ -3,5 +3,5 @@ use XML::Simple; system("w3m -dump \"http://www.google.com/ig/api?weather=70327-stuttgart&hl=de\" > /tmp/kachelmann/weather.xml"); my $xml = new XML::Simple; my $data = $xml->XMLin("/tmp/kachelmann/weather.xml"); -my $sentence = "Die Wetterkondition ist: $data->{weather}->{current_conditions}->{condition}->{data}\n bei $data->{weather}->{current_conditions}->{temp_c}->{data} Grad Celsius\n"; +my $sentence = "Die Wetterkondition ist: $data->{weather}->{current_conditions}->{condition}->{data}\n bei $data->{weather}->{current_conditions}->{temp_c}->{data} Grad Zelsius\n"; system("espeak -v de \"$sentence\""); |