What's the right way of displaying system sound volume in conky ? I don't have /dev/mixer
file, and without an external command, is it possible ?
Conky 1.9.0
I use ${exec amixer -c 0 get Master | grep Mono:}
.
I tried the above solution(s) and neither worked for me, I was able to get it working with a variation:
${exec amixer get Master | grep -o -P -m1 "[0-9][0-9](?=\%\])"}
This works on conky 1.12 with amixer version 1.2.8, however.