diff options
author | Case Duckworth | 2021-03-31 23:08:22 -0500 |
---|---|---|
committer | Case Duckworth | 2021-03-31 23:08:22 -0500 |
commit | 8b11109865278e006fa0d24b5ad9d08cd21c8acd (patch) | |
tree | 5a37db1cf8254c4d8c6b059d84c90043496c081e | |
parent | Replace `:acdw/map' with `:global' (diff) | |
download | emacs-8b11109865278e006fa0d24b5ad9d08cd21c8acd.tar.gz emacs-8b11109865278e006fa0d24b5ad9d08cd21c8acd.zip |
Show client status in `frame-title-format'
Also: fix the tab bar.
-rw-r--r-- | init.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/init.el b/init.el index dd655eb..9b52742 100644 --- a/init.el +++ b/init.el | |||
@@ -341,7 +341,10 @@ | |||
341 | disabled-command-function nil | 341 | disabled-command-function nil |
342 | load-prefer-newer t | 342 | load-prefer-newer t |
343 | comp-async-report-warnings-errors nil | 343 | comp-async-report-warnings-errors nil |
344 | frame-title-format "%b %+%* GNU Emacs" | 344 | frame-title-format '("%b %+%* GNU Emacs" |
345 | (:eval (when (frame-parameter nil 'client) | ||
346 | " Client"))) | ||
347 | tab-bar-show 1 | ||
345 | use-dialog-box nil | 348 | use-dialog-box nil |
346 | use-file-dialog nil | 349 | use-file-dialog nil |
347 | inhibit-startup-echo-area-message (pcase acdw/system | 350 | inhibit-startup-echo-area-message (pcase acdw/system |