We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents dfcd96f + 245d82a commit 6e55a8eCopy full SHA for 6e55a8e
src/textual_dev/tools/diagnose.py
@@ -90,6 +90,12 @@ def _guess_term() -> str:
90
term_program = os.environ.get("XTERM_VERSION") or "XTerm"
91
elif "TERMINATOR_UUID" in os.environ:
92
term_program = "Terminator"
93
+ elif "KONSOLE_VERSION" in os.environ:
94
+ term_program = (
95
+ f"Konsole {os.environ.get('KONSOLE_VERSION')}"
96
+ if os.environ.get("KONSOLE_VERSION")
97
+ else "Konsole"
98
+ )
99
100
else:
101
# See if we can pull out some sort of version information too.
0 commit comments