Fortune/joke on terminal

Hi guys,

Anyone knows how to enable fortune cookie/joke on terminal like this screenshot ?

Screenshot-Terminal.png
 
make your shell to be login shell - tcsh -l for example
or at least i did it like that years a go.. :)
 
Fortune must exist in /usr/games/ and put this in ~/.login:
Code:
[ -x /usr/games/fortune ] && /usr/games/fortune freebsd-tips

The tips that pop up are a bit different from the screenshot though.
 
Judging by the picture it looks like games/cowsay.

Install it and run % cowsay -f daemon Dameon for President!. Have a look at /usr/local/share/cows for more...uh.. cows.
 
Back
Top