From ef20ac448d23ac9dccfef5b6c3660f6cef8baa5f Mon Sep 17 00:00:00 2001 From: Jesse Smith Date: Thu, 18 Jun 2015 16:05:55 -0300 Subject: Minor change to audio to make volume adjustment more tolerant. Made a small adjustment to the way sound is set on Linux to make it more reliable. --- libLumina/LuminaOS-Debian.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libLumina/LuminaOS-Debian.cpp b/libLumina/LuminaOS-Debian.cpp index df91819e..12d8f11e 100644 --- a/libLumina/LuminaOS-Debian.cpp +++ b/libLumina/LuminaOS-Debian.cpp @@ -106,7 +106,8 @@ QString info = LUtils::getCmdOutput("amixer get Master").join("").simplified();; void LOS::setAudioVolume(int percent){ if(percent<0){percent=0;} else if(percent>100){percent=100;} - QString info = "amixer -c 0 sset Master,0 " + QString::number(percent) + "%"; + // QString info = "amixer -c 0 sset Master,0 " + QString::number(percent) + "%"; + QString info = "amixer set Master " + QString::number(percent) + "%"; if(!info.isEmpty()){ //Run Command LUtils::runCmd(info); -- cgit