#
# /etc/profile
#

export PATH="/bin:/usr/bin:/sbin:/usr/sbin"

export LESSCHARSET="latin1"
export INPUTRC="/etc/inputrc"
export LESS="-R"

# Locale settings (find your locale with 'locale -a')
export LANG="C"
export LC_COLLATE="C"

export COLUMNS LINES

export PS1='[Arch Linux: \W]\$ '
export PS2='> '

umask 022

alias ls='ls --color=auto'
alias dir='dir --color=auto'

cd /
echo "Hit ENTER to enter the bash shell ..."
read
clear
if ! [ -e /tmp/.setup ]; then
	[ $(which /arch/setup 2> /dev/null) ] && /arch/setup
fi
# End of file
