From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B05151382C5 for ; Tue, 1 Dec 2020 13:16:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CEF9BE07D7; Tue, 1 Dec 2020 13:16:06 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B53FAE07D7 for ; Tue, 1 Dec 2020 13:16:06 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4F858340E62 for ; Tue, 1 Dec 2020 13:16:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 50847448 for ; Tue, 1 Dec 2020 13:16:03 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1606828557.ca824f512dac614cc67d618e726582e8a4ff0f7b.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-shells/bash/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-shells/bash/files/bashrc X-VCS-Directories: app-shells/bash/files/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: ca824f512dac614cc67d618e726582e8a4ff0f7b X-VCS-Branch: master Date: Tue, 1 Dec 2020 13:16:03 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 29930f30-f88c-48c9-9d57-6512b7045b3f X-Archives-Hash: 586543248392d48632066c463b770de7 commit: ca824f512dac614cc67d618e726582e8a4ff0f7b Author: Marios Titas gmx com> AuthorDate: Mon Nov 30 05:39:16 2020 +0000 Commit: Lars Wendler gentoo org> CommitDate: Tue Dec 1 13:15:57 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca824f51 app-shells/bash: add support for TERM=tmux in bashrc Closes: https://bugs.gentoo.org/757711 Signed-off-by: Marios Titas gmx.com> Closes: https://github.com/gentoo/gentoo/pull/18453 Signed-off-by: Lars Wendler gentoo.org> app-shells/bash/files/bashrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app-shells/bash/files/bashrc b/app-shells/bash/files/bashrc index 8d9c29738b6..2f3dc775545 100644 --- a/app-shells/bash/files/bashrc +++ b/app-shells/bash/files/bashrc @@ -38,7 +38,7 @@ shopt -s histappend # Change the window title of X terminals case ${TERM} in - [aEkx]term*|rxvt*|gnome*|konsole*|interix) + [aEkx]term*|rxvt*|gnome*|konsole*|interix|tmux*) PS1='\[\033]0;\u@\h:\w\007\]' ;; screen*) @@ -80,7 +80,7 @@ else # Some systems (e.g. BSD & embedded) don't typically come with # dircolors so we need to hardcode some terminals in here. case ${TERM} in - [aEkx]term*|rxvt*|gnome*|konsole*|screen|cons25|*color) use_color=true;; + [aEkx]term*|rxvt*|gnome*|konsole*|screen|tmux|cons25|*color) use_color=true;; esac fi