From 20787e0897271cc2d329aea5de4a30484980096e Mon Sep 17 00:00:00 2001 From: Case Duckworth Date: Sat, 2 Jan 2021 15:33:53 -0600 Subject: Rewrite theme changing code --- config.org | 29 +++++++++++++++-------------- 1 file changed, 15 insertions(+), 14 deletions(-) (limited to 'config.org') diff --git a/config.org b/config.org index 14ed9bf..63fd469 100644 --- a/config.org +++ b/config.org @@ -375,22 +375,23 @@ Commented for now because I really need to figure out the keybindings I want to (load-theme 'modus-operandi t) #+END_SRC -**** COMMENT Change themes based on time of day - -Comment out because, for /some/ reason, =circadian-setup= fucks with =C-g= in the minibuffer. WTF, amirite ?! - -Anyway, I should probably be able to figure out how to properly change the theme on my own … later. +**** Change themes based on time of day #+BEGIN_SRC emacs-lisp -(cuss calendar-latitude 30.4515) -(cuss calendar-longitude -91.1871) - -(straight-use-package 'circadian) - -(cuss circadian-themes '((:sunrise . modus-operandi) - (:sunset . modus-vivendi))) - -(circadian-setup) + (cuss calendar-latitude 30.4515) + (cuss calendar-longitude -91.1871) + + ;; sunrise + (run-at-time (nth 1 (split-string (sunrise-sunset))) + (* 60 60 24) + (lambda () + (modus-themes-load-operandi))) + + ;; sunset + (run-at-time (nth 4 (split-string (sunrise-sunset))) + (* 60 60 24) + (lambda () + (modus-themes-load-vivendi))) #+END_SRC *** Fonts -- cgit 1.4.1-21-gabe81