-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #601 from AlexanderShad/main
Добавлена статья настройки терминала
- Loading branch information
Showing
2 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Настройка терминала | ||
|
||
## Смена терминала по умолчанию | ||
|
||
Если Вам не нравится терминал по умолчанию, и вы хотите сменить в системе его к примеру на **kitty**, то можно выполнить следующие команды: | ||
|
||
```shell | ||
gsettings set org.gnome.desktop.default-applications.terminal exec kitty | ||
gsettings set org.gnome.desktop.default-applications.terminal exec-arg -e | ||
``` | ||
|
||
:::info | ||
Аргумент запуска в Gnome по умолчанию используется **-x** | ||
|
||
Но я особой разницы не заметил между -x, или -e | ||
::: | ||
|
||
Однако, в конструкциях вида: | ||
|
||
```shell | ||
Exec=pyradio | ||
Terminal = true | ||
``` | ||
|
||
Пакет может запускаться с gnome-terminal по умолчанию, что будет с вероятность 99% | ||
|
||
Выйти из данной ситуации можно используя маленький "хак" по смене терминала по умолчанию, но это уже на решение каждого. | ||
|
||
Для начала нужно из под пользователя **root** с каталога **/usr/bin** куда ни будь убрать, либо удалить, файл **gnome-terminal**, далее выполняем то, что указано ниже: | ||
|
||
```shell | ||
su - | ||
cd /usr/bin | ||
ln -s kitty gnome-terminal | ||
``` |