diff options
author | Mike Frysinger <vapier@gentoo.org> | 2007-02-04 23:58:27 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2007-02-04 23:58:27 +0000 |
commit | 10dace99d34ea91945caa02a8c1fd2dedd861d0e (patch) | |
tree | 19ab3d155a9957f6dd0718a3228df8e4ad791162 /app-shells | |
parent | Updated to use final 4.4 release. (diff) | |
download | gentoo-2-10dace99d34ea91945caa02a8c1fd2dedd861d0e.tar.gz gentoo-2-10dace99d34ea91945caa02a8c1fd2dedd861d0e.tar.bz2 gentoo-2-10dace99d34ea91945caa02a8c1fd2dedd861d0e.zip |
Accept gnome* in enhanced output #165305 by Ed Catmur.
(Portage version: 2.1.2-r6)
Diffstat (limited to 'app-shells')
-rw-r--r-- | app-shells/bash/ChangeLog | 5 | ||||
-rw-r--r-- | app-shells/bash/files/bashrc | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/app-shells/bash/ChangeLog b/app-shells/bash/ChangeLog index e711f0a9b707..1ba17784d61f 100644 --- a/app-shells/bash/ChangeLog +++ b/app-shells/bash/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-shells/bash # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/ChangeLog,v 1.132 2007/01/18 18:35:43 dirtyepic Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/ChangeLog,v 1.133 2007/02/04 23:58:27 vapier Exp $ + + 04 Feb 2007; Mike Frysinger <vapier@gentoo.org> files/bashrc: + Accept gnome* in enhanced output #165305 by Ed Catmur. 18 Jan 2007; Ryan Hill <dirtyepic@gentoo.org> bash-3.2_p9-r1.ebuild: info symlink broke from move to ecompress. committing as obvious. diff --git a/app-shells/bash/files/bashrc b/app-shells/bash/files/bashrc index 8e9bc0198456..0447fb404c1c 100644 --- a/app-shells/bash/files/bashrc +++ b/app-shells/bash/files/bashrc @@ -25,7 +25,7 @@ shopt -s histappend # Change the window title of X terminals case ${TERM} in - xterm*|rxvt*|Eterm|aterm|kterm|gnome) + xterm*|rxvt*|Eterm|aterm|kterm|gnome*) PROMPT_COMMAND='echo -ne "\033]0;${USER}@${HOSTNAME%%.*}:${PWD/$HOME/~}\007"' ;; screen) @@ -37,7 +37,7 @@ use_color=false #BSD#@# BSD doesn't typically come with dircolors so we need #BSD#@# to hardcode some terminals in here. #BSD#@case ${TERM} in -#BSD#@ xterm*|rxvt*|Eterm|aterm|kterm|gnome|screen|cons25) use_color=true;; +#BSD#@ xterm*|rxvt*|Eterm|aterm|kterm|gnome*|screen|cons25) use_color=true;; #BSD#@esac # Set colorful PS1 only on colorful terminals. |