-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdo_mute.sh
More file actions
executable file
·120 lines (97 loc) · 2.17 KB
/
do_mute.sh
File metadata and controls
executable file
·120 lines (97 loc) · 2.17 KB
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
#!/usr/bin/env bash
function usage()
{
cat <<HEREDOC
Usage: $PROGRAM_NAME [NUM] [--delay NUM] [--help]
optional arguments:
NUM, -d, --delay NUM Delay NUM seconds
-h, --help Show this help message and exit
If no argument is specified, delay for 30 seconds.
HEREDOC
}
machine=Linux
function read_machine_type()
{
unameOut="$(uname -s)"
case "${unameOut}" in
Linux*) machine=Linux;;
Darwin*) machine=Mac;;
CYGWIN*) machine=Cygwin;;
MINGW*) machine=MinGw;;
*) machine="UNKNOWN:${unameOut}"
esac
echo ${machine}
}
function os_is()
{
local n=0
#if [[ "$1" = "-n" ]]; then n=1;shift; fi
#echo $OS|grep $1 -i >/dev/null
uname -s |grep -i "$1" >/dev/null
return $(( $n ^ $? ))
}
function mute()
{
os_is Darwin &&
{
current_volume=$(osascript -e 'output volume of (get volume settings)')
osascript -e 'set volume output volume 0' # MacOS
}
os_is Linux &&
{
amixer -q -D pulse sset Master mute
}
}
function unmute()
{
os_is Darwin &&
{
osascript -e "set volume output volume $current_volume" # MacOS
}
os_is Linux &&
{
amixer -q -D pulse sset Master unmute
}
}
# Init script vars
PROGRAM_NAME=$(basename $0)
DELAY_PERIOD=30
POSITIONAL=()
while [[ $# -gt 0 ]]
do
key="$1"
case $key in
-d|--delay)
DELAY_PERIOD="$2"
shift # past argument
shift # past value
;;
-h|--help)
usage; exit;
shift # past argument
shift # past value
;;
*)
POSITIONAL+=("$1")
shift # past argument
;;
esac
done
set -- "${POSITIONAL[@]}" # restore positional params
if [[ "$1" ]]; then
DELAY_PERIOD=$1
fi
# Issue our mute command
mute
wait_period=0
while true
do
wait_period=$(($wait_period+1))
if [ $wait_period -gt $DELAY_PERIOD ]; then
break
else
sleep 1
fi
done
# Issue our unmute command
unmute