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
2010-02-25 20:42:25
+4
A:
I use
(setq frame-title-format "%b - emacs")
to include the current buffer name in the frame title.
George
2010-02-25 23:10:02