diff options
-rw-r--r-- | config.org | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/config.org b/config.org index f7def51..f3cea78 100644 --- a/config.org +++ b/config.org | |||
@@ -85,8 +85,14 @@ want it to resize by pixels -- we /are/ using a GUI, after all. | |||
85 | 85 | ||
86 | #+begin_src emacs-lisp :noweb-ref settings | 86 | #+begin_src emacs-lisp :noweb-ref settings |
87 | (setq-default frame-title-format | 87 | (setq-default frame-title-format |
88 | (concat invocation-name "@" (system-name) | 88 | '("Emacs " |
89 | ": %b %+%+ %f")) | 89 | mode-line-client |
90 | mode-line-modified | ||
91 | " " | ||
92 | (:eval (if (buffer-file-name) | ||
93 | (abbreviate-file-name (buffer-file-name)) | ||
94 | "%b")) | ||
95 | )) | ||
90 | #+end_src | 96 | #+end_src |
91 | 97 | ||
92 | *** Fringes | 98 | *** Fringes |