feat: Adding the auto config reload to wezterm

Also changing the order of colorschemes in wezterm to use the default as
the first in the list to allow for setting others to overwrite it for
testing.
This commit is contained in:
Finch 2025-05-07 10:25:03 -05:00
parent 9be0299794
commit 073d78e1e9

View File

@ -20,14 +20,15 @@ local success, _, _ = wezterm.run_child_process({
"org.gnome.desktop.interface", "org.gnome.desktop.interface",
"cursor-size" "cursor-size"
}) })
if success then if success then
xcursor_size = tonumber(stdout) xcursor_size = tonumber(stdout)
end end
local config = wezterm.config_builder() local config = wezterm.config_builder()
-- config.color_scheme = 'darkmatrix'
config.color_scheme = 's3r0 modified (terminal.sexy)' config.color_scheme = 's3r0 modified (terminal.sexy)'
-- config.color_scheme = 'darkmatrix'
-- config.color_scheme = 'Mashup Colors (terminal.sexy)' -- config.color_scheme = 'Mashup Colors (terminal.sexy)'
-- config.color_scheme = 'Gruvbox dark, pale (base16)' -- config.color_scheme = 'Gruvbox dark, pale (base16)'
-- config.color_scheme = 'Gruvbox Material (Gogh)' -- config.color_scheme = 'Gruvbox Material (Gogh)'
@ -43,6 +44,8 @@ config.window_padding = {
bottom = '0' bottom = '0'
} }
config.automatically_reload_config = true
-- config.window_background_opacity = 0.9 -- config.window_background_opacity = 0.9
config.xcursor_theme = xcursor_theme config.xcursor_theme = xcursor_theme
config.xcursor_size = xcursor_size config.xcursor_size = xcursor_size