From mboxrd@z Thu Jan  1 00:00:00 1970
Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org)
	by finch.gentoo.org with esmtp (Exim 4.60)
	(envelope-from <gentoo-user+bounces-136690-garchives=archives.gentoo.org@lists.gentoo.org>)
	id 1SA5Y8-0007hQ-2L
	for garchives@archives.gentoo.org; Tue, 20 Mar 2012 20:20:56 +0000
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 4B689E072D;
	Tue, 20 Mar 2012 20:20:39 +0000 (UTC)
Received: from mail-lb0-f181.google.com (mail-lb0-f181.google.com [209.85.217.181])
	by pigeon.gentoo.org (Postfix) with ESMTP id 76D0CE06CC
	for <gentoo-user@lists.gentoo.org>; Tue, 20 Mar 2012 20:19:38 +0000 (UTC)
Received: by lbok6 with SMTP id k6so389505lbo.40
        for <gentoo-user@lists.gentoo.org>; Tue, 20 Mar 2012 13:19:37 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
        d=gmail.com; s=20120113;
        h=mime-version:sender:in-reply-to:references:from:date
         :x-google-sender-auth:message-id:subject:to:content-type;
        bh=H4hmGwfP8X9DsPf3+KX+Is8YyA5zv2jg10QYpkKaUA0=;
        b=B9qBxyjrPCZdHC76PO0hVy2kXRd884WVAFKuV4ZyVIWSXJ1ZzidTDWkX/vofIlpl62
         B0cfBhUC9khZMNhNb0NQxIYehQJiDWw5K4Z4dafdFT2WYFNlCUD9BcPyybflMHiVhPle
         6OtbV5u8MAXBzHeudFqs5ESOZGrM6ta08xNmdNqobEdom53M6w9xTQ4UadAjZATRokOt
         D90idWN8mTFJ7NZIWMw8m9Se0IJupR5FVkDnC5ccT1Rq4PFFqbLPcxfXv+2VzQXYbqPv
         hB/MlSkAZUAnH9xX5OHcreNANmECo5dGIz1XCbtnfXmZdNXIruViTj5SAnLGh0YXmeFw
         LlJQ==
Received: by 10.112.102.8 with SMTP id fk8mr442075lbb.61.1332274777443; Tue,
 20 Mar 2012 13:19:37 -0700 (PDT)
Precedence: bulk
List-Post: <mailto:gentoo-user@lists.gentoo.org>
List-Help: <mailto:gentoo-user+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-user+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-user+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-user.gentoo.org>
X-BeenThere: gentoo-user@lists.gentoo.org
Reply-to: gentoo-user@lists.gentoo.org
MIME-Version: 1.0
Sender: paul.hartman@gmail.com
Received: by 10.112.11.139 with HTTP; Tue, 20 Mar 2012 13:19:17 -0700 (PDT)
In-Reply-To: <20120320173217.GB1101@x4>
References: <CAEH5T2MC4dnxouTsqP1Wx-N3rfDX15rav90-utm=iMNfGcY45A@mail.gmail.com>
 <20120320160554.GA1101@x4> <CAEH5T2PiHYoyjKfJrFRSCZPJUY155=R9dcieX4S+vq=8WLR8QQ@mail.gmail.com>
 <20120320173217.GB1101@x4>
From: Paul Hartman <paul.hartman+gentoo@gmail.com>
Date: Tue, 20 Mar 2012 15:19:17 -0500
X-Google-Sender-Auth: XZdzrVTuxpU9MAt337_Eo_xXrpw
Message-ID: <CAEH5T2M7KjgwbxduGuH7xENj2a0wuhpSw5PRQDMJia2+tZYeYA@mail.gmail.com>
Subject: Re: [gentoo-user] Re: Re: latest eix versions messes with my screen
 status bar
To: gentoo-user@lists.gentoo.org
Content-Type: text/plain; charset=ISO-8859-1
X-Archives-Salt: dd7c6be1-87e9-43f7-811a-df2a63d2eaef
X-Archives-Hash: 88d74486f87f1fec30b65cee98d2171d

On Tue, Mar 20, 2012 at 12:32 PM, Markus Trippelsdorf
<markus@trippelsdorf.de> wrote:
> On 2012.03.20 at 12:09 -0500, Paul Hartman wrote:
>> On Tue, Mar 20, 2012 at 11:05 AM, Markus Trippelsdorf
>> <markus@trippelsdorf.de> wrote:
>> > On 2012.03.20 at 10:14 -0500, Paul Hartman wrote:
>> >> Hi,
>> >>
>> >> Following a recent eix version update, after running eix-sync it
>> >> leaves the session name on my screen status bar like:
>> >>
>> >> $eix-sync: Finished
>> >>
>> >> does anyone know anything about that?
>> >>
>> >> Is there perhaps something I can add to my shell prompt to make it
>> >> reset the status bar title after a program exits?
>> >
>> > See https://bugs.gentoo.org/show_bug.cgi?id=407473 .
>> >
>> > $ echo -n "\033kzsh\033\\"
>> > will set "zsh" in the status bar.
>> >
>> > There is no way to reset the status bar title automatically, because
>> > there is no way to determine its content before changing it.
>>
>> Thanks, that bug is exactly what I'm talking about.
>>
>> Unfortunately. the echo command or similar that I've found just echo
>> the text back to my terminal and don't change the title in the status
>> bar. I am using bash, not zsh, so maybe the syntax is different or
>> more likely I've got something set up wrong. :)
>
> The following command should work in both shells:
>
> $ printf "\033kbash\033\\"

That worked. Thank you again!