公式の gnome-terminal FAQ を読む
このバグレポートも参照してください。
Debian を使用していて、さまざまなメンテナが最終的に「スクリプトの最適な位置」を決定するのを待ちたくない場合は、次のことを行うことができます:
~/.bashrc
を編集 、次の行を検索します (若干異なる場合があります):
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
そして、else ブランチに追加します:
# XXX hack to fix ctrl + shift + N
. /etc/profile.d/vte.sh
結果:
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