View Single Post
  #3   (View Single Post)  
Old 17th February 2010
J65nko J65nko is offline
Administrator
 
Join Date: May 2008
Location: Budel - the Netherlands
Posts: 4,128
Default

I use the following script to create 2 new xterms
Code:
#!/bin/sh

size=10
if [ $1 ] ; then
   xterm -fa lucidasanstypewriter-${size} -bg $1  &
else
   xterm -fa lucidasanstypewriter-${size} -bg lightblue &
fi

xterm -fa arial -fs ${size}  -geometry +250+200 &
__________________
You don't need to be a genius to debug a pf.conf firewall ruleset, you just need the guts to run tcpdump
Reply With Quote