[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Immediate road map





> ;) to come up with these tips. And someone else to write a program to
> display them (I'd probably be able to write a shell script to do this, but
> I'm guessing a GUI would be better, as I'm probably the one of the few
> linux users who does everything without X installed. AFAIK, I'm the only
> person who has thought about following up on these ideas.

I could do a perl/Tk program to do this. That'd be the easy part. Here's a
start:

#!/bin/sh
string="Some string I want to display"

perl -e '
use Tk; 
$mw=MainWindow(); $a=$mw->Label(-text=> $ENV{string} )->pack();
MainLoop();
'

Now the real work would be in making the tips.

Cheers,
-- 
Donovan