revbank/plugins/beep_terminal
2014-01-11 21:37:44 +01:00

14 lines
224 B
Perl
Executable file

#!perl
sub command { NEXT }
# So you want a different beep mechanism...
#
# Don't just edit this plugin. Instead, COPY this file and add yours to
# revbank.plugins
sub hook_beep {
my ($class) = @_;
print "\a";
}