From 9c79b396b9de69b1b7024f8a23be352d9a9075b9 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Sun, 20 Aug 2023 10:03:08 -0500 Subject: [PATCH] fix(wezterm): disable window decorations on linux Window decorations are not necessary with my desktop setup for linux. Currently having window_decorations set to "RESIZE" causes wezterm to crash under wayland when scaling is enabled. Seeing as I don't require "RESIZE", it's best to shut it off and avoid the crash altogether. --- dots/.config/wezterm/config/os/linux.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/dots/.config/wezterm/config/os/linux.lua b/dots/.config/wezterm/config/os/linux.lua index e6f15975..b974d66e 100644 --- a/dots/.config/wezterm/config/os/linux.lua +++ b/dots/.config/wezterm/config/os/linux.lua @@ -1,4 +1,5 @@ return { font_locator = nil, enable_wayland = true, + window_decorations = "NONE" }