blob: 19a0fd68986aca83934d94a2710deec3f177cddc (
plain)
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
52
53
54
55
56
57
58
59
60
61
62
|
#!/usr/bin/env perl
use strict;
use warnings;
use Capture::Tiny qw(capture);
use Sys::Hostname qw(hostname);
use constant {
MIXER_PATH => '/usr/sbin/mixer',
NOTIF_PATH => '/usr/local/bin/herbe'
};
sub notify
{
my ($str) = @_;
my $pid = fork();
if (not $pid) {
exec(NOTIF_PATH, $str);
}
return;
};
sub mic
{
my $rec_vol;
my $host;
$host = hostname();
if ($host eq "po-rbo.ln.ysosecure.com") {
system('/usr/bin/pactl', 'set-source-mute', '@DEFAULT_SOURCE@', 'toggle');
my $muted = `/usr/bin/pactl get-source-mute \@DEFAULT_SOURCE\@ | awk '{print \$2}'`;
chomp $muted;
if ($muted eq "yes") {
notify(' muted');
}
else {
notify(' restored');
}
exit;
}
$rec_vol = `mixer rec | awk -F ':' '{print \$2}'`;
chomp $rec_vol;
if ($rec_vol == 0) {
capture {
system(MIXER_PATH, 'rec', '100');
};
notify(' microphone restored');
}
else {
capture {
system(MIXER_PATH, 'rec', '0');
notify(' microphone muted');
};
}
system('kill -68 $(pidof dwmblocks)');
return;
}
mic();
__END__
|