Lea las preguntas frecuentes oficiales de gnome-terminal
Consulte también este informe de error.
Si usa Debian y no quiere esperar a que los diferentes mantenedores finalmente decidan cuál es "la mejor posición para el script", puede hacer lo siguiente:
Editar ~/.bashrc
, busque las siguientes líneas (pueden verse ligeramente diferentes):
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
y agregar a la otra rama:
# XXX hack to fix ctrl + shift + N
. /etc/profile.d/vte.sh
Resultando en:
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