diff options
author | Martin Schlemmer <azarah@gentoo.org> | 2005-07-06 12:32:50 +0000 |
---|---|---|
committer | Martin Schlemmer <azarah@gentoo.org> | 2005-07-06 12:32:50 +0000 |
commit | a257468b76781cbc036e74fc3122eaf2ba7a4aac (patch) | |
tree | 13bbac85db45fa012b03eec333f8b13553cc3fed /app-shells | |
parent | Fix RDEPEND. (diff) | |
download | gentoo-2-a257468b76781cbc036e74fc3122eaf2ba7a4aac.tar.gz gentoo-2-a257468b76781cbc036e74fc3122eaf2ba7a4aac.tar.bz2 gentoo-2-a257468b76781cbc036e74fc3122eaf2ba7a4aac.zip |
Add support for rxvt-unicode in the window title code, bug #98090.
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'app-shells')
-rw-r--r-- | app-shells/bash/ChangeLog | 5 | ||||
-rw-r--r-- | app-shells/bash/files/dot-bashrc | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/app-shells/bash/ChangeLog b/app-shells/bash/ChangeLog index 201cb0a6f4c7..118fd3d094c4 100644 --- a/app-shells/bash/ChangeLog +++ b/app-shells/bash/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-shells/bash # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/ChangeLog,v 1.69 2005/07/05 22:52:33 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/ChangeLog,v 1.70 2005/07/06 12:32:50 azarah Exp $ + + 06 Jul 2005; Martin Schlemmer <azarah@gentoo.org> files/dot-bashrc: + Add support for rxvt-unicode in the window title code, bug #98090. *bash-3.0-r12 (05 Jul 2005) diff --git a/app-shells/bash/files/dot-bashrc b/app-shells/bash/files/dot-bashrc index bf58f7519fc7..fa84bfff345a 100644 --- a/app-shells/bash/files/dot-bashrc +++ b/app-shells/bash/files/dot-bashrc @@ -1,5 +1,5 @@ # /etc/skel/.bashrc: -# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/files/dot-bashrc,v 1.1 2005/04/30 00:08:01 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/files/dot-bashrc,v 1.2 2005/07/06 12:32:50 azarah Exp $ # # This file is sourced by all *interactive* bash shells on startup, # including some apparently interactive shells such as scp and rcp @@ -28,7 +28,7 @@ alias ls="ls --color=auto" # Change the window title of X terminals case $TERM in - xterm*|rxvt|Eterm|eterm) + xterm*|rxvt*|Eterm|eterm) PROMPT_COMMAND='echo -ne "\033]0;${USER}@${HOSTNAME%%.*}:${PWD/$HOME/~}\007"' ;; screen) |