1

I'd like to remove the image of the Emacs cow from the startup screen, but I want to keep my recent files, bookmarks, and agenda. Currently, I'm using the dashboard package with use-package.

My current configuration:

(use-package dashboard
  :ensure t
  :config
  (dashboard-setup-startup-hook)
  (setq initial-buffer-choice (lambda () (get-buffer "*dashboard*"))))

Thanks

andrej
  • 983
  • 6
  • 15

3 Answers3

3

Try (setq dashboard-startup-banner nil) with this variable you can set the image or text at startup. See the docs of that variable for details.

As far as I understand the package comes with its own set of startup/images but this also can be adjusted to use own stuff.

andrej
  • 983
  • 6
  • 15
0

I don't know anything about the dashboard package, but you can control what image is used on the default splash screen by setting fancy-splash-image. It's probably a safe assumption that dashboard will respect the same setting.

db48x
  • 15,741
  • 1
  • 19
  • 23
0

In your :config commands add (setq dashboard-startup-banner 'nil).