Do I like the removal of the titlebar?

This commit is contained in:
Howard Abrams 2023-04-20 15:30:59 -07:00
parent e73277971e
commit e1eb3b85e3

View file

@ -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 shouldnt 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 Im 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))