Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > e5d8176b5f7b8e125fe5cdde215dbefa > files > 10

perl-Tk-Clock-0.340.0-2.mga4.noarch.rpm

#!/pro/bin/perl

# A weird clock where the hour hand uses a 24-hour scale
use Tk;
use Tk::Clock;

my $m = MainWindow->new;
my $c = $m->Clock->pack (-expand => 1, -fill => "both");
$c->config (
    anaScale  => 250,
    ana24hour => 1,
    tickFreq  => 2.5,
    )->config (anaScale => 0);

MainLoop;