This commit is contained in:
2025-10-25 21:34:23 +02:00
parent 9a5846edff
commit 19ba9b38b7

View File

@@ -679,7 +679,7 @@ def on_message(client, userdata, msg):
myCmd =f'amixer set Master 100%'
else:
myCmd =f'amixer set Master 20%'
status, output = subprocess.getstatusoutput(myCmd)
writeLog(myCmd)
output = subprocess.Popen(myCmd, shell=True)
writeLog(output)