From bb34aafa4576a08644318ac290592ca3bb545e12 Mon Sep 17 00:00:00 2001 From: Christian Helmuth Date: Mon, 6 Apr 2020 15:17:50 +0200 Subject: [PATCH] run: use x-terminal-emulator in [terminal] The environment variables TERM and COLORTERM do not contain an executable names. --- tool/run/run | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tool/run/run b/tool/run/run index 17693294b..7e73096d7 100755 --- a/tool/run/run +++ b/tool/run/run @@ -819,10 +819,7 @@ proc exit {{status 0}} { # proc terminal { } { global env - if {[info exists env(COLORTERM)]} { - return $env(COLORTERM) - } - return $env(TERM) + return x-terminal-emulator }