add simple help message

This commit is contained in:
Mihai Fufezan 2022-07-15 00:09:31 +03:00
parent 01fc3d6068
commit d8fee02063
No known key found for this signature in database
GPG Key ID: 5899325F2F120900
1 changed files with 6 additions and 1 deletions

View File

@ -19,9 +19,14 @@ int main(int argc, char** argv) {
for (int i = 1; i < argc; ++i) {
if (!strcmp(argv[i], "--i-am-really-stupid"))
ignoreSudo = true;
if ((!strcmp(argv[i], "-c") || !strcmp(argv[i], "--config")) && argc >= i + 2) {
else if ((!strcmp(argv[i], "-c") || !strcmp(argv[i], "--config")) && argc >= i + 2) {
configPath = std::string(argv[++i]);
Debug::log(LOG, "Using config location %s.", configPath.c_str());
} else {
std::cout << "Hyprland usage: Hyprland [arg [...]].\n\nArguments:\n" <<
"--help -h | Show this help message\n" <<
"--config -c | Specify config file to use\n";
return 1;
}
}