From 2b5b09c39e1136ed86e721e6ed3950450810bd86 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sun, 21 May 2017 15:24:45 +0200 Subject: [PATCH] bin/doctor: more system information --- bin/doctor | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/bin/doctor b/bin/doctor index eee7ab951..73f0a05fb 100755 --- a/bin/doctor +++ b/bin/doctor @@ -60,10 +60,12 @@ (defmacro explain! (&rest args) `(message! (indented 2 (autofill ,@args)))) ;; -(message! "%s\nRunning Emacs %s on %s\n----\n" +(message! "%s\nRunning Emacs v%s" (bold "DOOM Doctor") - (bold emacs-version) - (bold "%s" system-type)) + (bold emacs-version)) +(message! "Compiled with:\n%s" (indented 2 (autofill system-configuration-features))) +(message! "uname -a:\n%s" (indented 2 (autofill (shell-command-to-string "uname -a")))) +(message "----\n") ;; --- is emacs set up properly? ------------------------------