summaryrefslogtreecommitdiff
path: root/init.org
diff options
context:
space:
mode:
Diffstat (limited to 'init.org')
-rw-r--r--init.org6
1 files changed, 3 insertions, 3 deletions
diff --git a/init.org b/init.org
index 1f12aed..7600432 100644
--- a/init.org
+++ b/init.org
@@ -328,12 +328,11 @@ Dim windows that are not active.
#+begin_src elisp
(use-package dimmer
- :ensure
- :defer
+ :after modus-themes
:init
(setq dimmer-watch-frame-focus-events nil)
(setq dimmer-use-colorspace :rgb)
- (setq dimmer-fraction 0.1)
+ (setq dimmer-fraction 0.2)
(setq dimmer-adjustment-mode :foreground)
(defun advise-dimmer-config-change-handler ()
@@ -374,6 +373,7 @@ Dim windows that are not active.
(advice-add
'dimmer-config-change-handler
:override 'advise-dimmer-config-change-handler)
+ (update-dimmer-style)
(dimmer-configure-corfu)
(dimmer-mode t))
#+end_src