integrated_title_buttons
On this page
integrated_title_buttons = BUTTONS#
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' }