From b645f335929bed4c18529759555375f93cebbab3 Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Thu, 10 Sep 2015 12:15:55 +0300 Subject: [PATCH] bashrc: fix dynamic terminal title --- rc/bashrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rc/bashrc b/rc/bashrc index 9fd70741..fcf3e1dc 100644 --- a/rc/bashrc +++ b/rc/bashrc @@ -78,8 +78,8 @@ fi # If this is an xterm set the title to user@host:dir case "$TERM" in -xterm*|rxvt*) - PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1" +xterm*|*rxvt*) + PS1="\[\e]0;\u@\h: \w\a\]$PS1" ;; *) ;;