#
# /etc/profile
#

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

INPUTRC="/etc/inputrc"
LESS="-R"

# Some readline stuff that is fairly common
HISTSIZE=1000
HISTCONTROL="erasedups"

export HISTSIZE HISTCONTROL INPUTRC LESS

#Set our umask
umask 022

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

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
