-
Notifications
You must be signed in to change notification settings - Fork 0
/
s_wm_player
executable file
·87 lines (78 loc) · 2.05 KB
/
s_wm_player
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
#!/usr/bin/env bash
# Bin is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Bin is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Bin. If not, see <https://www.gnu.org/licenses/>.
# Debug Options
set -euo pipefail
STEP=3
_ncmpcpp() {
[[ ! $(pgrep -x ncmpcpp) ]] && return
[[ ! $(command -v mpc) ]] && echo "mpc is not installed to manage player volume" && exit 1
local action
case "$1" in
down)
action="volume -$STEP"
;;
up)
action="volume +$STEP"
;;
toggle)
action="toggle"
;;
previous)
action="previous"
;;
next)
action="next"
;;
esac
mpc $action
}
print_info() {
echo "Usage: wm_player [ -d | --down ] [ -u | --up ] [ -p | --previous ] [ -n | --next ] [ -t | --toggle ] [ -h | --help ]"
}
# PARSE CLI OPTIONS
OPTIONS=$(getopt --name play --options udthnp --longoptions up,down,toggle,next,previous,help -- "$@")
eval set -- "$OPTIONS"
unset OPTIONS
while true; do
case "$1" in
-d | --down)
_ncmpcpp down
break;
;;
-u | --up)
_ncmpcpp up
break
;;
-t | --toggle)
_ncmpcpp toggle
break
;;
-p | --previous)
_ncmpcpp previous
break
;;
-n | --next)
_ncmpcpp next
break
;;
-h | --help)
print_info
break
;;
*)
print_info
break
;;
esac
done