diff --git a/terminal.c b/terminal.c index baee19c7..2dd6b531 100644 --- a/terminal.c +++ b/terminal.c @@ -569,6 +569,7 @@ terminal_run(struct terminal *terminal, const char *path) pid = forkpty(&master, NULL, NULL, NULL); if (pid == 0) { close(master); + setenv("TERM", "vt100", 1); if (execl(path, path, NULL)) { printf("exec failed: %m\n"); exit(EXIT_FAILURE);