Add startup time message

This commit is contained in:
2017-08-21 13:24:04 +01:00
parent be5fe73e70
commit dd0ec0f3e8

View File

@@ -6,6 +6,12 @@
;;; Code:
;; Display the total loading time in the minibuffer
(defun display-startup-echo-area-message ()
"Display startup echo area message."
(message "Siren initialized in %s" (emacs-init-time)))
(message "Siren is powering up... Be patient, Master %s!"
(getenv (if (equal system-type 'windows-nt) "USERNAME" "USER")))