6

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

daisy
  • 54,555

2 Answers2

3

I use ${exec amixer -c 0 get Master | grep Mono:}.

orschiro
  • 1,005
0

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.