From 67583540b4e0e5f6093439b43bfa7bf06a999195 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Thu, 18 Jul 2019 14:14:05 +0200 Subject: [PATCH] main: use our own terminfo 'foot' by default --- main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.c b/main.c index ea0042b2..2c8f0451 100644 --- a/main.c +++ b/main.c @@ -312,7 +312,7 @@ main(int argc, char *const *argv) argv += optind; setlocale(LC_ALL, ""); - setenv("TERM", "xterm-direct", 1); /* TODO: configurable */ + setenv("TERM", "foot", 1); /* TODO: configurable */ int repeat_pipe_fds[2] = {-1, -1}; if (pipe2(repeat_pipe_fds, O_CLOEXEC) == -1) {