音量控制通知Ubuntu

时间:2012-09-30 18:10:02

标签: python linux ubuntu pyqt libnotify

我正在使用PyQT制作Gui,其中我通过按钮控制音量我正在使用amixer命令行工具来增加和减少音量,我还可以在用户增加或减少音量时显示默认通知吗? 我正在使用Ubuntu 12.04

1 个答案:

答案 0 :(得分:0)

我找到了解决方案

            volume = 60
            cmd ="notify-send \" \" -i notification-audio-volume-high -h int:value:"+str(volume)+" -h string:synchronous:volume"
            #print cmd
            os.system(cmd)