#!perl =head1 NAME StrfClock - a Tk based clock. =head1 SYNOPSIS StrfClock [strftime time formats] =head1 DESCRIPTION This pops up a Tk based digital clock that can be used to display the current date and time in various formats based on strftime. This script is based on, and is part of, the Perl Tk::Month module. =head1 OPTIONS Most of these options correspond to the configuration options of the module Tk::StrfClock. =head1 SEE ALSO See also Perl module Tk::Month. =head1 VERSION This is version 1.4 of Tk::Month. =head1 COPYRIGHT Copyright (c) 1998-2007 Anthony Fletcher. All rights reserved. This script is free software; you can redistribute them and/or modify them under the same terms as Perl itself. This code is supplied as-is - use at your own risk. =cut use 5; use warnings; use strict; use Tk::StrfClock qw(StrfClock); StrfClock(@ARGV); 1;