Hi, yeah, I've adopted tk-clock along time ago for my clock. I have a very minimalist desktop, and all I wanted was a tiny digital clock in the lower right hand corner. It also stays on top across my 10 virtual desktops. I've shown how to cut off the date too. I have a 1024x768 desktop, so you may have to adjust the geometry for your desktop.
#!/usr/bin/perl
use Tk;
use Tk::Clock;
my $m = MainWindow->new();
#$m -> geometry("70x30+930+740"); #with date
$m -> geometry("70x15+940+755"); #no date
$m->overrideredirect(1); #no xterm decorations
my $c = $m->Clock (-background => "Black");
$c->config (
useAnalog => 0,
useDigital => 1,
# tickColor => "Orange",
# handColor => "Red",
# secsColor => "Green",
timeColor => "lightBlue",
# timeFormat => "hh:MM A",
timeFormat => "HH:MM:SS",
# dateColor => "Gold",
# dateFormat => "m/d/y",
timeFont => "-misc-fixed-medium-r-normal--13-*-75-75-c-*-iso8859-
+1",
);
$c->pack;
MainLoop;
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.