From 90759a7eb23d404d4e9b86b69103c7925ec5099d Mon Sep 17 00:00:00 2001 From: Clay Gomera Date: Mon, 23 Jan 2023 01:25:33 -0400 Subject: [PATCH] doom emacs transparency lmao --- user/.config/doom/config.el | 3 +++ user/.config/doom/config.org | 6 ++++++ 2 files changed, 9 insertions(+) diff --git a/user/.config/doom/config.el b/user/.config/doom/config.el index 806ebf298..25d3c5b63 100644 --- a/user/.config/doom/config.el +++ b/user/.config/doom/config.el @@ -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))) diff --git a/user/.config/doom/config.org b/user/.config/doom/config.org index 10dfa1221..b253afa19 100644 --- a/user/.config/doom/config.org +++ b/user/.config/doom/config.org @@ -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