refactor(wezterm): disable Wayland support
All checks were successful
Check Formatting of Files / Check-Formatting (push) Successful in 37s

Waiting for https://github.com/wez/wezterm/issues/5103 to be resolved
This commit is contained in:
Price Hiller 2024-03-20 15:50:50 -05:00
parent d458f6c8c8
commit 084154b158
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB

View File

@ -29,4 +29,8 @@ local config = wlib.Table.merge(gpu, events, fonts, theme, tabbar, misc, renderi
log.debug("Final Wezterm Config: " .. require("lib.inspect").inspect(config, { newline = " ", indent = "" }))
-- HACK: temporarily disable Wayland support and instead fallback to XWayland. Wezterm doesn't properly
-- support Wayland right now 🫤
-- See: https://github.com/wez/wezterm/issues/5103
config.enable_wayland = false
return config