Advertisement
Guest User

Untitled

a guest
Mar 28th, 2017
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. Fixing the jarring terminal bell
  2. --------------------------------
  3.  
  4. Assuming Cinnamon on Debian Sid, the terminal bell by default is a coarse, jarring sound that startles you whenever it goes off. This sound can be tested with `echo -ne 'x07'`. By default, Cinnamon's terminal bell is *disabled*, and it's the system bell you here. Turning on Cinnamon's bell can be done as such:
  5.  
  6. 1. Open `dconf-editor`
  7. 2. Navigate to `org.cinnamon.desktop.wm.preferences`
  8. 3. Make sure that `audible-bell` is enabled
  9. 4. Make sure that `bell-sound` is set to something that sounds pleasant (check `/usr/share/sounds/freedesktop/stereo/bell.oga`)
  10.  
  11. At this point, the pleasant sound plays at the same time as the jarring one, the latter completely drowning out the former. Try `sudo modprobe -r pcspkr` to disable the jarring system sound. If that fixed it, you can make this change permanent by adding a file `/etc/modprobe.d/nobeep.conf`, containing the following:
  12.  
  13. # Do not load the 'pcspkr' module on boot.
  14. blacklist pcspkr
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement