I am trying to learn scrot
utility and there is an option -z
or --silent
to prevent beeping. But my system is not beeping at all and so I am unable to test this -z
option. I have installed the beep
utility in my system.
Asked
Active
Viewed 1,202 times
1

DK Bose
- 42,548
- 23
- 127
- 221

user644200
- 83
1 Answers
0
I'm not familiar with lubuntu per-se, but at least on my version of ubuntu, you need to enable pcspkr module: modprobe pcspkr
- you may need to do that with sudo
and may want to add it to /etc/modules
then again, i may be completely off the mark for your use case. good luck.

ara_h13
- 101
-
(if you hear a beep when you run
beep
, then your modules should be fine and you can disregard this answer) – ara_h13 Feb 19 '17 at 13:13 -
Heads up, extra data point: On my system,
scrot file.png
beeps butbeep
does not. Sobeep
andscrot
may not be doing the same thing. (And I don't care about beep not beeping. I was looking for the-z
option to silence the sound fromscrot
and that works.) – Peter V. Mørch Nov 17 '22 at 17:36
beep
to work on Lubuntu. Instead, I chain a sound from/usr/share/sounds
. So, for example, I could usescrot && mplayer -really-quiet /usr/share/sounds/freedesktop/stereo/camera-shutter.oga
. But it looks like you don't want the beep so where's the problem? – DK Bose Feb 01 '17 at 14:54