PROJET AUTOBLOG


shaarli-Links

Site original : shaarli-Links

⇐ retour index

Note: .bashrc coloration

mardi 27 novembre 2018 à 16:45
# à mettre dans ~/.bashrc
# et dans /root/.bashrc
```
if [[ ${EUID} == 0 ]] ; then
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;31m\]┌─\u@\h\[\033[00m\] \[\033[01;34m\]\w\n\[\033[1;31m\]└→ \[\033[01;34m\]\$\[\033[00m\] '
else
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]┌─\u@\h\[\033[00m\] \[\033[01;34m\]\w\n\[\033[1;32m\]└→ \[\033[01;34m\]\$\[\033[00m\] '
fi
```
Permalink