From e1eb3b85e3832ce0cf8d7749fe92cdee68c74d59 Mon Sep 17 00:00:00 2001 From: Howard Abrams Date: Thu, 20 Apr 2023 15:30:59 -0700 Subject: [PATCH] Do I like the removal of the titlebar? --- ha-display.org | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/ha-display.org b/ha-display.org index cf5c918..a42bc9a 100644 --- a/ha-display.org +++ b/ha-display.org @@ -112,7 +112,7 @@ Most of the time, Emacs is on my desk is a darkened room, so I choose the dark t (load-theme 'sanityinc-tomorrow-night t) (set-face-attribute 'region nil :background "#000096") (set-face-attribute 'mode-line nil :background "black") - (set-face-attribute 'mode-line-inactive nil :background "#333333")) + (set-face-attribute 'mode-line-inactive nil :background "#444444")) #+end_src But, when feeling adventurous, I /sometimes/ take my laptop outside: @@ -143,6 +143,12 @@ Taken from [[https://emacsredux.com/blog/2020/12/04/maximize-the-emacs-frame-on- (add-to-list 'initial-frame-alist '(fullscreen . maximized)) #+end_src +But when capturing, I subsequently open smaller frames that shouldn’t be /odd looking/: +#+begin_src emacs-lisp + (add-to-list 'default-frame-alist '(ns-transparent-titlebar . t)) + (add-to-list 'default-frame-alist '(ns-appearance . dark)) +#+end_src + Now that I’m using v29 of Emacs, I can /un-decorate/ the non-full-sized frames: #+begin_src emacs-lisp (add-to-list 'default-frame-alist '(undecorated-round . t))