Skip to content

Commit fb5aa86

Browse files
authored
Merge pull request #25 from davep/the-terminator
Add detection of Terminator
2 parents 361388b + 8c88342 commit fb5aa86

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/textual_dev/tools/diagnose.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,8 @@ def _guess_term() -> str:
8888
term_program = "GNOME Terminal"
8989
elif "XTERM_VERSION" in os.environ:
9090
term_program = os.environ.get("XTERM_VERSION") or "XTerm"
91+
elif "TERMINATOR_UUID" in os.environ:
92+
term_program = "Terminator"
9193

9294
else:
9395
# See if we can pull out some sort of version information too.

0 commit comments

Comments
 (0)