gnome terminal title tab

This commit is contained in:
Alexander Popov 2023-10-08 22:41:23 +03:00
parent b5389daa76
commit e420791f75
2 changed files with 25 additions and 0 deletions

1
README.md Normal file
View File

@ -0,0 +1 @@
Download [Hugo](https://github.com/gohugoio/hugo/releases/tag/v0.119.0).

View File

@ -0,0 +1,24 @@
---
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"
```
Работать этот способ будет и в других терминалах.