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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
#!/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/notify-send'
};
sub main
{
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") {
system(
'/usr/bin/notify-send',
'-u',
'low',
'-t',
'1750',
'mixer-set',
' muted'
);
}
else {
system(
'/usr/bin/notify-send',
'-u',
'low',
'-t',
'1750',
'mixer-set',
' restored'
);
}
exit;
}
$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'
);
};
}
system('kill -68 $(pidof dwmblocks)');
return;
}
main();
__END__
|