From 2a2a76fda60880d10f4f955cee41d2282c7d0b6f Mon Sep 17 00:00:00 2001 From: tastytea Date: Sat, 9 Nov 2019 18:52:12 +0100 Subject: [PATCH] Emacs: Show filename in frame title. --- init/basics/appearance.el | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/init/basics/appearance.el b/init/basics/appearance.el index 1150f73..71d5bab 100644 --- a/init/basics/appearance.el +++ b/init/basics/appearance.el @@ -1,6 +1,6 @@ ;;; appearance.el --- Configure appearance. -*- lexical-binding: t; -*- -;; Time-stamp: <2019-10-27T20:04:51+00:00> +;; Time-stamp: <2019-11-09T12:20:03+00:00> ;;; Commentary: @@ -19,6 +19,9 @@ '(font . "Source Code Pro-10")) (global-hl-line-mode t) ; Highlight current line. (show-paren-mode t) ; Visualize matching parens. + (setq frame-title-format ; Show filename in frame title. + '(multiple-frames + "%b" ("" invocation-name "@" system-name " – " buffer-file-truename))) ) ;; Icon font (required by doom and others).