From d61aa3284d7edf5d38559c2101da4b62f03da646 Mon Sep 17 00:00:00 2001 From: "Yann Esposito (Yogsototh)" Date: Sat, 3 Oct 2020 12:18:13 +0200 Subject: [PATCH] fix a bug --- src/posts/0014-change-emacs-theme-automatically/index.org | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/posts/0014-change-emacs-theme-automatically/index.org b/src/posts/0014-change-emacs-theme-automatically/index.org index d106329..46c2b11 100644 --- a/src/posts/0014-change-emacs-theme-automatically/index.org +++ b/src/posts/0014-change-emacs-theme-automatically/index.org @@ -45,7 +45,7 @@ So here is my piece of code I added to my doom-emacs =config.el=: (setq doom-theme theme) (load-theme doom-theme t) ;; run that function again next hour - (run-at-time (format "%02d:%02d" (+ hour 1) 0) nil 'y/update-time)))) + (run-at-time (format "%02d:%02d" (+ hour 1) 0) nil 'y/auto-update-theme)))) (y/auto-update-theme) #+END_SRC