Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 tmux 中使用带有 beep 选项的 mcabber。我希望 mcabber 发出哔声,但不希望 tmux 在启动、附加或分离时发出哔声。
# disable sound bell set -g bell-action none # disable visual bell set -g visual-bell off
我找到了这个,但这会禁用 mcabber 哔声并且不会禁用附加/分离哔声。如何在 tmux 中禁用附加/分离蜂鸣声?
我认为您需要再设置一个选项。这应该有效:
set -g bell-action all set -g visual-bell off set -g bell-on-alert off
不确定这是否适用于 mcabber,但它应该禁用 tmux 铃声。