summaryrefslogtreecommitdiffstats
path: root/bin/laptop/update-weather
blob: e3a6bc38562b5531e2fcc5968f6098d4797e64ed (plain) (blame)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env perl
use strict;
use warnings;

use Path::Class;

if (my $weather = `weather`) {
    file("$ENV{HOME}/.cache/weather")->openw->print($weather);
}