#	$NetBSD: dot.profile,v 1.25.4.1 2012/03/17 17:22:54 bouyer Exp $

PATH="/sbin:/usr/sbin:/bin:/usr/bin:/usr/pkg/sbin:/usr/pkg/bin:${HOME}/bin"
export PATH="${PATH}:/usr/X11R7/bin:/usr/X11R6/bin:/usr/local/sbin:/usr/local/bin"

# Uncomment the following line(s) to install binary packages
# from ftp.NetBSD.org via pkg_add.  (See also pkg_install.conf)
PKG_PATH=ftp://ftp.NetBSD.org/pub/pkgsrc/packages/NetBSD/$(uname -m)/$(uname -r)/All

export PKG_PATH

export BLOCKSIZE=1k
export HOST="$(hostname)"

if [ -x /usr/bin/tset ]; then
	eval $(tset -sQrm 'unknown:?unknown')
fi

umask 022
#ulimit -c 0

export ENV=/root/.shrc

# Do not display in 'su -' case
if [ -z "$SU_FROM" ]; then
        echo "We recommend that you create a non-root account and use su(1) for root access."
fi

if [ -x /usr/pkg/bin/most ]; then
	export PAGER="most -s"
elif [ -x /usr/pkg/bin/less ]; then
    export PAGER=less
else
    export PAGER=more
fi    

# Load our bashrc, if we have one.
# Put all your Bash configs in the following file.
if [ -f .bashrc ]; then
    . .bashrc
fi

# You can comment/remove this block after your first login ;)
# ------- Begin GIT Configurations --------------------------
if [ -x .git-configs-runme_before.sh ]; then
    ./.git-configs-runme_before.sh
    echo -e "\nYou can comment/remove this block."
    echo -e "Take a look inside your .profile file. ;)\n"
fi
# ------- END GIT Configurations ----------------------------
#

