From 698c3dc6c993f09586e3315fd51d9489a3189283 Mon Sep 17 00:00:00 2001 From: GrĂ©goire DuchĂȘne Date: Sun, 12 Jan 2025 09:00:43 +0000 Subject: darwin/emacs: Only load defined themes --- dotfiles-darwin/emacs/functions.el | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/dotfiles-darwin/emacs/functions.el b/dotfiles-darwin/emacs/functions.el index 1c57e59..492e099 100644 --- a/dotfiles-darwin/emacs/functions.el +++ b/dotfiles-darwin/emacs/functions.el @@ -38,7 +38,9 @@ "Configure themes, including theme switching." (let ((day-theme (seq-random-elt (alist-get 'day my/themes))) (night-theme (seq-random-elt (alist-get 'night my/themes)))) - (load-theme day-theme :no-confirm :no-enable) - (load-theme night-theme :no-confirm :no-enable) + (when (custom-theme-p day-theme) + (load-theme day-theme :no-confirm :no-enable)) + (when (custom-theme-p night-theme) + (load-theme night-theme :no-confirm :no-enable)) (run-at-time nil (* 15 60) #'my/maybe-switch-theme day-theme night-theme #'my/macos-dark-p))) -- cgit v1.2.3-70-g09d2