Do I like the removal of the titlebar?
This commit is contained in:
parent
e73277971e
commit
e1eb3b85e3
1 changed files with 7 additions and 1 deletions
|
@ -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))
|
||||
|
|
Loading…
Reference in a new issue