S
S
spellman0032018-01-14 21:48:59
linux
spellman003, 2018-01-14 21:48:59

Is there an analogue of tilix but not on gtk3?

Circumstances forced me to switch to a small monitor for a while, and therefore I am fighting for every pixel of free space. And I liked tilix. This is such a terminal emulator with a hint of tiling. And everything would be fine, but it's on gtk3 and it has a very large window title. Is there an analogue but not on gtk3?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
M
Moris Haos, 2018-01-15
@spellman003

Hi
No. But you can also customize the title of the window. Gnome3 configs are located in ~/.config/gtk-3.0/, in this directory you need to create a gtk.css css file with content, for example:

//Уменьшаем отступы сверху и снизу в заголовке окна
.header-bar.default-decoration {
    padding-top: 3px;
    padding-bottom: 3px;
    border: none;
    background-image: linear-gradient(to bottom,
                                      shade(@theme_bg_color, 1.05),
                                      shade(@theme_bg_color, 0.99));
    box-shadow: inset 0 1px shade(@theme_bg_color, 1.4);
}
//Так же делаем для блока с кнопками, чтобы не получить узкий заголовок с большими кнопками
.header-bar.default-decoration .button.titlebutton {
    padding-top: 2px;
    padding-bottom: 2px;
}

Play around with the parameters for your own convenience.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question