diff --git a/.emacs.d/config.org b/.emacs.d/config.org index 681757e..3758cd4 100644 --- a/.emacs.d/config.org +++ b/.emacs.d/config.org @@ -400,9 +400,6 @@ When installing Vertico, the documentation mentions a few other packages that ad The Emacs dashboard package provides a nice dashboard when first starting up emacs. #+begin_src emacs-lisp - -;; Fix for when emacs is run as a daemon - (use-package dashboard :init (setq initial-buffer-choice (lambda () (get-buffer-create "*dashboard*")) @@ -415,7 +412,6 @@ The Emacs dashboard package provides a nice dashboard when first starting up ema (agenda . 5))) :config (add-hook 'after-init-hook 'dashboard-refresh-buffer) - (add-hook 'server-after-make-frame-hook 'dashboard-refresh-buffer) (dashboard-setup-startup-hook)) #+end_src