From 45179fbf59dcf9c33a7e53a67911d33a369d6398 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Tue, 10 Nov 2020 15:02:11 -0500 Subject: [PATCH] Mention current frame type in doom/info --- core/autoload/debug.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/core/autoload/debug.el b/core/autoload/debug.el index 0410e03bd..2449f04ea 100644 --- a/core/autoload/debug.el +++ b/core/autoload/debug.el @@ -125,7 +125,9 @@ ready to be pasted in a bug report on github." (buildopts . ,system-configuration-options) (features . ,system-configuration-features) (traits . ,(delq - nil (list (if (not doom-interactive-p) 'batch) + nil (list (cond ((not doom-interactive-p) 'batch) + ((display-graphic-p) 'gui) + ('tty)) (if (daemonp) 'daemon) (if (and (require 'server) (server-running-p))