My Nix configuration. Enter at your own risk.
0

Configure Feed

Select the types of activity you want to include in your feed.

wezterm: Fix resize on darwin

author
Isaac Corbrey
date (Apr 27, 2026, 11:19 PM -0400) commit f88fd620 parent 905c1aa7 change-id npolysyp
+6 -1
+6 -1
modules/home/wezterm/wezterm.lua
··· 7 7 config.color_scheme = "JetBrains Darcula" 8 8 9 9 config.adjust_window_size_when_changing_font_size = false 10 - config.window_decorations = "NONE" 10 + if wezterm.target_triple:find("darwin") then 11 + config.window_decorations = "TITLE|RESIZE" 12 + config.native_macos_fullscreen_mode = true 13 + else 14 + config.window_decorations = "NONE" 15 + end 11 16 config.audible_bell = "Disabled" 12 17 13 18 config.use_fancy_tab_bar = false