Skip to content

Commit

Permalink
Merge pull request #25 from davep/the-terminator
Browse files Browse the repository at this point in the history
Add detection of Terminator
  • Loading branch information
davep committed Nov 9, 2023
2 parents 361388b + 8c88342 commit fb5aa86
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 fb5aa86

Please sign in to comment.