Skip to content

integrated_title_buttons = BUTTONS

Since: Version 20230408-112425-69ae8472

The functionality described in this section requires version 20230408-112425-69ae8472 of wezterm, or a more recent version.

Configures the ordering and set of window management buttons to show when window_decorations = "INTEGRATED_BUTTONS|RESIZE".

The value is a table listing the buttons. Each element can have one of the following values:

  • "Hide" - the window hide or minimize button
  • "Maximize" - the window maximize button
  • "Close" - the window close button

The default value is equivalent to:

config.integrated_title_buttons = { 'Hide', 'Maximize', 'Close' }

You can change the order by listing them in a different order:

config.integrated_title_buttons = { 'Close', 'Maximize', 'Hide' }

or remove buttons you don't want:

config.integrated_title_buttons = { 'Close' }