Changed from config files from being user-centric to system. Some refactoring. Added install script

This commit is contained in:
amazing-username
2018-07-23 21:30:52 -04:00
parent 63ff22973b
commit 0777990b5e
11 changed files with 37 additions and 51 deletions
-7
View File
@@ -8,18 +8,11 @@ int main(int argc, char* argv[])
std::string action = *(argv + 1);
if (action.compare("up") == 0)
{
IncreaseVolume iv;
}
else if (action.compare("down") == 0)
{
DecreaseVolume dv;
}
else
{
std::cout << "Choose correct action, up or down" << std::endl;
}
return 0;
}