mirror of
https://github.com/NaomiAmethyst/dots.git
synced 2025-08-05 16:48:38 +00:00
12 lines
190 B
Text
Executable file
12 lines
190 B
Text
Executable file
if [ -z "${USER}" ] ; then
|
|
USER=$LOGNAME
|
|
fi
|
|
|
|
if [ $USER ] && [ $USER = root ] ; then
|
|
BASE="#"
|
|
else
|
|
BASE="$"
|
|
fi
|
|
|
|
PS1=$'\E[01;32m'"${USER} "$'\E[01;34m''$PWD'" ${BASE} "$'\E[0m'
|
|
export PS1
|