From 49b7e632d529d01282a2c2c700f8bfcbededd069 Mon Sep 17 00:00:00 2001 From: rootiest Date: Wed, 11 Dec 2024 15:05:17 -0500 Subject: [PATCH] feat: enhance window configuration options --- config/window.lua | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/config/window.lua b/config/window.lua index e88023c..9dce6c1 100644 --- a/config/window.lua +++ b/config/window.lua @@ -17,9 +17,14 @@ local opts = { -- Set the animation framerate animation_fps = 120, + -- Wayland + --enable_wayland = false, + -- Window Decorations window_decorations = "TITLE | RESIZE", - --window_decorations = "INTEGRATED_BUTTONS|TITLE|RESIZE", + -- window_decorations = "NONE", + -- window_decorations = "TITLE | RESIZE | INTEGRATED_BUTTONS", + --window_decorations = "RESIZE | INTEGRATED_BUTTONS", integrated_title_buttons = { "Hide", "Maximize", "Close" }, window_frame = { inactive_titlebar_bg = "#353535", @@ -65,6 +70,10 @@ local opts = { -- Scrollback Lines scrollback_lines = 20000, + + -- Exit Behavior + exit_behavior_messaging = "Brief", + exit_behavior = "CloseOnCleanExit", } return opts