dots/ksh/prompt

10 lines
132 B
Text
Raw Normal View History

2009-01-13 01:31:32 -06:00
if [ $USER = root ] ; then
BASE="#"
else
BASE="$"
fi
PS1=$'\E[01;32m'"${USER} "$'\E[01;34m''$PWD'" ${BASE} "$'\E[0m'
export PS1