From 9270ec64bd4cca93ff2298389ce768ddb0f02733 Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Mon, 24 Feb 2025 16:59:02 +0100 Subject: [PATCH] HACK: wezterm: Disable wayland temporarily Since wezterm on wayland is an older release (does not track nightlies, so currently last release is 2024023, a year old) it does not work as well with wayland as I would hope. There are two major issues: - Cursor errors whenever a mouse pointer is above the window (can be partly fixed with the xcursor_theme option, though still erroring when hovering over links). - Constant errors that inactive text input is sending updates in river logs. Until those are fixed, or I jump to a nightly version, we keep it xwayland. --- terminal/.config/wezterm/wezterm.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/terminal/.config/wezterm/wezterm.lua b/terminal/.config/wezterm/wezterm.lua index eb70a5b..5c0dd7a 100644 --- a/terminal/.config/wezterm/wezterm.lua +++ b/terminal/.config/wezterm/wezterm.lua @@ -24,7 +24,8 @@ if file_exists(colorsfile) == true then end local settings = { - enable_wayland = true, + enable_wayland = false, -- sadface :-( + xcursor_theme = "Adwaita", enable_tab_bar = true, hide_tab_bar_if_only_one_tab = true, use_fancy_tab_bar = false,