1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
#!/usr/local/bin/perl
use strict;
use warnings;
use Capture::Tiny qw(capture);
use constant {
MIXER_PATH => '/usr/sbin/mixer',
NOTIF_PATH => '/usr/local/bin/notify-send'
};
sub main
{
my $rec_vol;
$rec_vol = `mixer rec | awk -F ':' '{print \$2}'`;
chomp $rec_vol;
if ($rec_vol == 0) {
capture {
system(MIXER_PATH, 'rec', '100');
system(
NOTIF_PATH,
'-u',
'low',
'-t',
'1750',
'mixer-set',
' Microphone restored'
);
};
}
else {
capture {
system(MIXER_PATH, 'rec', '0');
system(
NOTIF_PATH,
'-u',
'low',
'-t',
'1750',
'mixer-set',
' Microphone muted'
);
};
}
return;
}
main();
__END__
|