From 593373a349ccf4ec54bd8a4f26c26b597b153dd6 Mon Sep 17 00:00:00 2001 From: Pierre Neidhardt Date: Mon, 19 Jun 2017 22:10:32 +0100 Subject: [PATCH] Emacs: Add " [serverless]" to frame title if not daemon --- .emacs.d/lisp/main.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.emacs.d/lisp/main.el b/.emacs.d/lisp/main.el index d9a1da54..8674a9d2 100644 --- a/.emacs.d/lisp/main.el +++ b/.emacs.d/lisp/main.el @@ -306,4 +306,7 @@ ;;; Tramp (setq tramp-persistency-file-name (concat emacs-cache-folder "tramp")) +;;; Frame title +(setq frame-title-format (concat "%b" (unless (daemonp) " [serverless]"))) + (provide 'main)