JanCが指摘したように、terminator
システムでデフォルトのgtkテーマを使用します。close_button_on_tab = False
〜/ .config / terminator / configを入れることで問題を解決できるのは事実です。また、gtkテーマを変更することもできます。または、特別なgtk設定を特別に定義できますterminator
。これを行うには、gtkrc
ファイルに次の行を追加します。
style "notebook" = "default"
{
xthickness = 0
ythickness = 0
}
widget_class "terminator*.GtkNotebook" style "notebook"
class "terminator*.GtkNotebook" style "notebook"
「GtkNotebook」と呼ばれる標準のGtkウィジェットを変更していることに注意してください。これがタブの原因です。これをすべてのアプリケーション(ターミネーターだけでなく)で動作させたい場合は、代わりに次を使用します。
widget_class "*GtkNotebook" style "notebook"
class "*GtkNotebook" style "notebook"
これはすべてのアプリケーションに影響します。タブ内のテキストの色を変更するには、次を使用します。
style "notebook_maybelabel" = "default"
{
fg[NORMAL] = "#0000AA"
text[NORMAL] = "#0000AA"
}
widget_class "terminator*.GtkNotebook*" style "notebook_maybelabel"
class "terminator*.GtkNotebook*" style "notebook_maybelabel"
私はGtkの専門家ではありません。このアドバイスにはエラーが含まれている場合があります。