Created
April 5, 2017 08:59
-
-
Save volh/664c389ca861f353f351c8cb3e6499bf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun daylight-mode () | |
(interactive) | |
(mapc #'disable-theme custom-enabled-themes) | |
(setq fci-rule-color "lightgray") | |
(load-theme 'adwaita t) | |
(load-theme 'tango t)) | |
(defun night-mode () | |
(interactive) | |
(mapc #'disable-theme custom-enabled-themes) | |
(setq fci-rule-color "grey20") | |
(load-theme 'gruvbox t)) | |
(run-at-time "19:00" 86400 #'night-mode) | |
(run-at-time "08:00" 86400 #'daylight-mode) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment