Hey, I don't post here often, but I thought I should share a neat little script that I concocted earlier today. Basically what it does is display an "animated" message that can be tacked on to the end of your /etc/rc or in your $SHELLrc. Note that this only works on FreeBSD (as far as I know) and only works with the virtual console, so no xterms.
You don't have to use those colours, by the way. To see which colours are available, run vidcontrol show.
Code:
#!/bin/sh
echo "Welcome to..."
echo -n "F"
vidcontrol blue
echo -n "r"
vidcontrol green
echo -n "e"
vidcontrol cyan
echo -n "e"
vidcontrol red
echo -n "B"
vidcontrol brown
echo -n "S"
vidcontrol white
echo -n "D"