tags:

views:

234

answers:

2

When I start emacs, I can use the --title= option to control the title of the x-window that holds the emacs application. Is it possible to change the title after emacs starts from elisp?

+6  A: 
M-x set-frame-name NewName RET

and from elisp

(set-frame-name "NewName")
Trey Jackson
+4  A: 

I use

(setq frame-title-format "%b - emacs")

to include the current buffer name in the frame title.

George