Linux/2-Config/bashrc

From Wiki
< Linux‎ | 2-Config
Revision as of 13:48, 12 February 2018 by Marcluer (talk | contribs) (Die Seite wurde neu angelegt: „== ~/.bashrc == * color + root/username <blockquote> <pre> if [ "$color_prompt" = yes ]; then if [[ ${EUID} == 0 ]] ; then PS1='${debian_chroot:+(…“)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

~/.bashrc

  • color + root/username
if [ "$color_prompt" = yes ]; then
    if [[ ${EUID} == 0 ]] ; then
        PS1='${debian_chroot:+($debian_chroot)}\[\033[01;31m\]\u@\h\[\033[01;34m\] \W \$\[\033[00m\] '               # <- changes
    else
        PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\] \[\033[01;34m\]\w \$\[\033[00m\] '
    fi
else
    PS1='${debian_chroot:+($debian_chroot)}\u@\h \w \$ '
fi