From 050e6761c93670cdc625a20581f0fa516535c74e Mon Sep 17 00:00:00 2001 From: Michael Rolli Date: Wed, 1 Jan 2025 11:32:42 +0100 Subject: [PATCH] feat(wezterm): do not open in fullscreen mode anymore Since Sequoia we have new possiblities to handle window sizes and positions. This will even eliminate BetterSnaptool I guess. --- config/wezterm/wezterm.lua | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/config/wezterm/wezterm.lua b/config/wezterm/wezterm.lua index 850b915..93a54cd 100644 --- a/config/wezterm/wezterm.lua +++ b/config/wezterm/wezterm.lua @@ -16,11 +16,11 @@ end wezterm.GLOBAL.platform = get_platform() -- Automatically start wezterm in full-screen mode -local mux = wezterm.mux -wezterm.on("gui-startup", function() - local _, _, window = mux.spawn_window({}) - window:gui_window():maximize() -end) +-- local mux = wezterm.mux +-- wezterm.on("gui-startup", function() +-- local _, _, window = mux.spawn_window({}) +-- window:gui_window():maximize() +-- end) -- This table will hold the configuration. local config = {}