在 conky 中显示系统音量的正确方法是什么?我没有/dev/mixer
文件,并且没有外部命令,这可能吗?
康琪1.9.0
答案1
我用${exec amixer -c 0 get Master | grep Mono:}
。
答案2
我尝试了上述解决方案,但都不适合我,我能够通过变体使其工作:
${exec amixer get Master | grep -o -P -m1 "[0-9][0-9](?=\%\])"}
不过,这适用于 conky 1.12 和 amixer 版本 1.2.8。