Greetings all,
I am trying to set up my Bash Terminal to show:
I would like the cursor to blink and on the next line WITH the $.
Code:
user@computerName:~/dir/dir
$ _
But I have...
Code:
user@computerName:~/dir/dir$
_
I tinkered around and am not sure what next?
Code:
if [ "$color_prompt" = yes ]; then
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
else
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
PS1="$PS1\n"
fi
unset color_prompt force_color_prompt
# If this is an xterm set the title to user@host:dir
case "$TERM" in
xterm*|rxvt*)
PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\n: \w\a\]$PS1"
PS1="$PS1\n"
;;
*)
;;
esac