blob: 570d80e180c8dc49362f7f49ba2a35ae52a41cb1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/sh
headvol() {
amixer sget Headphone | grep 'Left:' | cut -d\ -f7 | tr -d '[%]'
}
mastervol() {
amixer get Master | awk '$0~/%/{print $4}' | tr -d '[%]'
}
micvol() {
amixer sget Mic | grep 'Left:' | cut -d\ -f7 | tr -d '[%]'
}
"$@"
|