Emacs: configure "transparent" titlebars on macOS
Alan Pearce alan@alanpearce.eu
Sun, 30 Jun 2019 12:38:26 +0200
1 files changed, 7 insertions(+), 1 deletions(-)
jump to
M emacs/.emacs.d/main.el → emacs/.emacs.d/main.el
@@ -35,7 +35,9 @@ (ding)))) (when (or (daemonp) window-system) - (load-theme 'eink t)) + (load-theme 'eink t) + (setq frame-background-mode 'light) + (mapc 'frame-set-background-mode (frame-list))) (global-hl-line-mode +1) @@ -51,6 +53,10 @@ (moody-replace-mode-line-buffer-identification) (moody-replace-vc-mode))) (setq frame-title-format (list "Emacs")) + +(use-package ns-auto-titlebar + :if (eq system-type 'darwin) + :custom ((ns-auto-titlebar-mode t))) ;;; Dates & Times