summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dotfiles-darwin/emacs/functions.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/dotfiles-darwin/emacs/functions.el b/dotfiles-darwin/emacs/functions.el
index 492e099..6ccc8f3 100644
--- a/dotfiles-darwin/emacs/functions.el
+++ b/dotfiles-darwin/emacs/functions.el
@@ -38,9 +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))))
- (when (custom-theme-p day-theme)
+ (when day-theme
(load-theme day-theme :no-confirm :no-enable))
- (when (custom-theme-p night-theme)
+ (when 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)))