Leggi le FAQ ufficiali di gnome-terminal
Vedi anche questo bugreport.
Se usi Debian e non vuoi aspettare che i diversi manutentori decidano finalmente dov'è "la posizione migliore per lo script", puoi fare quanto segue:
Modifica ~/.bashrc
, cerca le seguenti righe (potrebbero apparire leggermente diverse):
if [ "$color_prompt" = yes ]; then
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\[email protected]\h\[\033[00m\]:\[\033[01;m\]\w\[\033[00m\]\$ '
else
PS1='${debian_chroot:+($debian_chroot)}\[email protected]\h:\w\$ '
fi
e aggiungi al ramo else:
# XXX hack to fix ctrl + shift + N
. /etc/profile.d/vte.sh
Risultato in:
if [ "$color_prompt" = yes ]; then
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\[email protected]\h\[\033[00m\]:\[\033[01;m\]\w\[\033[00m\]\$ '
else
PS1='${debian_chroot:+($debian_chroot)}\[email protected]\h:\w\$ '
# XXX hack to fix ctrl + shift + N
. /etc/profile.d/vte.sh
fi