Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

tmux - disable beep on attach/detach

I am using mcabber with beep option inside tmux. I want mcabber to beep,but don't want tmux to beep on startup, attach or detach.

# disable sound bell
set -g bell-action none
# disable visual bell
set -g visual-bell off

I found this, but this disables mcabber beeps and do not disable attach/detach beep. How to disable attach/detach beep in tmux?

like image 216
POMATu Avatar asked Sep 17 '13 06:09

POMATu


1 Answers

I think you need to set one more option. This should work:

set -g bell-action all
set -g visual-bell off
set -g bell-on-alert off

Not sure if this will work with mcabber but it should disable the tmux bell.

like image 175
while Avatar answered Oct 10 '22 01:10

while