doom emacs transparency lmao

This commit is contained in:
Clay Gomera 2023-01-23 01:25:33 -04:00
parent 403072b061
commit 90759a7eb2
2 changed files with 9 additions and 0 deletions

View file

@ -639,3 +639,6 @@ List of keybindings (SPC h b b)")
(setq mastodon-instance-url "https://fosstodon.org"
mastodon-active-user "d4r1us-drk")
(set-frame-parameter (selected-frame) 'alpha '(95 . 80))
(add-to-list 'default-frame-alist '(alpha . (95 . 80)))

View file

@ -57,6 +57,7 @@
- [[#winner-mode][WINNER MODE]]
- [[#zap-to-char][ZAP TO CHAR]]
- [[#mastodon][MASTODON]]
- [[#transparency][TRANSPARENCY]]
* ABOUT THIS CONFIG
This is my personal Doom Emacs config. Doom Emacs is a distribution of Emacs that uses the "evil" keybindings (Vim keybindings) and includes a number of nice extensions and a bit of configuration out of the box. I am maintaining this config not just for myself, but also for those that want to explore some of what is possible with Emacs. I will add a lot of examples of plugins and settings, some of them I may not even use personally. I do this because many people following me on YouTube look at my configs as "documentation". This config is a fork of DistroTube's config.
@ -1135,3 +1136,8 @@ Emacs provides a 'zap-to-char' command that kills from the current point to a ch
(setq mastodon-instance-url "https://fosstodon.org"
mastodon-active-user "d4r1us-drk")
#+END_SRC
* TRANSPARENCY
#+BEGIN_SRC emacs-lisp
(set-frame-parameter (selected-frame) 'alpha '(95 . 80))
(add-to-list 'default-frame-alist '(alpha . (95 . 80)))
#+END_SRC