blob: c4b1e0719840a76ca505ab147bd8b40d3f452612 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
(setq mac-right-option-modifier 'none)
(when (executable-find "gls")
(setq insert-directory-program "gls"))
(defun is-macos-dark ()
(interactive)
(string= (shell-command-to-string "defaults read -g AppleInterfaceStyle")
"Dark\n"))
(run-at-time nil (* 15 60) 'maybe-switch-theme 'doom-one-light 'doom-one
'is-macos-dark)
|