On 4 February 2010 09:52, Cengiz Tas <ceng...@googlemail.com> wrote:
> Hi..
>
> actually I'm working on a small suckless app displaying a string from stdin
> on a fullscreen X Window in the style of an screensaver/conky.
>
> e.g. to display a clock
>
> date '+%T' | figlet | myapp

while :
do
    date '+%T' | figlet
    sleep 1
done | myapp

Cheers,
Anselm

Reply via email to