-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvolume.go
112 lines (91 loc) · 2.06 KB
/
volume.go
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
package main
import (
"fmt"
"os"
"os/exec"
"strings"
)
const mixer = "Master"
func main() {
arg, unmute, gui := parseArguments(os.Args[1:])
output := callAmixer(arg, mixer)
if unmute {
unmuteIndividualOutputs()
}
vol, muted := parseOutput(output)
printResult(vol, muted, gui)
}
func parseArguments(args []string) (arg string, unmute, gui bool) {
gui = len(args) > 0 && args[0] == "-x"
if gui {
args = args[1:]
}
arg = "get"
if len(args) > 0 {
arg = args[0]
}
switch {
case arg == "toggle", arg == "unmute":
unmute = true
case arg[0] == '-' || arg[0] == '+':
arg = arg[1:] + arg[:1]
case arg == "get" || arg == "mute" || '0' <= arg[0] && arg[0] <= '9':
default:
panic("Unknown argument")
}
return arg, unmute, gui
}
func callAmixer(command, mixer string) string {
return callAmixerHelper(command, mixer, false)
}
func callAmixerQuiet(command, mixer string) {
callAmixerHelper(command, mixer, true)
}
func callAmixerHelper(command, mixer string, silent bool) string {
arg := ""
if silent {
arg = "-q"
}
cmd := command
if cmd != "get" {
cmd = "set"
}
tmp, err := exec.Command("amixer", cmd, mixer, command, arg).CombinedOutput()
if err != nil {
panic(err)
}
return string(tmp)
}
func parseOutput(output string) (volume, mute string) {
pattern := "Mono: Playback "
i := strings.Index(output, pattern)
if i == -1 {
panic(output)
}
output = output[i+len(pattern):]
i = strings.IndexRune(output, ' ')
volume = output[:i]
output = output[i:]
pattern = "dB] ["
i = strings.Index(output, pattern) + len(pattern)
mute = output[i:]
mute = mute[:strings.Index(mute, "]")]
return volume, mute
}
func printResult(volume, mute string, useGui bool) {
if useGui {
if mute == "on" {
mute = "<fc=#00aa00><fn=1></fn></fc>"
} else if mute == "off" {
mute = "<fc=red><fn=1></fn></fc> "
}
fmt.Printf("%s%s\n", mute, volume)
} else {
fmt.Println(volume, mute)
}
}
func unmuteIndividualOutputs() {
// Work around a bug (?) in PulseAudio
callAmixerQuiet("unmute", "Headphone")
callAmixerQuiet("unmute", "Speaker")
}