fix: Cleaning up some aspects of the language support work to move into

development and finish cleaning the main branch.
This commit is contained in:
2026-08-12 09:46:56 -05:00
parent 48235c005d
commit 6e035d1f4c
10 changed files with 139 additions and 53 deletions

View File

@@ -24,36 +24,6 @@ config.automatically_reload_config = true
-- Linux specific fixes
if wezterm.target_triple == 'x86_64-unknown-linux-gnu' then
-- Fixing the cursor theme
-- local xcursor_size = nil
-- local xcursor_theme = nil
--
-- local theme_success, stdout, _ = wezterm.run_child_process({
-- "gsettings",
-- "get",
-- "org.gnome.desktop.interface",
-- "cursor-theme"
-- })
--
-- if theme_success then
-- xcursor_theme = stdout:gsub("'(.+)'\n", "%1")
-- end
--
-- local cursor_success, _, _ = wezterm.run_child_process({
-- "gsettings",
-- "get",
-- "org.gnome.desktop.interface",
-- "cursor-size"
-- })
--
-- if cursor_success then
-- xcursor_size = tonumber(stdout)
-- end
--
-- config.xcursor_theme = xcursor_theme
-- config.xcursor_size = xcursor_size
-- end cursor theme
config.disable_default_key_bindings = true
end