Open what-the-functor opened 6 months ago
I‘m curious whether #74 fixes this for you.
I’m also curious (regardless of whether you test #74) what your configuration looks like. E.g.,
(use-package auto-dark
:custom (auto-dark-dark-theme 'meh-dark)
:init (auto-dark-mode))
or
(auto-dark-mode 1)
(custom-set-variables
'(auto-dark-dark-theme 'meh-dark))
or
(custom-set-variables
'(auto-dark-dark-theme 'meh-dark))
(auto-dark-mode 1)
or something else.
If emacs-macport is launched when Dark Mode is active, the theme is not switched to the dark theme. However, if I toggle Dark Mode (off, then on) the theme is switched.
The emacs-macport hook
mac-effective-appearance-change-hook
is set toauto-dark--check-and-set-dark-mode
. This is working very well, though only when Dark Mode is actively toggled.The aforementioned hook is not invoked when emacs starts, so there should be a mechanism at startup to check and set the dark mode. In my configuration, I've solved this by adding
auto-dark--check-and-set-dark-mode
toemacs-startup-hook
, though there is a flash of the light theme. I think that the flash of light can be avoided by utilisingbefore-make-frame-hook
inearly-init.el
.