We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 361388b + 8c88342 commit fb5aa86Copy full SHA for fb5aa86
1 file changed
src/textual_dev/tools/diagnose.py
@@ -88,6 +88,8 @@ def _guess_term() -> str:
88
term_program = "GNOME Terminal"
89
elif "XTERM_VERSION" in os.environ:
90
term_program = os.environ.get("XTERM_VERSION") or "XTerm"
91
+ elif "TERMINATOR_UUID" in os.environ:
92
+ term_program = "Terminator"
93
94
else:
95
# See if we can pull out some sort of version information too.
0 commit comments