ceccopierangiolieugenio / pyTermTk

Python Terminal Toolkit - a Spiced Up TUI Library 🌶️
https://ceccopierangiolieugenio.github.io/pyTermTk/
MIT License
585 stars 22 forks source link

Is it possible to change TermTk on title of terminal window? #212

Closed smartkid2024 closed 1 week ago

smartkid2024 commented 8 months ago

Is it possible to change TermTk on title of terminal window? image

ceccopierangiolieugenio commented 8 months ago

The terminal title escape sequence is a feature that many terminals supports but not all of them. You can change it when you initialize the TTk root object:

    root = TTk( title="ABC Title" )

i.e.:

https://github.com/ceccopierangiolieugenio/pyTermTk/blob/a2f6c31778347ad1c65858f4ea965ad66ceffe99/ttkDesigner/app/main.py#L38-L45