Skip to content

Instantly share code, notes, and snippets.

@volh
Created April 5, 2017 08:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save volh/664c389ca861f353f351c8cb3e6499bf to your computer and use it in GitHub Desktop.
Save volh/664c389ca861f353f351c8cb3e6499bf to your computer and use it in GitHub Desktop.
(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