Changed from selecting DAC0 to Master and adjusted the volume change amount from 20 to 13

This commit is contained in:
amazing-username
2017-09-24 18:51:10 -05:00
parent 58ce3d8eb9
commit 63ff22973b
5 changed files with 6 additions and 4 deletions
+1 -1
View File
@@ -29,7 +29,7 @@ void DecreaseVolume::newVolume()
}
void DecreaseVolume::updateVolume()
{
std::string command = "amixer -c 1 set DAC0 ";
std::string command = "amixer -c 1 set Master ";
command.append(std::to_string(volume));
system(command.c_str());
}