wezterm icon indicating copy to clipboard operation
wezterm copied to clipboard

audible_bell = "Disabled" - not working on windows?

Open frankdetzer opened this issue 6 months ago • 0 comments

What Operating System(s) are you seeing this problem on?

Windows

Which Wayland compositor or X11 Window manager(s) are you using?

No response

WezTerm version

20240203-110809-5046fc22

Did you try the latest nightly build to see if the issue is better (or worse!) than your current version?

No, and I'll explain why below

Describe the bug

On Windows the Bell does ring, even if the settings is set to disable it.

(Since this terminal is mainly used on UNIX systems and me not able to find a simular issue i did not use the nightly build to check if the bug is still present)

To Reproduce

No response

Configuration

--- wezterm.lua
--- $ figlet -f small Wezterm
--- __      __      _
--- \ \    / /__ __| |_ ___ _ _ _ __
---  \ \/\/ / -_)_ /  _/ -_) '_| '  \
---   \_/\_/\___/__|\__\___|_| |_|_|_|
---
--- My Wezterm config file

local wezterm = require("wezterm")
local act = wezterm.action

local config = {}
-- Use config builder object if possible
if wezterm.config_builder then config = wezterm.config_builder() end

-- Settings
config.color_scheme = "Tokyo Night"
config.window_decorations = "RESIZE"
config.window_close_confirmation = "AlwaysPrompt"
config.scrollback_lines = 3000
config.default_workspace = "main"
config.audible_bell = "Disabled"


-- Dim inactive panes
config.inactive_pane_hsb = {
  saturation = 0.24,
  brightness = 0.5
}

return config

Expected Behavior

Bell not ringing.

Logs

No response

Anything else?

No response

frankdetzer avatar Aug 10 '24 10:08 frankdetzer