How to disable beep tone in xfce when the delete button is pressed?
I newly installed xfce on Arch Linux. xfce makes a beep noise every time I press the delete button or backspace, which is really annoying. How can I disable this?
I tried un-commenting set bell-style none
, but that didn't work.
arch-linux audio xfce bell
add a comment |
I newly installed xfce on Arch Linux. xfce makes a beep noise every time I press the delete button or backspace, which is really annoying. How can I disable this?
I tried un-commenting set bell-style none
, but that didn't work.
arch-linux audio xfce bell
1
Did you reload~/.inputrc
after uncommentingset bell-style none
(reload command:bind -f ~/.inputrc
)? If yes, then try one of the mentioned methods. E.g. by unloadingpcspkr
module:rmmod pcspkr
or byxset b off
.
– patryk.beza
Jul 8 '15 at 15:28
1
Might I recommend this?
– HalosGhost
Jul 9 '15 at 3:54
xset b off worked for me. thank you sir!
– DScript
Jul 9 '15 at 11:56
add a comment |
I newly installed xfce on Arch Linux. xfce makes a beep noise every time I press the delete button or backspace, which is really annoying. How can I disable this?
I tried un-commenting set bell-style none
, but that didn't work.
arch-linux audio xfce bell
I newly installed xfce on Arch Linux. xfce makes a beep noise every time I press the delete button or backspace, which is really annoying. How can I disable this?
I tried un-commenting set bell-style none
, but that didn't work.
arch-linux audio xfce bell
arch-linux audio xfce bell
edited Feb 7 '18 at 12:04
Jeff Schaller
40.1k1054126
40.1k1054126
asked Jul 8 '15 at 13:36
DScriptDScript
4333715
4333715
1
Did you reload~/.inputrc
after uncommentingset bell-style none
(reload command:bind -f ~/.inputrc
)? If yes, then try one of the mentioned methods. E.g. by unloadingpcspkr
module:rmmod pcspkr
or byxset b off
.
– patryk.beza
Jul 8 '15 at 15:28
1
Might I recommend this?
– HalosGhost
Jul 9 '15 at 3:54
xset b off worked for me. thank you sir!
– DScript
Jul 9 '15 at 11:56
add a comment |
1
Did you reload~/.inputrc
after uncommentingset bell-style none
(reload command:bind -f ~/.inputrc
)? If yes, then try one of the mentioned methods. E.g. by unloadingpcspkr
module:rmmod pcspkr
or byxset b off
.
– patryk.beza
Jul 8 '15 at 15:28
1
Might I recommend this?
– HalosGhost
Jul 9 '15 at 3:54
xset b off worked for me. thank you sir!
– DScript
Jul 9 '15 at 11:56
1
1
Did you reload
~/.inputrc
after uncommenting set bell-style none
(reload command: bind -f ~/.inputrc
)? If yes, then try one of the mentioned methods. E.g. by unloading pcspkr
module: rmmod pcspkr
or by xset b off
.– patryk.beza
Jul 8 '15 at 15:28
Did you reload
~/.inputrc
after uncommenting set bell-style none
(reload command: bind -f ~/.inputrc
)? If yes, then try one of the mentioned methods. E.g. by unloading pcspkr
module: rmmod pcspkr
or by xset b off
.– patryk.beza
Jul 8 '15 at 15:28
1
1
Might I recommend this?
– HalosGhost
Jul 9 '15 at 3:54
Might I recommend this?
– HalosGhost
Jul 9 '15 at 3:54
xset b off worked for me. thank you sir!
– DScript
Jul 9 '15 at 11:56
xset b off worked for me. thank you sir!
– DScript
Jul 9 '15 at 11:56
add a comment |
3 Answers
3
active
oldest
votes
To disable the bell for all X applications:
xset b off
1
May be helpful: xfce.10915.n7.nabble.com/Beep-td8866.html
– Sauce McBoss
Aug 28 '15 at 0:42
This works fine. Although after rebooting I have to redo it. Is there a way to permanently disable it?
– math
Apr 9 '18 at 8:36
@math You can add it to your.xinitrc
file
– prosoitos
6 hours ago
add a comment |
Go to SETTINGS → SESSION → STARTUP, button ADD, type: name "beep" and in last field type "xset b off".
add a comment |
This Arch Wiki page lists all the options to disable PC speaker (beep) very nicely: https://wiki.archlinux.org/index.php/PC_speaker
For instance, as mentioned by @SauceMcBoss, you can set:
xset -b
(or xset b off
) to disable it in Xorg (which will solve your problem). To make the change permanent, add this line to either your .xinitrc
or xprofile
file.
Or, to disable the PC speaker globally within one session, the pcspkr
kernel module can be unloaded with:
rmmod pcspkr
To prevent its loading by udev
at boot, you can blacklist it in a .conf
file in /etc/modprobe.d/
. For instance:
echo "blacklist pcspkr" > /etc/modprobe.d/blacklist.conf
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f214607%2fhow-to-disable-beep-tone-in-xfce-when-the-delete-button-is-pressed%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
To disable the bell for all X applications:
xset b off
1
May be helpful: xfce.10915.n7.nabble.com/Beep-td8866.html
– Sauce McBoss
Aug 28 '15 at 0:42
This works fine. Although after rebooting I have to redo it. Is there a way to permanently disable it?
– math
Apr 9 '18 at 8:36
@math You can add it to your.xinitrc
file
– prosoitos
6 hours ago
add a comment |
To disable the bell for all X applications:
xset b off
1
May be helpful: xfce.10915.n7.nabble.com/Beep-td8866.html
– Sauce McBoss
Aug 28 '15 at 0:42
This works fine. Although after rebooting I have to redo it. Is there a way to permanently disable it?
– math
Apr 9 '18 at 8:36
@math You can add it to your.xinitrc
file
– prosoitos
6 hours ago
add a comment |
To disable the bell for all X applications:
xset b off
To disable the bell for all X applications:
xset b off
answered Aug 28 '15 at 0:41
Sauce McBossSauce McBoss
1,851267
1,851267
1
May be helpful: xfce.10915.n7.nabble.com/Beep-td8866.html
– Sauce McBoss
Aug 28 '15 at 0:42
This works fine. Although after rebooting I have to redo it. Is there a way to permanently disable it?
– math
Apr 9 '18 at 8:36
@math You can add it to your.xinitrc
file
– prosoitos
6 hours ago
add a comment |
1
May be helpful: xfce.10915.n7.nabble.com/Beep-td8866.html
– Sauce McBoss
Aug 28 '15 at 0:42
This works fine. Although after rebooting I have to redo it. Is there a way to permanently disable it?
– math
Apr 9 '18 at 8:36
@math You can add it to your.xinitrc
file
– prosoitos
6 hours ago
1
1
May be helpful: xfce.10915.n7.nabble.com/Beep-td8866.html
– Sauce McBoss
Aug 28 '15 at 0:42
May be helpful: xfce.10915.n7.nabble.com/Beep-td8866.html
– Sauce McBoss
Aug 28 '15 at 0:42
This works fine. Although after rebooting I have to redo it. Is there a way to permanently disable it?
– math
Apr 9 '18 at 8:36
This works fine. Although after rebooting I have to redo it. Is there a way to permanently disable it?
– math
Apr 9 '18 at 8:36
@math You can add it to your
.xinitrc
file– prosoitos
6 hours ago
@math You can add it to your
.xinitrc
file– prosoitos
6 hours ago
add a comment |
Go to SETTINGS → SESSION → STARTUP, button ADD, type: name "beep" and in last field type "xset b off".
add a comment |
Go to SETTINGS → SESSION → STARTUP, button ADD, type: name "beep" and in last field type "xset b off".
add a comment |
Go to SETTINGS → SESSION → STARTUP, button ADD, type: name "beep" and in last field type "xset b off".
Go to SETTINGS → SESSION → STARTUP, button ADD, type: name "beep" and in last field type "xset b off".
edited Jul 23 '18 at 5:21
slm♦
249k66522680
249k66522680
answered Jul 1 '18 at 20:32
ksaksa
8111
8111
add a comment |
add a comment |
This Arch Wiki page lists all the options to disable PC speaker (beep) very nicely: https://wiki.archlinux.org/index.php/PC_speaker
For instance, as mentioned by @SauceMcBoss, you can set:
xset -b
(or xset b off
) to disable it in Xorg (which will solve your problem). To make the change permanent, add this line to either your .xinitrc
or xprofile
file.
Or, to disable the PC speaker globally within one session, the pcspkr
kernel module can be unloaded with:
rmmod pcspkr
To prevent its loading by udev
at boot, you can blacklist it in a .conf
file in /etc/modprobe.d/
. For instance:
echo "blacklist pcspkr" > /etc/modprobe.d/blacklist.conf
add a comment |
This Arch Wiki page lists all the options to disable PC speaker (beep) very nicely: https://wiki.archlinux.org/index.php/PC_speaker
For instance, as mentioned by @SauceMcBoss, you can set:
xset -b
(or xset b off
) to disable it in Xorg (which will solve your problem). To make the change permanent, add this line to either your .xinitrc
or xprofile
file.
Or, to disable the PC speaker globally within one session, the pcspkr
kernel module can be unloaded with:
rmmod pcspkr
To prevent its loading by udev
at boot, you can blacklist it in a .conf
file in /etc/modprobe.d/
. For instance:
echo "blacklist pcspkr" > /etc/modprobe.d/blacklist.conf
add a comment |
This Arch Wiki page lists all the options to disable PC speaker (beep) very nicely: https://wiki.archlinux.org/index.php/PC_speaker
For instance, as mentioned by @SauceMcBoss, you can set:
xset -b
(or xset b off
) to disable it in Xorg (which will solve your problem). To make the change permanent, add this line to either your .xinitrc
or xprofile
file.
Or, to disable the PC speaker globally within one session, the pcspkr
kernel module can be unloaded with:
rmmod pcspkr
To prevent its loading by udev
at boot, you can blacklist it in a .conf
file in /etc/modprobe.d/
. For instance:
echo "blacklist pcspkr" > /etc/modprobe.d/blacklist.conf
This Arch Wiki page lists all the options to disable PC speaker (beep) very nicely: https://wiki.archlinux.org/index.php/PC_speaker
For instance, as mentioned by @SauceMcBoss, you can set:
xset -b
(or xset b off
) to disable it in Xorg (which will solve your problem). To make the change permanent, add this line to either your .xinitrc
or xprofile
file.
Or, to disable the PC speaker globally within one session, the pcspkr
kernel module can be unloaded with:
rmmod pcspkr
To prevent its loading by udev
at boot, you can blacklist it in a .conf
file in /etc/modprobe.d/
. For instance:
echo "blacklist pcspkr" > /etc/modprobe.d/blacklist.conf
answered 1 hour ago
prosoitosprosoitos
1013
1013
add a comment |
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f214607%2fhow-to-disable-beep-tone-in-xfce-when-the-delete-button-is-pressed%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
Did you reload
~/.inputrc
after uncommentingset bell-style none
(reload command:bind -f ~/.inputrc
)? If yes, then try one of the mentioned methods. E.g. by unloadingpcspkr
module:rmmod pcspkr
or byxset b off
.– patryk.beza
Jul 8 '15 at 15:28
1
Might I recommend this?
– HalosGhost
Jul 9 '15 at 3:54
xset b off worked for me. thank you sir!
– DScript
Jul 9 '15 at 11:56