wrappers/wezterm: apply workaround to all platforms

This commit is contained in:
Nikodem Rabuliński 2024-09-26 11:22:47 +02:00
parent 5086b2cae0
commit 2ec02e037a

View file

@ -8,13 +8,12 @@ local cfg = {
font_size = 10.5, font_size = 10.5,
native_macos_fullscreen_mode = true, native_macos_fullscreen_mode = true,
hide_mouse_cursor_when_typing = false, hide_mouse_cursor_when_typing = false,
front_end = "WebGpu",
} }
if string.find(wezterm.target_triple, "darwin") then if string.find(wezterm.target_triple, "darwin") then
cfg.font_size = 14.0 cfg.font_size = 14.0
cfg.window_decorations = 'RESIZE' cfg.window_decorations = 'RESIZE'
else
cfg.front_end = "WebGpu"
end end
return cfg return cfg