Blog/content/posts/2023/gnome-terminal-title.md

25 lines
638 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: "🖥️ Изменение заголовка вкладки в Gnome Terminal"
date: 2023-10-08T22:33:04+03:00
draft: false
tags: [linux, tips]
---
В **Gnome Terminal 3.14** удалили возможность изменения заголовка вкладки.
Теперь такой финт можно проворачивать через ESCAPE последовательности.
Например:
```sh
printf "\e]2;YOUR TITLE GOES HERE\a"
```
или в Bash
```sh
echo -ne "\033]0;YOUR TITLE GOES HERE\007"
```
Работать этот способ будет и в других терминалах.