I'm using Emacs and I find quite annoying the default frame (aka window) title that is user@host especially when I have several frames opened. Searching around I found that it's possible to change that by editing the variable frame-title-format; so I did it, I changed it to "%b" (for example) and that worked.
Now the issue: after exactly 30 seconds I minimized the frame the title switches back to user@host until I focus again on the frame.
I tried to write in my ~/.emacs:
(setq frame-title-format "%b")
and I even tried to customize it:
(custom-set-variables ; [...] '(frame-title-format "%b") )
with no luck.
DETAILS:
GNU Emacs 23.2.1
Debian Squeeze
Openbox
Am I missing something?
.emacsthat only contains(setq frame-title-format "%b")? – Gilles Oct 17 '10 at 19:45~/.emacsthat only contains(setq frame-title-format "%b"). – cYrus Oct 17 '10 at 20:04