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.
This commit is contained in:
Price Hiller 2023-08-20 10:03:08 -05:00
parent 8fd31a9603
commit 9c79b396b9
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8

View File

@ -1,4 +1,5 @@
return {
font_locator = nil,
enable_wayland = true,
window_decorations = "NONE"
}