From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Lennart Borgman Newsgroups: gmane.emacs.help Subject: Re: Postfixing ' emacs' to all frame titles. Date: Wed, 28 Jul 2010 15:23:51 +0200 Message-ID: References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Trace: dough.gmane.org 1280323683 18896 80.91.229.12 (28 Jul 2010 13:28:03 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Wed, 28 Jul 2010 13:28:03 +0000 (UTC) Cc: help-gnu-emacs@gnu.org To: Kevin Rodgers Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Jul 28 15:28:00 2010 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1Oe6fv-0000aS-RV for geh-help-gnu-emacs@m.gmane.org; Wed, 28 Jul 2010 15:28:00 +0200 Original-Received: from localhost ([127.0.0.1]:38002 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Oe6fv-0001mT-6M for geh-help-gnu-emacs@m.gmane.org; Wed, 28 Jul 2010 09:27:59 -0400 Original-Received: from [140.186.70.92] (port=55440 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Oe6cL-00006m-Cx for help-gnu-emacs@gnu.org; Wed, 28 Jul 2010 09:24:18 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1Oe6cI-0004SU-K3 for help-gnu-emacs@gnu.org; Wed, 28 Jul 2010 09:24:17 -0400 Original-Received: from mail-pv0-f169.google.com ([74.125.83.169]:44420) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1Oe6cI-0004SF-FG for help-gnu-emacs@gnu.org; Wed, 28 Jul 2010 09:24:14 -0400 Original-Received: by pvc30 with SMTP id 30so1722163pvc.0 for ; Wed, 28 Jul 2010 06:24:12 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:mime-version:received:in-reply-to :references:from:date:message-id:subject:to:cc:content-type :content-transfer-encoding; bh=YUlp0mCDyENNoK8j5UI+BA1XPHLDxFJabGtrxSG+/Tw=; b=llX98pDwT/9OoE0bBqqY8VDdF+XtBqUGVYsim9kB3PXiK7fvGlse6h1WQdMd+nQXRl +21KOt+8HlpkFiD4oHQmejs29Ig9F240nX1OBfcz4HTYTvoF3Pb46ssKlL3fJfNCtEeS 5yNYvoR0kjL+rNV+VOibbo4OTfQH0AMLx43L4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type:content-transfer-encoding; b=nUsYGtIhXbcmFHusTVHPwee1/fMZBNYVi8ZIKuLJ8vtG3gi/mHr5fRqclG8zhwo5ae WqS6oE0R/rW11lOiNFxBc/izem7sZuRfLQN2ZK+P52j45w2z6NKlF5XSFCuQGwYBnADN qlePCKWa+gwS13NgFjxZYsFZ+nZKUygtWoFGE= Original-Received: by 10.142.231.14 with SMTP id d14mr11529815wfh.336.1280323451890; Wed, 28 Jul 2010 06:24:11 -0700 (PDT) Original-Received: by 10.229.5.72 with HTTP; Wed, 28 Jul 2010 06:23:51 -0700 (PDT) In-Reply-To: X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:74315 Archived-At: On Wed, Jul 28, 2010 at 3:14 PM, Kevin Rodgers wrote: > > Tim Visher wrote: >> >> Hi everyone, >> >> I'm wondering if there's a simple way to postfix ' emacs' to all frame >> titles without resorting to [elisp from the web][1]. =C2=A0Couldn't find >> anything in Chapter 25 but I didn't search much harder than that. >> >> [1]: http://www.emacswiki.org/emacs/FrameTitle > > No, you need to use Emacs Lisp: that is the "format" of customizations > in ~/.emacs (M-x customize notwithstanding). > > Here's what I use: > > (setq frame-title-format > =C2=A0 =C2=A0 =C2=A0'("" invocation-name "-" emacs-version "@" system-nam= e ":" > =C2=A0 =C2=A0 =C2=A0 =C2=A0(buffer-file-name "%f" "%b"))) In EmacsW32 I use (setq frame-title-format "%b - Emacs") This is probably what people on ms windows expect. Is that what people on other GUI systems expect as well?