From d583279522ef0becb061b472c797f756c81204d5 Mon Sep 17 00:00:00 2001 From: eleith Date: Tue, 11 Jul 2023 15:06:24 +0000 Subject: [PATCH] [wezterm] silence the bells! --- config/wezterm/wezterm.lua | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/config/wezterm/wezterm.lua b/config/wezterm/wezterm.lua index fd0b4be..a70231d 100644 --- a/config/wezterm/wezterm.lua +++ b/config/wezterm/wezterm.lua @@ -24,4 +24,18 @@ config.hide_tab_bar_if_only_one_tab = true config.adjust_window_size_when_changing_font_size = false config.window_decorations = "RESIZE" +-- disable audio bell + +config.audible_bell = "Disabled" +config.visual_bell = { + fade_in_function = 'EaseIn', + fade_in_duration_ms = 150, + fade_out_function = 'EaseOut', + fade_out_duration_ms = 150, +} +config.colors = { + visual_bell = '#202020', +} + + return config