From b40f8102717c89e72ee76e3c36adab4540df5447 Mon Sep 17 00:00:00 2001
From: Whisperity <whisperity@gmail.com>
Date: Sat, 30 Jul 2022 11:54:43 +0200
Subject: [PATCH] (tty_check_term): support Contour.
---
lib/tty/tty.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/lib/tty/tty.c b/lib/tty/tty.c
index f27af9cca..60b138e91 100644
a
|
b
|
sigintr_handler (int signo) |
101 | 101 | * foot* |
102 | 102 | * screen* |
103 | 103 | * tmux* |
| 104 | * contour* |
104 | 105 | */ |
105 | 106 | gboolean |
106 | 107 | tty_check_term (gboolean force_xterm) |
… |
… |
tty_check_term (gboolean force_xterm) |
124 | 125 | || strncmp (termvalue, "alacritty", 9) == 0 |
125 | 126 | || strncmp (termvalue, "foot", 4) == 0 |
126 | 127 | || strncmp (termvalue, "screen", 6) == 0 |
127 | | || strncmp (termvalue, "tmux", 4) == 0; |
| 128 | || strncmp (termvalue, "tmux", 4) == 0 |
| 129 | || strncmp (termvalue, "contour", 7) == 0; |
128 | 130 | /* *INDENT-ON* */ |
129 | 131 | } |
130 | 132 | |