Make Emacs frame slightly transparent
This commit is contained in:
@@ -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.
|
;; Corrects (and improves) org-mode's native fontification.
|
||||||
(doom-themes-org-config))
|
(doom-themes-org-config))
|
||||||
#+end_src
|
#+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
|
** Hiding Clutter
|
||||||
Disable a bunch of stuff we don't want to see.
|
Disable a bunch of stuff we don't want to see.
|
||||||
|
|
||||||
|
|||||||
@@ -51,6 +51,9 @@
|
|||||||
;; Corrects (and improves) org-mode's native fontification.
|
;; Corrects (and improves) org-mode's native fontification.
|
||||||
(doom-themes-org-config))
|
(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
|
(setq inhibit-startup-message t
|
||||||
use-dialog-box nil)
|
use-dialog-box nil)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user