# Alias2D sh profile
#
# The commands in this file are executed when an sh user first
# logs in.
#

# Set the interrupt character to Ctrl-c and do clean backspacing.
stty intr '^C' echoe 

# Set the TERM environment variable
eval `tset -s -Q`

# Set the default X server.
DISPLAY=:0 export DISPLAY

# List files in columns if standard out is a terminal.
ls()    { if [ -t ]; then /bin/ls -C $*; else /bin/ls $*; fi }

PATH=${PATH}:/usr/Alias2D/bin

# Put the product icons in workspace
for i in /usr/Alias2D/bin/*
do
	/usr/sbin/fetch $i
done

