Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/term_image/image/kitty.py
Original file line number Diff line number Diff line change
Expand Up @@ -327,8 +327,9 @@ def is_supported(cls) -> bool:
cls._TERM, cls._TERM_VERSION = name, version
cls._KITTY_VERSION = version_tuple
cls._supported = True
# Konsole is good as long as it responds to the graphics query
elif name == "konsole":
# Konsole and Ghostty are good as long as they respond to the
# graphics query
elif name in ("konsole", "ghostty"):
cls._TERM, cls._TERM_VERSION = name, version or ""
cls._supported = True

Expand Down