Titlebar customization, file name displaying


/ Published in: Emacs Lisp
Save to your folder(s)

By default, Emacs displays on the titlebar (I mean GUI Emacs) emacs@domain. There is a way to modify this, using (setq frame-title-format "my title").

How to display emacs@domain: ~/dir/file (or buffer name in case of e.i. *scratch*)? Add it to your .emacs:


Copy this code and paste it in your HTML
  1. (add-hook 'window-configuration-change-hook
  2. (lambda ()
  3. (setq frame-title-format
  4. (concat
  5. invocation-name "@" system-name ": "
  6. (replace-regexp-in-string
  7. (concat "/home/" user-login-name) "~"
  8. (or buffer-file-name "%b"))))))

URL: http://coldpeer.jogger.pl/2007/12/01/emacs-konfiguracja-belki-z-tytulem/

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.