From 2e938125ed4135c29973e83bee53f60c07fa4902 Mon Sep 17 00:00:00 2001 From: Daveanand Mannie Date: Sat, 26 Oct 2024 14:19:16 -0400 Subject: [PATCH] [UPDATED] tranparancy settings for wezterm --- wezterm.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wezterm.lua b/wezterm.lua index 016445c..6b2372c 100644 --- a/wezterm.lua +++ b/wezterm.lua @@ -28,7 +28,7 @@ config.initial_cols = 129 --tansparent local is_transparent = true config.window_background_opacity = 0.8 -config.text_background_opacity = 0.2 +config.text_background_opacity = 0.4 --key map local act = wezterm.action @@ -52,7 +52,7 @@ config.keys = { -- Set to transparent window:set_config_overrides({ window_background_opacity = 0.8, - text_background_opacity = 0.2, + text_background_opacity = 0.4, }) is_transparent = true end