mirror of
https://codeberg.org/hako/Rosenthal.git
synced 2026-02-20 19:14:20 +00:00
* Add directories dot-cache and dot-config. * Follow the layout used for %rosenthal-skeletons.
13 lines
354 B
Lua
13 lines
354 B
Lua
-- Keep WezTerm maximized so that the installer won't be resized.
|
|
-- https://wezterm.org/config/lua/gui-events/gui-startup.html
|
|
local wezterm = require 'wezterm'
|
|
local mux = wezterm.mux
|
|
local config = {}
|
|
|
|
wezterm.on('gui-startup', function(cmd)
|
|
local tab, pane, window = mux.spawn_window(cmd or {})
|
|
window:gui_window():maximize()
|
|
end)
|
|
|
|
return config
|