Make Emacs frame slightly transparent

This commit is contained in:
2022-10-09 23:28:22 -07:00
parent 5d1066f6ed
commit a2ed2d9425
2 changed files with 8 additions and 1 deletions

View File

@@ -67,7 +67,11 @@ Emacs on macOS doesn't naturally find shell variables like PATH, so to help it o
;; Corrects (and improves) org-mode's native fontification.
(doom-themes-org-config))
#+end_src
** Transparency
#+begin_src emacs-lisp
(set-frame-parameter (selected-frame) 'alpha '(99 98))
(add-to-list 'default-frame-alist '(alpha 99 98))
#+end_src
** Hiding Clutter
Disable a bunch of stuff we don't want to see.

View File

@@ -51,6 +51,9 @@
;; Corrects (and improves) org-mode's native fontification.
(doom-themes-org-config))
(set-frame-parameter (selected-frame) 'alpha '(99 98))
(add-to-list 'default-frame-alist '(alpha 99 98))
(setq inhibit-startup-message t
use-dialog-box nil)