This is the first post on the new QTerminator site.

Why a Qt port of Terminator

GTK-based Terminator has been the gold standard for split-pane terminals on Linux for years. QTerminator brings the same workflow — recursive splits, tab grouping, broadcast input — into a Qt stack so it sits next to other Qt apps without theme clashes and pulls in fewer dependencies on KDE/Qt-first distros.

class TerminalGroup:
    """Broadcast input to every terminal sharing this group name."""
    name: str
    members: list[TermWidget]

What’s next