You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Since Terminator has its own little title bars per pane, the GTK window title bar is superfluous. It can be removed by undecorating the window in 'Preferences > Window borders', but that also removes the borders/shadows and makes Terminator uncomfortable to distinguish against other screen content.
Describe the solution you'd like
A checkbox 'Preferences > Window title' to remove the title bar (headerbar in modern GTK), but leave the borders intact (actually just the shadows are sufficient).
Alternatively, the existing window borders checkbox, but with an option to add back shadows.
Describe alternatives you've considered
I've tried toying around in ~/.config/gtk-3.0/gtk.css, but didn't find any .terminator-terminal-window ... that would affect the window title bar.
The text was updated successfully, but these errors were encountered:
defset_borderless(self, value):
"""Set the state of the window border from the supplied value"""#self.set_decorated (not value)self.set_titlebar (None)
Add to the bottom of terminatorlib/terminator.py::Terminator.new_window a line that should set the decorations to border-only in a drawn window: window.set_decorations(Gdk.WMDecoration.BORDER)
Is your feature request related to a problem? Please describe.
Since Terminator has its own little title bars per pane, the GTK window title bar is superfluous. It can be removed by undecorating the window in 'Preferences > Window borders', but that also removes the borders/shadows and makes Terminator uncomfortable to distinguish against other screen content.
Describe the solution you'd like
A checkbox 'Preferences > Window title' to remove the title bar (headerbar in modern GTK), but leave the borders intact (actually just the shadows are sufficient).
Alternatively, the existing window borders checkbox, but with an option to add back shadows.
Describe alternatives you've considered
I've tried toying around in
~/.config/gtk-3.0/gtk.css
, but didn't find any.terminator-terminal-window ...
that would affect the window title bar.The text was updated successfully, but these errors were encountered: