unimportant: removed config create from -c

This commit is contained in:
Kaley, Fischer 2024-01-25 13:55:46 +01:00
parent eaaa69c3df
commit f32bf1ebca
2 changed files with 6 additions and 7 deletions

View file

@ -19,6 +19,12 @@ LISTING COMMANDS:
-c: To specify which config to use. -c: To specify which config to use.
-b: Make a executable out of a config. -b: Make a executable out of a config.
``` ```
### You will need first to setup the config dir
To do that you just need to, use this command.
```
RapidMenu
```
And it should say "created dir".
### How to use (-c) ### How to use (-c)
If you want to open a configuration, just use this command. If you want to open a configuration, just use this command.
``` ```

View file

@ -72,13 +72,6 @@ int main(int argc, char* argv[]) {
configFile = argv[2]; configFile = argv[2];
if (filesystem::exists(rapidMenuPath) && filesystem::is_directory(rapidMenuPath)) {
} else {
system(rapidcommand.c_str());
cerr << "Setting up config." << endl;
return 1;
}
try { try {
auto config = parse_file(configFile); auto config = parse_file(configFile);