So anyway, I tried a million different commands...
echo -ne "\a"which prints just a bell character, but it's interpretted by mail-notification (or nothing) and is lost--not sounded on the system beeper.
I tried a C program by Johnathan Nightingale, beep, which I had lying around, but it fails because the kernel doesn't like it touching the devices.
Finally, I thought "hmm, beep.c is just writing to /dev/console, why can't I?" and I tried
echo -ne "\a" > /dev/consoleAnd it worked! It's not the same beep as Thunderbird/xterm/emacs, but it's fine with me!
No comments:
Post a Comment