/ modules / home / programs / emacs / dashboard.el
dashboard.el
1  ;; Find `doom-dashboard-widget-banner` in the list and insert after it
2  (let ((pos (cl-position #'doom-dashboard-widget-banner +doom-dashboard-functions)))
3    (when pos
4      (setq +doom-dashboard-functions
5            (append (cl-subseq +doom-dashboard-functions 0 (1+ pos))
6                    (list (lambda ()
7                            (insert "\"Do not proceed with a mess; messes just grow with time.\" ― Bjarne Stroustrup\n\n")))
8                    (cl-subseq +doom-dashboard-functions (1+ pos))))))