diff options
author | Raúl Benencia <id@rbenencia.name> | 2024-10-12 09:37:36 -0700 |
---|---|---|
committer | Raúl Benencia <id@rbenencia.name> | 2024-10-12 09:38:29 -0700 |
commit | 338532f19c121026c57d34761d13f8f8d1781fd1 (patch) | |
tree | 20b1b9b7ee38ff7f02b6279c1da4a11f82104fc3 /.emacs.d/rul-init.d | |
parent | 4b327fe7fd1bff0385117d923e0072f9f72049a7 (diff) |
emacs: use pure modus themes; avoid initial flash of light
Diffstat (limited to '.emacs.d/rul-init.d')
-rw-r--r-- | .emacs.d/rul-init.d/themes.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.emacs.d/rul-init.d/themes.el b/.emacs.d/rul-init.d/themes.el index d5c591a..468cd28 100644 --- a/.emacs.d/rul-init.d/themes.el +++ b/.emacs.d/rul-init.d/themes.el @@ -19,9 +19,9 @@ (message "value is %s" value) (if (equal value '1) (progn (message "Switch to dark theme") - (modus-themes-select 'modus-vivendi-tinted)) + (modus-themes-select 'modus-vivendi)) (progn (message "Switch to light theme") - (modus-themes-select 'modus-operandi-tinted)))) + (modus-themes-select 'modus-operandi)))) (defun mf/color-scheme-changed (path var value) "DBus handler to detect when the color-scheme has changed." |