Skip to content

Commit

Permalink
Add detection of Terminator
Browse files Browse the repository at this point in the history
Insert Arnie quotes here.
  • Loading branch information
davep committed Nov 9, 2023
1 parent 361388b commit 8c88342
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/textual_dev/tools/diagnose.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,8 @@ def _guess_term() -> str:
term_program = "GNOME Terminal"
elif "XTERM_VERSION" in os.environ:
term_program = os.environ.get("XTERM_VERSION") or "XTerm"
elif "TERMINATOR_UUID" in os.environ:
term_program = "Terminator"

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

0 comments on commit 8c88342

Please sign in to comment.