User:Mattx86/Bash Profile

From Alpine Linux
Revision as of 00:58, 7 November 2010 by Mattx86 (talk | contribs) (Small update)

Here's the ~/.bash_profile that I use:

alias apk='apk --progress'

COL_YEL="\[\e[1;33m\]"
COL_GRA="\[\e[0;37m\]"
COL_WHI="\[\e[1;37m\]"
COL_GRE="\[\e[1;32m\]"
COL_RED="\[\e[1;31m\]"

if test "$UID" -eq 0 ; then
	_p=" #"
else
	_p=">"
fi
COLORIZED_PROMPT="${_COL_USER}\u${COL_WHI}@${COL_YEL}\h${COL_WHI}:\w${_p} \[\e[m\]"
case $TERM in
	*term | rxvt | screen )
		PS1="${COLORIZED_PROMPT}\[\e]0;\u@\h:\w\007\]" ;;
	linux )
		PS1="${COLORIZED_PROMPT}" ;;
	* )
		PS1="\u@\h:\w${_p} " ;;
esac
shopt -s checkwinsize