nigel barker wrote:

This little script was given to me by friendly people at just linux forums

#!/bin/bash
xsetroot -cursor_name watch &
konqueror /mnt/student/ -geometry 600x500 &
sleep 5
xsetroot -cursor_name left_ptr
exit
Thanks Nigel that works a treat. Here is my updated version of it, I've named it xalf.sh ;-)

P.
---
#!/bin/bash
if [ $# -lt 1 ]
then
 echo "Usage: $0 <program> [arg1 arg2 ... argN]" 1>&2
 exit
fi

appl=$1
shift
args=""
while [ $# -gt 0 ]
do
 args=`echo "${args}$1 "`
 shift
done

xsetroot -cursor_name watch &
$appl $args &
sleep 5
xsetroot -cursor_name left_ptr
exit



-------------------------------------------------------
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
_____________________________________________________________________
Ltsp-discuss mailing list.   To un-subscribe, or change prefs, goto:
     https://lists.sourceforge.net/lists/listinfo/ltsp-discuss
For additional LTSP help,   try #ltsp channel on irc.freenode.net

Reply via email to