1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-16 18:03:22 +00:00

Fixed PS1 to show a # for the root-user

svn path=/nixos/trunk/; revision=11077
This commit is contained in:
Sander van der Burg 2008-03-12 11:18:43 +00:00
parent 7c93a71468
commit 1e5f26537d

View file

@ -3,7 +3,7 @@
# A nice prompt.
PROMPT_COLOR="1;31m"
let $UID && PROMPT_COLOR="1;32m"
PS1="\n\[\033[$PROMPT_COLOR\][\u@\h:\w]$\[\033[0m\] "
PS1="\n\[\033[$PROMPT_COLOR\][\u@\h:\w]\\$\[\033[0m\] "
if test "x$TERM" == "xxterm"; then
PS1="\033]2;\h:\u:\w\007$PS1"
fi