From 3a67b4a7454a3b08d37f4fbafafc83b131e6b6ec Mon Sep 17 00:00:00 2001 From: Christoffer Martinsson Date: Sat, 5 Oct 2024 10:58:17 +0200 Subject: [PATCH] Update wezterm.lua --- wezterm.lua | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/wezterm.lua b/wezterm.lua index 44baab8..4606a44 100644 --- a/wezterm.lua +++ b/wezterm.lua @@ -1,5 +1,12 @@ -- Pull in the wezterm API local wezterm = require 'wezterm' +local mux = wezterm.mux + +wezterm.on("gui-startup", function() + local tab, pane, window = mux.spawn_window{} + window:gui_window():maximize() +end) + local config = {} config.enable_tab_bar = false