Spawning events in Perl::Tk is probably better done with Tk::after. This allows them to be spawned at the top of the event loop, avoiding calls like sleep() that will block user input and screen updates to the gui.

For recurring calls, Tk::after offers repeat().

In your case, something like:

$frame->repeat(30000,\&doit); sub doit { &disk_space; &refresh_tally; }
You may also want to offer a refresh button if the user wishes to get the latest stats.

See "perldoc Tk::callbacks" and "perldoc Tk::after" for more info.


In reply to Re: Updating perl/Tk fluid-like by kschwab
in thread Updating perl/Tk fluid-like by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.