Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

How to disable the beep sound system-wide

f I want to disable beep sounds from stuff like bash, I add this line to "/etc/inputrc":
set bell-style none

Sadly, this doesn't work for some other events like GDM start-up and shut down. I thought that adding this line to "/etc/modprobe.d/blacklist.conf" would help:
blacklist pcspkr


That makes me wonder and doubt where the sound actually comes from.
by

1 Answer

Bharatgxwzm
Solution for LXDE:
vim $HOME/.config/autostart/LXinput-setup.desktop


Change
Exec=sh -c 'xset m 20/10 10 r rate 500 30 b on'


to
Exec=sh -c 'xset m 20/10 10 r rate 500 30 b off'

Login / Signup to Answer the Question.