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 ) id 1SA2wG-0007Nb-D1 for garchives@archives.gentoo.org; Tue, 20 Mar 2012 17:33:40 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A334CE0795; Tue, 20 Mar 2012 17:33:26 +0000 (UTC) Received: from mail.ud10.udmedia.de (ud10.udmedia.de [194.117.254.50]) by pigeon.gentoo.org (Postfix) with ESMTP id EDECAE0795 for ; Tue, 20 Mar 2012 17:32:18 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=simple; d=mail.ud10.udmedia.de; h= date:from:to:subject:message-id:references:mime-version :content-type:in-reply-to; s=beta; bh=N+E8j64wJhAzbYQy2XMCv65FIJ mYe4Y0vo3Aleilakk=; b=XAZPeoIVMYzTvK0MlsNNwxvDzEXJRQeK6CIsbKstUx WjqB+NVEm/FPel6D7cvKoQcaUkRTw3Cn82aQSpc29XIjneKHJ26se7+Q2QHRcctk OEPA8KlKgj98yB2U3mQAvVD9WnGkydzNjTJVEBjVAvLkni+0tRPtRdGdicE7wjqk Y= Received: (qmail 28173 invoked from network); 20 Mar 2012 18:32:17 +0100 Received: from unknown (HELO x4) (ud10?360p3@91.64.56.160) by mail.ud10.udmedia.de with ESMTPSA (DHE-RSA-AES256-SHA encrypted, authenticated); 20 Mar 2012 18:32:17 +0100 Date: Tue, 20 Mar 2012 18:32:17 +0100 From: Markus Trippelsdorf To: gentoo-user@lists.gentoo.org Subject: [gentoo-user] Re: Re: latest eix versions messes with my screen status bar Message-ID: <20120320173217.GB1101@x4> References: <20120320160554.GA1101@x4> Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-user@lists.gentoo.org Reply-to: gentoo-user@lists.gentoo.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Archives-Salt: b12b5f49-184c-4df4-806d-72bcd05c2d6f X-Archives-Hash: ece9c584410b644361419207cc7c3cda On 2012.03.20 at 12:09 -0500, Paul Hartman wrote: > On Tue, Mar 20, 2012 at 11:05 AM, Markus Trippelsdorf > 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\\" -- Markus